From 9cd85ce62e1460f957c14a62e287151b0a95b14c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 10:34:30 -0700 Subject: [PATCH 01/33] Update build measure to add buildings to existing hpxml file. --- BuildResidentialHPXML/measure.rb | 42 ++++++++++++++++++++++++++++--- BuildResidentialHPXML/measure.xml | 14 ++++++++--- 2 files changed, 49 insertions(+), 7 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index d72595ac0d..d1351406f0 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -42,6 +42,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription('Absolute/relative path of the HPXML file.') args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('hpxml_path_in', false) + arg.setDisplayName('HPXML File Path In') + arg.setDescription('Absolute/relative path of the existing HPXML file.') + args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('software_info_program_used', false) arg.setDisplayName('Software Info: Program Used') arg.setDescription('The name of the software program used.') @@ -3156,7 +3161,15 @@ def run(model, runner, user_arguments) hpxml_path = File.expand_path(hpxml_path) end - hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path) + # Existing HPXML File + if args[:hpxml_path_in].is_initialized + hpxml_path_in = args[:hpxml_path_in].get + unless (Pathname.new hpxml_path_in).absolute? + hpxml_path_in = File.expand_path(hpxml_path_in) + end + end + + hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) if not hpxml_doc runner.registerError('Unsuccessful creation of HPXML file.') return false @@ -3362,7 +3375,7 @@ def argument_errors(args) end class HPXMLFile - def self.create(runner, model, args, epw_path, hpxml_path) + def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) epw_file = OpenStudio::EpwFile.new(epw_path) if (args[:hvac_control_heating_season_period].to_s == HPXML::BuildingAmerica) || (args[:hvac_control_cooling_season_period].to_s == HPXML::BuildingAmerica) || (args[:apply_defaults]) weather = WeatherProcess.new(epw_path: epw_path, runner: nil) @@ -3377,7 +3390,7 @@ def self.create(runner, model, args, epw_path, hpxml_path) sorted_surfaces = model.getSurfaces.sort_by { |s| s.additionalProperties.getFeatureAsInteger('Index').get } sorted_subsurfaces = model.getSubSurfaces.sort_by { |ss| ss.additionalProperties.getFeatureAsInteger('Index').get } - hpxml = HPXML.new + hpxml = HPXML.new(hpxml_path: hpxml_path_in) set_header(hpxml, args) hpxml_bldg = add_building(hpxml, args) @@ -3434,6 +3447,7 @@ def self.create(runner, model, args, epw_path, hpxml_path) renumber_hpxml_ids(hpxml_bldg) hpxml_doc = hpxml.to_doc() + unique_hpxml_ids(hpxml_doc) XMLHelper.write_file(hpxml_doc, hpxml_path) if args[:apply_validation] @@ -3446,8 +3460,9 @@ def self.create(runner, model, args, epw_path, hpxml_path) if args[:apply_defaults] eri_version = Constants.ERIVersions[-1] # FIXME: Address this when multiple buildings - HPXMLDefaults.apply(runner, hpxml, hpxml.buildings[0], eri_version, weather, epw_file: epw_file) + HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file) hpxml_doc = hpxml.to_doc() + # unique_hpxml_ids(hpxml_doc) end return hpxml_doc @@ -6427,6 +6442,25 @@ def self.renumber_hpxml_ids(hpxml_bldg) end end end + + def self.unique_hpxml_ids(hpxml_doc) + hpxml = XMLHelper.get_element(hpxml_doc, '/HPXML') + buildings = XMLHelper.get_elements(hpxml, 'Building') + n = buildings.size + bldg_no = '' + bldg_no = "_#{n}" if n > 1 + + # Make all IDs unique so the HPXML is valid + buildings[-1].each_node do |node| + next unless node.is_a?(Oga::XML::Element) + + if not XMLHelper.get_attribute_value(node, 'id').nil? + XMLHelper.add_attribute(node, 'id', "#{XMLHelper.get_attribute_value(node, 'id')}#{bldg_no}") + elsif not XMLHelper.get_attribute_value(node, 'idref').nil? + XMLHelper.add_attribute(node, 'idref', "#{XMLHelper.get_attribute_value(node, 'idref')}#{bldg_no}") + end + end + end end # register the measure to be used by the application diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index c4adb3fe0b..d7e7e85168 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - bd39f034-9982-4c60-9b87-9637d5d72d11 - 2023-08-03T15:55:37Z + 9827870a-4bbb-483b-beda-5991ed4cf849 + 2023-08-04T17:33:51Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -19,6 +19,14 @@ true false + + hpxml_path_in + HPXML File Path In + Absolute/relative path of the existing HPXML file. + String + false + false + software_info_program_used Software Info: Program Used @@ -6699,7 +6707,7 @@ measure.rb rb script - 589C3789 + F98712EB geometry.rb From ec313d7fb8d187f0a7394d9fe09b00b3a516b46f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 10:34:48 -0700 Subject: [PATCH 02/33] Update sample files. --- tasks.rb | 3813 +++++++++--------- workflow/hpxml_inputs.json | 7 +- workflow/sample_files/base-two-buildings.xml | 1088 +++++ 3 files changed, 2992 insertions(+), 1916 deletions(-) create mode 100644 workflow/sample_files/base-two-buildings.xml diff --git a/tasks.rb b/tasks.rb index 0dba73747f..722bf49135 100644 --- a/tasks.rb +++ b/tasks.rb @@ -24,6 +24,8 @@ def create_hpxmls puts "Generating #{json_inputs.size} HPXML files..." json_inputs.keys.each_with_index do |hpxml_filename, i| + next if !hpxml_filename.include? 'two-buildings' + puts "[#{i + 1}/#{json_inputs.size}] Generating #{hpxml_filename}..." hpxml_path = File.join(workflow_dir, hpxml_filename) abs_hpxml_files << File.absolute_path(hpxml_path) @@ -76,7 +78,12 @@ def create_hpxmls exit! end - hpxml = HPXML.new(hpxml_path: hpxml_path) + building_id = nil + if hpxml_path.include? 'buildings' + building_id = 'ALL' + end + + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: building_id) if hpxml_path.include? 'ASHRAE_Standard_140' apply_hpxml_modification_ashrae_140(hpxml) else @@ -84,30 +91,6 @@ def create_hpxmls end hpxml_doc = hpxml.to_doc() - if hpxml_path.include? 'base-multiple-buildings.xml' - # Create duplicates of the Building - # FUTURE: Instead of this, call the BuildResHPXML measure multiple times - # using the new capability in https://github.com/NREL/OpenStudio-HPXML/pull/1452 - hpxml_element = XMLHelper.get_element(hpxml_doc, '/HPXML') - building_element = XMLHelper.get_element(hpxml_element, 'Building') - for i in 2..3 - new_building_element = Marshal.load(Marshal.dump(building_element)) # Deep copy - - # Make all IDs unique so the HPXML is valid - new_building_element.each_node do |node| - next unless node.is_a?(Oga::XML::Element) - - if not XMLHelper.get_attribute_value(node, 'id').nil? - XMLHelper.add_attribute(node, 'id', "#{XMLHelper.get_attribute_value(node, 'id')}_#{i}") - elsif not XMLHelper.get_attribute_value(node, 'idref').nil? - XMLHelper.add_attribute(node, 'idref', "#{XMLHelper.get_attribute_value(node, 'idref')}_#{i}") - end - end - - hpxml_element.children << new_building_element - end - end - XMLHelper.write_file(hpxml_doc, hpxml_path) errors, _warnings = XMLValidator.validate_against_schema(hpxml_path, schema_validator) @@ -125,7 +108,7 @@ def create_hpxmls Dir["#{workflow_dir}/#{dir}/*.xml"].each do |hpxml| next if abs_hpxml_files.include? File.absolute_path(hpxml) - puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}" + # puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}" end end end @@ -230,1947 +213,1947 @@ def apply_hpxml_modification_ashrae_140(hpxml) def apply_hpxml_modification(hpxml_file, hpxml) # Set detailed HPXML values for sample files - hpxml_bldg = hpxml.buildings[0] - - # ------------ # - # HPXML Header # - # ------------ # - - # General logic for all files - hpxml.header.xml_generated_by = 'tasks.rb' - hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs - - # Logic that can only be applied based on the file name - if ['base-hvac-undersized-allow-increased-fixed-capacities.xml'].include? hpxml_file - hpxml.header.allow_increased_fixed_capacities = true - elsif ['base-misc-emissions.xml'].include? hpxml_file - hpxml_bldg.egrid_region = 'Western' - hpxml_bldg.egrid_subregion = 'RMPA' - hpxml_bldg.cambium_region_gea = 'RMPAc' - end - - # --------------------- # - # HPXML BuildingSummary # - # --------------------- # - - # General logic for all files - hpxml_bldg.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas] - - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml_bldg.building_occupancy.weekday_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' - hpxml_bldg.building_occupancy.weekend_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' - hpxml_bldg.building_occupancy.monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' - elsif ['base-misc-defaults.xml'].include? hpxml_file - hpxml_bldg.building_construction.average_ceiling_height = nil - hpxml_bldg.building_construction.conditioned_building_volume = nil - elsif ['base-atticroof-cathedral.xml'].include? hpxml_file - hpxml_bldg.building_construction.number_of_conditioned_floors = 2 - hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1 - hpxml_bldg.building_construction.conditioned_floor_area = 2700 - hpxml_bldg.attics[0].attic_type = HPXML::AtticTypeCathedral - elsif ['base-atticroof-conditioned.xml'].include? hpxml_file - hpxml_bldg.building_construction.conditioned_building_volume = 23850 - hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume - hpxml_bldg.air_infiltration_measurements[0].infiltration_height = 15.0 - elsif ['base-enclosure-split-level.xml'].include? hpxml_file - hpxml_bldg.building_construction.number_of_conditioned_floors = 1.5 - hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1.5 - elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file - hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 2 - elsif ['base-foundation-basement-garage.xml'].include? hpxml_file - hpxml_bldg.building_construction.conditioned_floor_area -= 400 * 2 - hpxml_bldg.building_construction.conditioned_building_volume -= 400 * 2 * 8 - hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume - elsif ['base-bldgtype-multifamily-infil-compartmentalization-test.xml'].include? hpxml_file - hpxml_bldg.air_infiltration_measurements[0].a_ext = 0.2 - end - - # --------------- # - # HPXML Enclosure # - # --------------- # - - # General logic for all files - (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface| - surface.solar_absorptance = 0.7 - surface.emittance = 0.92 - if surface.is_a? HPXML::Roof - surface.roof_color = nil - else - surface.color = nil - end - end - hpxml_bldg.roofs.each do |roof| - next unless roof.interior_adjacent_to == HPXML::LocationLivingSpace - - roof.interior_finish_type = HPXML::InteriorFinishGypsumBoard - end - (hpxml_bldg.walls + hpxml_bldg.foundation_walls + hpxml_bldg.floors).each do |surface| - if surface.is_a?(HPXML::FoundationWall) && surface.interior_adjacent_to != HPXML::LocationBasementConditioned - surface.interior_finish_type = HPXML::InteriorFinishNone - end - next unless [HPXML::LocationLivingSpace, - HPXML::LocationBasementConditioned].include?(surface.interior_adjacent_to) && - [HPXML::LocationOutside, - HPXML::LocationGround, - HPXML::LocationGarage, - HPXML::LocationAtticUnvented, - HPXML::LocationAtticVented, - HPXML::LocationOtherHousingUnit, - HPXML::LocationBasementConditioned].include?(surface.exterior_adjacent_to) - next if surface.is_a?(HPXML::Floor) && surface.is_floor - - surface.interior_finish_type = HPXML::InteriorFinishGypsumBoard - end - hpxml_bldg.attics.each do |attic| - if attic.attic_type == HPXML::AtticTypeUnvented - attic.within_infiltration_volume = false - elsif attic.attic_type == HPXML::AtticTypeVented - attic.vented_attic_sla = 0.003 - end - end - hpxml_bldg.foundations.each do |foundation| - if foundation.foundation_type == HPXML::FoundationTypeCrawlspaceUnvented - foundation.within_infiltration_volume = false - elsif foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented - foundation.vented_crawlspace_sla = 0.00667 - end - end - hpxml_bldg.skylights.each do |skylight| - skylight.interior_shading_factor_summer = 1.0 - skylight.interior_shading_factor_winter = 1.0 - end - - # Logic that can only be applied based on the file name - if ['base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml', - 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml', - 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml', - 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'].include? hpxml_file - if hpxml_file == 'base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml' - adjacent_to = HPXML::LocationOtherMultifamilyBufferSpace - elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml' - adjacent_to = HPXML::LocationOtherNonFreezingSpace - elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml' - adjacent_to = HPXML::LocationOtherHeatedSpace - elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml' - adjacent_to = HPXML::LocationOtherHousingUnit - end - wall = hpxml_bldg.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit - }[0] - wall.exterior_adjacent_to = adjacent_to - hpxml_bldg.floors[0].exterior_adjacent_to = adjacent_to - hpxml_bldg.floors[1].exterior_adjacent_to = adjacent_to - if hpxml_file != 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml' - wall.insulation_assembly_r_value = 23 - hpxml_bldg.floors[0].insulation_assembly_r_value = 18.7 - hpxml_bldg.floors[1].insulation_assembly_r_value = 18.7 - end - hpxml_bldg.windows.each do |window| - window.area = (window.area * 0.35).round(1) - end - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: wall.id, - area: 20, - azimuth: 0, - r_value: 4.4) - hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = adjacent_to - hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = adjacent_to - hpxml_bldg.water_heating_systems[0].location = adjacent_to - hpxml_bldg.clothes_washers[0].location = adjacent_to - hpxml_bldg.clothes_dryers[0].location = adjacent_to - hpxml_bldg.dishwashers[0].location = adjacent_to - hpxml_bldg.refrigerators[0].location = adjacent_to - hpxml_bldg.cooking_ranges[0].location = adjacent_to - elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file - wall = hpxml_bldg.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit - }[0] - wall.delete - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherHousingUnit, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 4.0) - hpxml_bldg.floors[0].delete - hpxml_bldg.floors[0].id = 'Floor1' - hpxml_bldg.floors[0].insulation_id = 'Floor1Insulation' - hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 550, - insulation_assembly_r_value: 18.7, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 200, - insulation_assembly_r_value: 18.7, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 150, - insulation_assembly_r_value: 2.1, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - wall = hpxml_bldg.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherMultifamilyBufferSpace - }[0] - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 50, - azimuth: 270, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: wall.id) - wall = hpxml_bldg.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHeatedSpace - }[0] - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: wall.id, - area: 20, - azimuth: 0, - r_value: 4.4) - wall = hpxml_bldg.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit - }[0] - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: wall.id, - area: 20, - azimuth: 0, - r_value: 4.4) - elsif ['base-enclosure-orientations.xml'].include? hpxml_file - hpxml_bldg.windows.each do |window| - window.orientation = { 0 => 'north', 90 => 'east', 180 => 'south', 270 => 'west' }[window.azimuth] - window.azimuth = nil - end - hpxml_bldg.doors[0].delete - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: 'Wall1', - area: 20, - orientation: HPXML::OrientationNorth, - r_value: 4.4) - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: 'Wall1', - area: 20, - orientation: HPXML::OrientationSouth, - r_value: 4.4) - elsif ['base-foundation-unconditioned-basement.xml'].include? hpxml_file - hpxml_bldg.foundations[0].within_infiltration_volume = false - elsif ['base-atticroof-conditioned.xml'].include? hpxml_file - hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}", - attic_type: HPXML::AtticTypeUnvented, - within_infiltration_volume: false) - hpxml_bldg.roofs.each do |roof| - roof.area = 1006.0 / hpxml_bldg.roofs.size - roof.insulation_assembly_r_value = 25.8 - end - hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", - interior_adjacent_to: HPXML::LocationAtticUnvented, - area: 504, - roof_type: HPXML::RoofTypeAsphaltShingles, - solar_absorptance: 0.7, - emittance: 0.92, - pitch: 6, - radiant_barrier: false, - insulation_assembly_r_value: 2.3) - hpxml_bldg.rim_joists.each do |rim_joist| - rim_joist.area = 116.0 / hpxml_bldg.rim_joists.size - end - hpxml_bldg.walls.each do |wall| - wall.area = 1200.0 / hpxml_bldg.walls.size - end - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationAtticUnvented, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 316, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - siding: HPXML::SidingTypeWood, - area: 240, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 22.3) - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationAtticUnvented, - attic_wall_type: HPXML::AtticWallTypeGable, - wall_type: HPXML::WallTypeWoodStud, - siding: HPXML::SidingTypeWood, - area: 50, - solar_absorptance: 0.7, - emittance: 0.92, - insulation_assembly_r_value: 4.0) - hpxml_bldg.foundation_walls.each do |foundation_wall| - foundation_wall.area = 1200.0 / hpxml_bldg.foundation_walls.size - end - hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationAtticUnvented, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 450, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 39.3, - floor_or_ceiling: HPXML::FloorOrCeilingCeiling) - hpxml_bldg.slabs[0].area = 1350 - hpxml_bldg.slabs[0].exposed_perimeter = 150 - hpxml_bldg.windows[1].area = 108 - hpxml_bldg.windows[3].area = 108 - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 12, - azimuth: 90, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0, - wall_idref: hpxml_bldg.walls[-2].id) - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 62, - azimuth: 270, - ufactor: 0.3, - shgc: 0.45, - fraction_operable: 0, - wall_idref: hpxml_bldg.walls[-2].id) - elsif ['base-foundation-unconditioned-basement-above-grade.xml'].include? hpxml_file - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 20, - azimuth: 0, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml_bldg.foundation_walls[0].id) - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 10, - azimuth: 90, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml_bldg.foundation_walls[0].id) - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 20, - azimuth: 180, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml_bldg.foundation_walls[0].id) - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 10, - azimuth: 270, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml_bldg.foundation_walls[0].id) - elsif ['base-enclosure-skylights-physical-properties.xml'].include? hpxml_file - hpxml_bldg.skylights[0].ufactor = nil - hpxml_bldg.skylights[0].shgc = nil - hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersSinglePane - hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeWood - hpxml_bldg.skylights[0].glass_type = HPXML::WindowGlassTypeTinted - hpxml_bldg.skylights[1].ufactor = nil - hpxml_bldg.skylights[1].shgc = nil - hpxml_bldg.skylights[1].glass_layers = HPXML::WindowLayersDoublePane - hpxml_bldg.skylights[1].frame_type = HPXML::WindowFrameTypeMetal - hpxml_bldg.skylights[1].thermal_break = true - hpxml_bldg.skylights[1].glass_type = HPXML::WindowGlassTypeLowE - hpxml_bldg.skylights[1].gas_fill = HPXML::WindowGasKrypton - elsif ['base-enclosure-skylights-shading.xml'].include? hpxml_file - hpxml_bldg.skylights[0].exterior_shading_factor_summer = 0.1 - hpxml_bldg.skylights[0].exterior_shading_factor_winter = 0.9 - hpxml_bldg.skylights[0].interior_shading_factor_summer = 0.01 - hpxml_bldg.skylights[0].interior_shading_factor_winter = 0.99 - hpxml_bldg.skylights[1].exterior_shading_factor_summer = 0.5 - hpxml_bldg.skylights[1].exterior_shading_factor_winter = 0.0 - hpxml_bldg.skylights[1].interior_shading_factor_summer = 0.5 - hpxml_bldg.skylights[1].interior_shading_factor_winter = 1.0 - elsif ['base-enclosure-windows-physical-properties.xml'].include? hpxml_file - hpxml_bldg.windows[0].ufactor = nil - hpxml_bldg.windows[0].shgc = nil - hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersSinglePane - hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeWood - hpxml_bldg.windows[0].glass_type = HPXML::WindowGlassTypeTinted - hpxml_bldg.windows[1].ufactor = nil - hpxml_bldg.windows[1].shgc = nil - hpxml_bldg.windows[1].glass_layers = HPXML::WindowLayersDoublePane - hpxml_bldg.windows[1].frame_type = HPXML::WindowFrameTypeVinyl - hpxml_bldg.windows[1].glass_type = HPXML::WindowGlassTypeReflective - hpxml_bldg.windows[1].gas_fill = HPXML::WindowGasAir - hpxml_bldg.windows[2].ufactor = nil - hpxml_bldg.windows[2].shgc = nil - hpxml_bldg.windows[2].glass_layers = HPXML::WindowLayersDoublePane - hpxml_bldg.windows[2].frame_type = HPXML::WindowFrameTypeMetal - hpxml_bldg.windows[2].thermal_break = true - hpxml_bldg.windows[2].glass_type = HPXML::WindowGlassTypeLowE - hpxml_bldg.windows[2].gas_fill = HPXML::WindowGasArgon - hpxml_bldg.windows[3].ufactor = nil - hpxml_bldg.windows[3].shgc = nil - hpxml_bldg.windows[3].glass_layers = HPXML::WindowLayersGlassBlock - elsif ['base-enclosure-windows-shading.xml'].include? hpxml_file - hpxml_bldg.windows[1].exterior_shading_factor_summer = 0.5 - hpxml_bldg.windows[1].exterior_shading_factor_winter = 0.5 - hpxml_bldg.windows[1].interior_shading_factor_summer = 0.5 - hpxml_bldg.windows[1].interior_shading_factor_winter = 0.5 - hpxml_bldg.windows[2].exterior_shading_factor_summer = 0.1 - hpxml_bldg.windows[2].exterior_shading_factor_winter = 0.9 - hpxml_bldg.windows[2].interior_shading_factor_summer = 0.01 - hpxml_bldg.windows[2].interior_shading_factor_winter = 0.99 - hpxml_bldg.windows[3].exterior_shading_factor_summer = 0.0 - hpxml_bldg.windows[3].exterior_shading_factor_winter = 1.0 - hpxml_bldg.windows[3].interior_shading_factor_summer = 0.0 - hpxml_bldg.windows[3].interior_shading_factor_winter = 1.0 - elsif ['base-enclosure-thermal-mass.xml'].include? hpxml_file - hpxml_bldg.partition_wall_mass.area_fraction = 0.8 - hpxml_bldg.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard - hpxml_bldg.partition_wall_mass.interior_finish_thickness = 0.25 - hpxml_bldg.furniture_mass.area_fraction = 0.8 - hpxml_bldg.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight - elsif ['base-misc-defaults.xml'].include? hpxml_file - hpxml_bldg.attics.reverse_each do |attic| - attic.delete - end - hpxml_bldg.foundations.reverse_each do |foundation| - foundation.delete - end - hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil + hpxml.buildings.each do |hpxml_bldg| + # ------------ # + # HPXML Header # + # ------------ # + + # General logic for all files + hpxml.header.xml_generated_by = 'tasks.rb' + hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs + + # Logic that can only be applied based on the file name + if ['base-hvac-undersized-allow-increased-fixed-capacities.xml'].include? hpxml_file + hpxml.header.allow_increased_fixed_capacities = true + elsif ['base-misc-emissions.xml'].include? hpxml_file + hpxml_bldg.egrid_region = 'Western' + hpxml_bldg.egrid_subregion = 'RMPA' + hpxml_bldg.cambium_region_gea = 'RMPAc' + end + + # --------------------- # + # HPXML BuildingSummary # + # --------------------- # + + # General logic for all files + hpxml_bldg.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas] + + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-vacancy-year-round.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.building_occupancy.weekday_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' + hpxml_bldg.building_occupancy.weekend_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' + hpxml_bldg.building_occupancy.monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + elsif ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.building_construction.average_ceiling_height = nil + hpxml_bldg.building_construction.conditioned_building_volume = nil + elsif ['base-atticroof-cathedral.xml'].include? hpxml_file + hpxml_bldg.building_construction.number_of_conditioned_floors = 2 + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1 + hpxml_bldg.building_construction.conditioned_floor_area = 2700 + hpxml_bldg.attics[0].attic_type = HPXML::AtticTypeCathedral + elsif ['base-atticroof-conditioned.xml'].include? hpxml_file + hpxml_bldg.building_construction.conditioned_building_volume = 23850 + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + hpxml_bldg.air_infiltration_measurements[0].infiltration_height = 15.0 + elsif ['base-enclosure-split-level.xml'].include? hpxml_file + hpxml_bldg.building_construction.number_of_conditioned_floors = 1.5 + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1.5 + elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 2 + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + hpxml_bldg.building_construction.conditioned_floor_area -= 400 * 2 + hpxml_bldg.building_construction.conditioned_building_volume -= 400 * 2 * 8 + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + elsif ['base-bldgtype-multifamily-infil-compartmentalization-test.xml'].include? hpxml_file + hpxml_bldg.air_infiltration_measurements[0].a_ext = 0.2 + end + + # --------------- # + # HPXML Enclosure # + # --------------- # + + # General logic for all files (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface| - surface.solar_absorptance = nil - surface.emittance = nil + surface.solar_absorptance = 0.7 + surface.emittance = 0.92 if surface.is_a? HPXML::Roof - surface.radiant_barrier = nil + surface.roof_color = nil + else + surface.color = nil end end - (hpxml_bldg.walls + hpxml_bldg.foundation_walls).each do |wall| - wall.interior_finish_type = nil - end - hpxml_bldg.foundation_walls.each do |fwall| - fwall.length = fwall.area / fwall.height - fwall.area = nil - end - hpxml_bldg.doors[0].azimuth = nil - elsif ['base-enclosure-2stories.xml', - 'base-enclosure-2stories-garage.xml', - 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file - hpxml_bldg.rim_joists << hpxml_bldg.rim_joists[-1].dup - hpxml_bldg.rim_joists[-1].id = "RimJoist#{hpxml_bldg.rim_joists.size}" - hpxml_bldg.rim_joists[-1].insulation_id = "RimJoist#{hpxml_bldg.rim_joists.size}Insulation" - hpxml_bldg.rim_joists[-1].interior_adjacent_to = HPXML::LocationLivingSpace - hpxml_bldg.rim_joists[-1].area = 116 - elsif ['base-foundation-conditioned-basement-wall-insulation.xml'].include? hpxml_file - hpxml_bldg.foundation_walls.each do |foundation_wall| - foundation_wall.insulation_interior_r_value = 10 - foundation_wall.insulation_interior_distance_to_top = 1 - foundation_wall.insulation_interior_distance_to_bottom = 8 - foundation_wall.insulation_exterior_r_value = 8.9 - foundation_wall.insulation_exterior_distance_to_top = 1 - foundation_wall.insulation_exterior_distance_to_bottom = 8 + hpxml_bldg.roofs.each do |roof| + next unless roof.interior_adjacent_to == HPXML::LocationLivingSpace + + roof.interior_finish_type = HPXML::InteriorFinishGypsumBoard end - elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file - hpxml_bldg.foundation_walls.reverse_each do |foundation_wall| - foundation_wall.delete + (hpxml_bldg.walls + hpxml_bldg.foundation_walls + hpxml_bldg.floors).each do |surface| + if surface.is_a?(HPXML::FoundationWall) && surface.interior_adjacent_to != HPXML::LocationBasementConditioned + surface.interior_finish_type = HPXML::InteriorFinishNone + end + next unless [HPXML::LocationLivingSpace, + HPXML::LocationBasementConditioned].include?(surface.interior_adjacent_to) && + [HPXML::LocationOutside, + HPXML::LocationGround, + HPXML::LocationGarage, + HPXML::LocationAtticUnvented, + HPXML::LocationAtticVented, + HPXML::LocationOtherHousingUnit, + HPXML::LocationBasementConditioned].include?(surface.exterior_adjacent_to) + next if surface.is_a?(HPXML::Floor) && surface.is_floor + + surface.interior_finish_type = HPXML::InteriorFinishGypsumBoard + end + hpxml_bldg.attics.each do |attic| + if attic.attic_type == HPXML::AtticTypeUnvented + attic.within_infiltration_volume = false + elsif attic.attic_type == HPXML::AtticTypeVented + attic.vented_attic_sla = 0.003 + end end - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 480, - thickness: 8, - depth_below_grade: 7, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 8, - insulation_exterior_r_value: 8.9) - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 240, - thickness: 8, - depth_below_grade: 3, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 8, - insulation_exterior_r_value: 8.9) - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 240, - thickness: 8, - depth_below_grade: 1, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 8, - insulation_exterior_r_value: 8.9) - hpxml_bldg.foundation_walls.each do |foundation_wall| - hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id + hpxml_bldg.foundations.each do |foundation| + if foundation.foundation_type == HPXML::FoundationTypeCrawlspaceUnvented + foundation.within_infiltration_volume = false + elsif foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented + foundation.vented_crawlspace_sla = 0.00667 + end end - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + hpxml_bldg.skylights.each do |skylight| + skylight.interior_shading_factor_summer = 1.0 + skylight.interior_shading_factor_winter = 1.0 + end + + # Logic that can only be applied based on the file name + if ['base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml', + 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml', + 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml', + 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'].include? hpxml_file + if hpxml_file == 'base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml' + adjacent_to = HPXML::LocationOtherMultifamilyBufferSpace + elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml' + adjacent_to = HPXML::LocationOtherNonFreezingSpace + elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml' + adjacent_to = HPXML::LocationOtherHeatedSpace + elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml' + adjacent_to = HPXML::LocationOtherHousingUnit + end + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationLivingSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit + }[0] + wall.exterior_adjacent_to = adjacent_to + hpxml_bldg.floors[0].exterior_adjacent_to = adjacent_to + hpxml_bldg.floors[1].exterior_adjacent_to = adjacent_to + if hpxml_file != 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml' + wall.insulation_assembly_r_value = 23 + hpxml_bldg.floors[0].insulation_assembly_r_value = 18.7 + hpxml_bldg.floors[1].insulation_assembly_r_value = 18.7 + end + hpxml_bldg.windows.each do |window| + window.area = (window.area * 0.35).round(1) + end + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: wall.id, area: 20, azimuth: 0, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml_bldg.foundation_walls[-1].id) - elsif ['base-foundation-multiple.xml'].include? hpxml_file - hpxml_bldg.foundations.add(id: "Foundation#{hpxml_bldg.foundations.size + 1}", - foundation_type: HPXML::FoundationTypeCrawlspaceUnvented, - within_infiltration_volume: false) - hpxml_bldg.rim_joists.each do |rim_joist| - next unless rim_joist.exterior_adjacent_to == HPXML::LocationOutside - - rim_joist.exterior_adjacent_to = HPXML::LocationCrawlspaceUnvented - rim_joist.siding = nil - end - hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - siding: HPXML::SidingTypeWood, - area: 81, - solar_absorptance: 0.7, - emittance: 0.92, - insulation_assembly_r_value: 4.0) - hpxml_bldg.foundation_walls.each do |foundation_wall| - foundation_wall.area /= 2.0 - end - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - interior_adjacent_to: HPXML::LocationBasementUnconditioned, - height: 8, - area: 360, - thickness: 8, - depth_below_grade: 4, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0) - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - height: 4, - area: 600, - thickness: 8, - depth_below_grade: 3, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0) - hpxml_bldg.floors[0].area = 675 - hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 675, - insulation_assembly_r_value: 18.7, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml_bldg.slabs[0].area = 675 - hpxml_bldg.slabs[0].exposed_perimeter = 75 - hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - area: 675, - thickness: 0, - exposed_perimeter: 75, - perimeter_insulation_depth: 0, - under_slab_insulation_width: 0, - perimeter_insulation_r_value: 0, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - elsif ['base-foundation-complex.xml'].include? hpxml_file - hpxml_bldg.foundation_walls.reverse_each do |foundation_wall| - foundation_wall.delete - end - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 160, - thickness: 8, - depth_below_grade: 7, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0.0) - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 240, - thickness: 8, - depth_below_grade: 7, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 8, - insulation_exterior_r_value: 8.9) - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 320, - thickness: 8, - depth_below_grade: 3, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0.0) - hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 400, - thickness: 8, - depth_below_grade: 3, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 8, - insulation_exterior_r_value: 8.9) - hpxml_bldg.foundation_walls.each do |foundation_wall| - hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id - end - hpxml_bldg.slabs.reverse_each do |slab| - slab.delete - end - hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationBasementConditioned, - area: 1150, - thickness: 4, - exposed_perimeter: 120, - perimeter_insulation_depth: 0, - under_slab_insulation_width: 0, - perimeter_insulation_r_value: 0, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationBasementConditioned, - area: 200, - thickness: 4, - exposed_perimeter: 30, - perimeter_insulation_depth: 1, - under_slab_insulation_width: 0, - perimeter_insulation_r_value: 5, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - hpxml_bldg.slabs.each do |slab| - hpxml_bldg.foundations[0].attached_to_slab_idrefs << slab.id - end - elsif ['base-foundation-basement-garage.xml'].include? hpxml_file - hpxml_bldg.roofs[0].area += 670 - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGarage, - interior_adjacent_to: HPXML::LocationBasementConditioned, - wall_type: HPXML::WallTypeWoodStud, - area: 320, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23) - hpxml_bldg.foundations[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id - hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationGarage, - wall_type: HPXML::WallTypeWoodStud, - siding: HPXML::SidingTypeWood, - area: 320, - solar_absorptance: 0.7, - emittance: 0.92, - insulation_assembly_r_value: 4) - hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationGarage, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 400, - insulation_assembly_r_value: 39.3, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml_bldg.slabs[0].area -= 400 - hpxml_bldg.slabs[0].exposed_perimeter -= 40 - hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationGarage, - area: 400, - thickness: 4, - exposed_perimeter: 40, - perimeter_insulation_depth: 0, - under_slab_insulation_width: 0, - perimeter_insulation_r_value: 0, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: hpxml_bldg.walls[-3].id, - area: 70, - azimuth: 180, - r_value: 4.4) - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: hpxml_bldg.walls[-2].id, - area: 4, - azimuth: 0, - r_value: 4.4) - elsif ['base-enclosure-ceilingtypes.xml'].include? hpxml_file - exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to - area = hpxml_bldg.floors[0].area - hpxml_bldg.floors.reverse_each do |floor| - floor.delete - end - floors_map = { HPXML::FloorTypeSIP => 16.1, - HPXML::FloorTypeConcrete => 3.2, - HPXML::FloorTypeSteelFrame => 8.1 } - floors_map.each_with_index do |(floor_type, assembly_r), _i| + r_value: 4.4) + hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = adjacent_to + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = adjacent_to + hpxml_bldg.water_heating_systems[0].location = adjacent_to + hpxml_bldg.clothes_washers[0].location = adjacent_to + hpxml_bldg.clothes_dryers[0].location = adjacent_to + hpxml_bldg.dishwashers[0].location = adjacent_to + hpxml_bldg.refrigerators[0].location = adjacent_to + hpxml_bldg.cooking_ranges[0].location = adjacent_to + elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationLivingSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit + }[0] + wall.delete + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, + interior_adjacent_to: HPXML::LocationLivingSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, + interior_adjacent_to: HPXML::LocationLivingSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, + interior_adjacent_to: HPXML::LocationLivingSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherHousingUnit, + interior_adjacent_to: HPXML::LocationLivingSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 4.0) + hpxml_bldg.floors[0].delete + hpxml_bldg.floors[0].id = 'Floor1' + hpxml_bldg.floors[0].insulation_id = 'Floor1Insulation' hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, + exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: floor_type, - area: area / floors_map.size, - insulation_assembly_r_value: assembly_r, - floor_or_ceiling: HPXML::FloorOrCeilingCeiling) - end - elsif ['base-enclosure-floortypes.xml'].include? hpxml_file - exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to - area = hpxml_bldg.floors[0].area - ceiling = hpxml_bldg.floors[1].dup - hpxml_bldg.floors.reverse_each do |floor| - floor.delete - end - floors_map = { HPXML::FloorTypeSIP => 16.1, - HPXML::FloorTypeConcrete => 3.2, - HPXML::FloorTypeSteelFrame => 8.1 } - floors_map.each_with_index do |(floor_type, assembly_r), _i| + floor_type: HPXML::FloorTypeWoodFrame, + area: 550, + insulation_assembly_r_value: 18.7, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, + exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: floor_type, - area: area / floors_map.size, - insulation_assembly_r_value: assembly_r, + floor_type: HPXML::FloorTypeWoodFrame, + area: 200, + insulation_assembly_r_value: 18.7, floor_or_ceiling: HPXML::FloorOrCeilingFloor) - end - hpxml_bldg.floors << ceiling - hpxml_bldg.floors[-1].id = "Floor#{hpxml_bldg.floors.size}" - hpxml_bldg.floors[-1].insulation_id = "Floor#{hpxml_bldg.floors.size}Insulation" - elsif ['base-enclosure-walltypes.xml'].include? hpxml_file - hpxml_bldg.rim_joists.reverse_each do |rim_joist| - rim_joist.delete - end - siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorDark], - [HPXML::SidingTypeAsbestos, HPXML::ColorMedium], - [HPXML::SidingTypeBrick, HPXML::ColorReflective], - [HPXML::SidingTypeCompositeShingle, HPXML::ColorDark], - [HPXML::SidingTypeFiberCement, HPXML::ColorMediumDark], - [HPXML::SidingTypeMasonite, HPXML::ColorLight], - [HPXML::SidingTypeStucco, HPXML::ColorMedium], - [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMediumDark], - [HPXML::SidingTypeVinyl, HPXML::ColorLight], - [HPXML::SidingTypeNone, HPXML::ColorMedium]] - siding_types.each do |siding_type| + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, + interior_adjacent_to: HPXML::LocationLivingSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 150, + insulation_assembly_r_value: 2.1, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationLivingSpace && + w.exterior_adjacent_to == HPXML::LocationOtherMultifamilyBufferSpace + }[0] + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 50, + azimuth: 270, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: wall.id) + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationLivingSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHeatedSpace + }[0] + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: wall.id, + area: 20, + azimuth: 0, + r_value: 4.4) + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationLivingSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit + }[0] + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: wall.id, + area: 20, + azimuth: 0, + r_value: 4.4) + elsif ['base-enclosure-orientations.xml'].include? hpxml_file + hpxml_bldg.windows.each do |window| + window.orientation = { 0 => 'north', 90 => 'east', 180 => 'south', 270 => 'west' }[window.azimuth] + window.azimuth = nil + end + hpxml_bldg.doors[0].delete + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall1', + area: 20, + orientation: HPXML::OrientationNorth, + r_value: 4.4) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall1', + area: 20, + orientation: HPXML::OrientationSouth, + r_value: 4.4) + elsif ['base-foundation-unconditioned-basement.xml'].include? hpxml_file + hpxml_bldg.foundations[0].within_infiltration_volume = false + elsif ['base-atticroof-conditioned.xml'].include? hpxml_file + hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}", + attic_type: HPXML::AtticTypeUnvented, + within_infiltration_volume: false) + hpxml_bldg.roofs.each do |roof| + roof.area = 1006.0 / hpxml_bldg.roofs.size + roof.insulation_assembly_r_value = 25.8 + end + hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", + interior_adjacent_to: HPXML::LocationAtticUnvented, + area: 504, + roof_type: HPXML::RoofTypeAsphaltShingles, + solar_absorptance: 0.7, + emittance: 0.92, + pitch: 6, + radiant_barrier: false, + insulation_assembly_r_value: 2.3) + hpxml_bldg.rim_joists.each do |rim_joist| + rim_joist.area = 116.0 / hpxml_bldg.rim_joists.size + end + hpxml_bldg.walls.each do |wall| + wall.area = 1200.0 / hpxml_bldg.walls.size + end + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationAtticUnvented, + interior_adjacent_to: HPXML::LocationLivingSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 316, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationLivingSpace, + wall_type: HPXML::WallTypeWoodStud, + siding: HPXML::SidingTypeWood, + area: 240, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 22.3) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationAtticUnvented, + attic_wall_type: HPXML::AtticWallTypeGable, + wall_type: HPXML::WallTypeWoodStud, + siding: HPXML::SidingTypeWood, + area: 50, + solar_absorptance: 0.7, + emittance: 0.92, + insulation_assembly_r_value: 4.0) + hpxml_bldg.foundation_walls.each do |foundation_wall| + foundation_wall.area = 1200.0 / hpxml_bldg.foundation_walls.size + end + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationAtticUnvented, + interior_adjacent_to: HPXML::LocationLivingSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 450, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 39.3, + floor_or_ceiling: HPXML::FloorOrCeilingCeiling) + hpxml_bldg.slabs[0].area = 1350 + hpxml_bldg.slabs[0].exposed_perimeter = 150 + hpxml_bldg.windows[1].area = 108 + hpxml_bldg.windows[3].area = 108 + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 12, + azimuth: 90, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0, + wall_idref: hpxml_bldg.walls[-2].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 62, + azimuth: 270, + ufactor: 0.3, + shgc: 0.45, + fraction_operable: 0, + wall_idref: hpxml_bldg.walls[-2].id) + elsif ['base-foundation-unconditioned-basement-above-grade.xml'].include? hpxml_file + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 20, + azimuth: 0, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 10, + azimuth: 90, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 20, + azimuth: 180, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 10, + azimuth: 270, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + elsif ['base-enclosure-skylights-physical-properties.xml'].include? hpxml_file + hpxml_bldg.skylights[0].ufactor = nil + hpxml_bldg.skylights[0].shgc = nil + hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersSinglePane + hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeWood + hpxml_bldg.skylights[0].glass_type = HPXML::WindowGlassTypeTinted + hpxml_bldg.skylights[1].ufactor = nil + hpxml_bldg.skylights[1].shgc = nil + hpxml_bldg.skylights[1].glass_layers = HPXML::WindowLayersDoublePane + hpxml_bldg.skylights[1].frame_type = HPXML::WindowFrameTypeMetal + hpxml_bldg.skylights[1].thermal_break = true + hpxml_bldg.skylights[1].glass_type = HPXML::WindowGlassTypeLowE + hpxml_bldg.skylights[1].gas_fill = HPXML::WindowGasKrypton + elsif ['base-enclosure-skylights-shading.xml'].include? hpxml_file + hpxml_bldg.skylights[0].exterior_shading_factor_summer = 0.1 + hpxml_bldg.skylights[0].exterior_shading_factor_winter = 0.9 + hpxml_bldg.skylights[0].interior_shading_factor_summer = 0.01 + hpxml_bldg.skylights[0].interior_shading_factor_winter = 0.99 + hpxml_bldg.skylights[1].exterior_shading_factor_summer = 0.5 + hpxml_bldg.skylights[1].exterior_shading_factor_winter = 0.0 + hpxml_bldg.skylights[1].interior_shading_factor_summer = 0.5 + hpxml_bldg.skylights[1].interior_shading_factor_winter = 1.0 + elsif ['base-enclosure-windows-physical-properties.xml'].include? hpxml_file + hpxml_bldg.windows[0].ufactor = nil + hpxml_bldg.windows[0].shgc = nil + hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersSinglePane + hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeWood + hpxml_bldg.windows[0].glass_type = HPXML::WindowGlassTypeTinted + hpxml_bldg.windows[1].ufactor = nil + hpxml_bldg.windows[1].shgc = nil + hpxml_bldg.windows[1].glass_layers = HPXML::WindowLayersDoublePane + hpxml_bldg.windows[1].frame_type = HPXML::WindowFrameTypeVinyl + hpxml_bldg.windows[1].glass_type = HPXML::WindowGlassTypeReflective + hpxml_bldg.windows[1].gas_fill = HPXML::WindowGasAir + hpxml_bldg.windows[2].ufactor = nil + hpxml_bldg.windows[2].shgc = nil + hpxml_bldg.windows[2].glass_layers = HPXML::WindowLayersDoublePane + hpxml_bldg.windows[2].frame_type = HPXML::WindowFrameTypeMetal + hpxml_bldg.windows[2].thermal_break = true + hpxml_bldg.windows[2].glass_type = HPXML::WindowGlassTypeLowE + hpxml_bldg.windows[2].gas_fill = HPXML::WindowGasArgon + hpxml_bldg.windows[3].ufactor = nil + hpxml_bldg.windows[3].shgc = nil + hpxml_bldg.windows[3].glass_layers = HPXML::WindowLayersGlassBlock + elsif ['base-enclosure-windows-shading.xml'].include? hpxml_file + hpxml_bldg.windows[1].exterior_shading_factor_summer = 0.5 + hpxml_bldg.windows[1].exterior_shading_factor_winter = 0.5 + hpxml_bldg.windows[1].interior_shading_factor_summer = 0.5 + hpxml_bldg.windows[1].interior_shading_factor_winter = 0.5 + hpxml_bldg.windows[2].exterior_shading_factor_summer = 0.1 + hpxml_bldg.windows[2].exterior_shading_factor_winter = 0.9 + hpxml_bldg.windows[2].interior_shading_factor_summer = 0.01 + hpxml_bldg.windows[2].interior_shading_factor_winter = 0.99 + hpxml_bldg.windows[3].exterior_shading_factor_summer = 0.0 + hpxml_bldg.windows[3].exterior_shading_factor_winter = 1.0 + hpxml_bldg.windows[3].interior_shading_factor_summer = 0.0 + hpxml_bldg.windows[3].interior_shading_factor_winter = 1.0 + elsif ['base-enclosure-thermal-mass.xml'].include? hpxml_file + hpxml_bldg.partition_wall_mass.area_fraction = 0.8 + hpxml_bldg.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard + hpxml_bldg.partition_wall_mass.interior_finish_thickness = 0.25 + hpxml_bldg.furniture_mass.area_fraction = 0.8 + hpxml_bldg.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight + elsif ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.attics.reverse_each do |attic| + attic.delete + end + hpxml_bldg.foundations.reverse_each do |foundation| + foundation.delete + end + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil + (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface| + surface.solar_absorptance = nil + surface.emittance = nil + if surface.is_a? HPXML::Roof + surface.radiant_barrier = nil + end + end + (hpxml_bldg.walls + hpxml_bldg.foundation_walls).each do |wall| + wall.interior_finish_type = nil + end + hpxml_bldg.foundation_walls.each do |fwall| + fwall.length = fwall.area / fwall.height + fwall.area = nil + end + hpxml_bldg.doors[0].azimuth = nil + elsif ['base-enclosure-2stories.xml', + 'base-enclosure-2stories-garage.xml', + 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file + hpxml_bldg.rim_joists << hpxml_bldg.rim_joists[-1].dup + hpxml_bldg.rim_joists[-1].id = "RimJoist#{hpxml_bldg.rim_joists.size}" + hpxml_bldg.rim_joists[-1].insulation_id = "RimJoist#{hpxml_bldg.rim_joists.size}Insulation" + hpxml_bldg.rim_joists[-1].interior_adjacent_to = HPXML::LocationLivingSpace + hpxml_bldg.rim_joists[-1].area = 116 + elsif ['base-foundation-conditioned-basement-wall-insulation.xml'].include? hpxml_file + hpxml_bldg.foundation_walls.each do |foundation_wall| + foundation_wall.insulation_interior_r_value = 10 + foundation_wall.insulation_interior_distance_to_top = 1 + foundation_wall.insulation_interior_distance_to_bottom = 8 + foundation_wall.insulation_exterior_r_value = 8.9 + foundation_wall.insulation_exterior_distance_to_top = 1 + foundation_wall.insulation_exterior_distance_to_bottom = 8 + end + elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file + hpxml_bldg.foundation_walls.reverse_each do |foundation_wall| + foundation_wall.delete + end + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 480, + thickness: 8, + depth_below_grade: 7, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 240, + thickness: 8, + depth_below_grade: 3, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 240, + thickness: 8, + depth_below_grade: 1, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.each do |foundation_wall| + hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id + end + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 20, + azimuth: 0, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[-1].id) + elsif ['base-foundation-multiple.xml'].include? hpxml_file + hpxml_bldg.foundations.add(id: "Foundation#{hpxml_bldg.foundations.size + 1}", + foundation_type: HPXML::FoundationTypeCrawlspaceUnvented, + within_infiltration_volume: false) + hpxml_bldg.rim_joists.each do |rim_joist| + next unless rim_joist.exterior_adjacent_to == HPXML::LocationOutside + + rim_joist.exterior_adjacent_to = HPXML::LocationCrawlspaceUnvented + rim_joist.siding = nil + end hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}", exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationBasementConditioned, - siding: siding_type[0], - color: siding_type[1], - area: 116 / siding_types.size, + interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + siding: HPXML::SidingTypeWood, + area: 81, + solar_absorptance: 0.7, emittance: 0.92, - insulation_assembly_r_value: 23.0) - hpxml_bldg.foundations[0].attached_to_rim_joist_idrefs << hpxml_bldg.rim_joists[-1].id - end - gable_walls = hpxml_bldg.walls.select { |w| w.interior_adjacent_to == HPXML::LocationAtticUnvented } - hpxml_bldg.walls.reverse_each do |wall| - wall.delete - end - walls_map = { HPXML::WallTypeCMU => 12, - HPXML::WallTypeDoubleWoodStud => 28.7, - HPXML::WallTypeICF => 21, - HPXML::WallTypeLog => 7.1, - HPXML::WallTypeSIP => 16.1, - HPXML::WallTypeConcrete => 1.35, - HPXML::WallTypeSteelStud => 8.1, - HPXML::WallTypeStone => 5.4, - HPXML::WallTypeStrawBale => 58.8, - HPXML::WallTypeBrick => 7.9, - HPXML::WallTypeAdobe => 5.0 } - siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorReflective], - [HPXML::SidingTypeAsbestos, HPXML::ColorLight], - [HPXML::SidingTypeBrick, HPXML::ColorMediumDark], - [HPXML::SidingTypeCompositeShingle, HPXML::ColorReflective], - [HPXML::SidingTypeFiberCement, HPXML::ColorMedium], - [HPXML::SidingTypeMasonite, HPXML::ColorDark], - [HPXML::SidingTypeStucco, HPXML::ColorLight], - [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMedium], - [HPXML::SidingTypeVinyl, HPXML::ColorDark], - [HPXML::SidingTypeNone, HPXML::ColorMedium]] - int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], - [HPXML::InteriorFinishGypsumBoard, 1.0], - [HPXML::InteriorFinishGypsumCompositeBoard, 0.5], - [HPXML::InteriorFinishPlaster, 0.5], - [HPXML::InteriorFinishWood, 0.5], - [HPXML::InteriorFinishNone, nil]] - walls_map.each_with_index do |(wall_type, assembly_r), i| + insulation_assembly_r_value: 4.0) + hpxml_bldg.foundation_walls.each do |foundation_wall| + foundation_wall.area /= 2.0 + end + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + interior_adjacent_to: HPXML::LocationBasementUnconditioned, + height: 8, + area: 360, + thickness: 8, + depth_below_grade: 4, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + height: 4, + area: 600, + thickness: 8, + depth_below_grade: 3, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0) + hpxml_bldg.floors[0].area = 675 + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + interior_adjacent_to: HPXML::LocationLivingSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 675, + insulation_assembly_r_value: 18.7, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + hpxml_bldg.slabs[0].area = 675 + hpxml_bldg.slabs[0].exposed_perimeter = 75 + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + area: 675, + thickness: 0, + exposed_perimeter: 75, + perimeter_insulation_depth: 0, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 0, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + elsif ['base-foundation-complex.xml'].include? hpxml_file + hpxml_bldg.foundation_walls.reverse_each do |foundation_wall| + foundation_wall.delete + end + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 160, + thickness: 8, + depth_below_grade: 7, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0.0) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 240, + thickness: 8, + depth_below_grade: 7, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 320, + thickness: 8, + depth_below_grade: 3, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0.0) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 400, + thickness: 8, + depth_below_grade: 3, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.each do |foundation_wall| + hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id + end + hpxml_bldg.slabs.reverse_each do |slab| + slab.delete + end + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: HPXML::LocationBasementConditioned, + area: 1150, + thickness: 4, + exposed_perimeter: 120, + perimeter_insulation_depth: 0, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 0, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: HPXML::LocationBasementConditioned, + area: 200, + thickness: 4, + exposed_perimeter: 30, + perimeter_insulation_depth: 1, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 5, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + hpxml_bldg.slabs.each do |slab| + hpxml_bldg.foundations[0].attached_to_slab_idrefs << slab.id + end + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + hpxml_bldg.roofs[0].area += 670 + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGarage, + interior_adjacent_to: HPXML::LocationBasementConditioned, + wall_type: HPXML::WallTypeWoodStud, + area: 320, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23) + hpxml_bldg.foundations[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: wall_type, - siding: siding_types[i % siding_types.size][0], - color: siding_types[i % siding_types.size][1], - area: 1200 / walls_map.size, + interior_adjacent_to: HPXML::LocationGarage, + wall_type: HPXML::WallTypeWoodStud, + siding: HPXML::SidingTypeWood, + area: 320, + solar_absorptance: 0.7, emittance: 0.92, - interior_finish_type: int_finish_types[i % int_finish_types.size][0], - interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], - insulation_assembly_r_value: assembly_r) - end - gable_walls.each do |gable_wall| - hpxml_bldg.walls << gable_wall - hpxml_bldg.walls[-1].id = "Wall#{hpxml_bldg.walls.size}" - hpxml_bldg.walls[-1].insulation_id = "Wall#{hpxml_bldg.walls.size}Insulation" - hpxml_bldg.attics[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id - end - hpxml_bldg.windows.reverse_each do |window| - window.delete - end - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 108 / 8, + insulation_assembly_r_value: 4) + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationGarage, + interior_adjacent_to: HPXML::LocationLivingSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 400, + insulation_assembly_r_value: 39.3, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + hpxml_bldg.slabs[0].area -= 400 + hpxml_bldg.slabs[0].exposed_perimeter -= 40 + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: HPXML::LocationGarage, + area: 400, + thickness: 4, + exposed_perimeter: 40, + perimeter_insulation_depth: 0, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 0, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: hpxml_bldg.walls[-3].id, + area: 70, + azimuth: 180, + r_value: 4.4) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: hpxml_bldg.walls[-2].id, + area: 4, + azimuth: 0, + r_value: 4.4) + elsif ['base-enclosure-ceilingtypes.xml'].include? hpxml_file + exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to + area = hpxml_bldg.floors[0].area + hpxml_bldg.floors.reverse_each do |floor| + floor.delete + end + floors_map = { HPXML::FloorTypeSIP => 16.1, + HPXML::FloorTypeConcrete => 3.2, + HPXML::FloorTypeSteelFrame => 8.1 } + floors_map.each_with_index do |(floor_type, assembly_r), _i| + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: HPXML::LocationLivingSpace, + floor_type: floor_type, + area: area / floors_map.size, + insulation_assembly_r_value: assembly_r, + floor_or_ceiling: HPXML::FloorOrCeilingCeiling) + end + elsif ['base-enclosure-floortypes.xml'].include? hpxml_file + exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to + area = hpxml_bldg.floors[0].area + ceiling = hpxml_bldg.floors[1].dup + hpxml_bldg.floors.reverse_each do |floor| + floor.delete + end + floors_map = { HPXML::FloorTypeSIP => 16.1, + HPXML::FloorTypeConcrete => 3.2, + HPXML::FloorTypeSteelFrame => 8.1 } + floors_map.each_with_index do |(floor_type, assembly_r), _i| + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: HPXML::LocationLivingSpace, + floor_type: floor_type, + area: area / floors_map.size, + insulation_assembly_r_value: assembly_r, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + end + hpxml_bldg.floors << ceiling + hpxml_bldg.floors[-1].id = "Floor#{hpxml_bldg.floors.size}" + hpxml_bldg.floors[-1].insulation_id = "Floor#{hpxml_bldg.floors.size}Insulation" + elsif ['base-enclosure-walltypes.xml'].include? hpxml_file + hpxml_bldg.rim_joists.reverse_each do |rim_joist| + rim_joist.delete + end + siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorDark], + [HPXML::SidingTypeAsbestos, HPXML::ColorMedium], + [HPXML::SidingTypeBrick, HPXML::ColorReflective], + [HPXML::SidingTypeCompositeShingle, HPXML::ColorDark], + [HPXML::SidingTypeFiberCement, HPXML::ColorMediumDark], + [HPXML::SidingTypeMasonite, HPXML::ColorLight], + [HPXML::SidingTypeStucco, HPXML::ColorMedium], + [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMediumDark], + [HPXML::SidingTypeVinyl, HPXML::ColorLight], + [HPXML::SidingTypeNone, HPXML::ColorMedium]] + siding_types.each do |siding_type| + hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationBasementConditioned, + siding: siding_type[0], + color: siding_type[1], + area: 116 / siding_types.size, + emittance: 0.92, + insulation_assembly_r_value: 23.0) + hpxml_bldg.foundations[0].attached_to_rim_joist_idrefs << hpxml_bldg.rim_joists[-1].id + end + gable_walls = hpxml_bldg.walls.select { |w| w.interior_adjacent_to == HPXML::LocationAtticUnvented } + hpxml_bldg.walls.reverse_each do |wall| + wall.delete + end + walls_map = { HPXML::WallTypeCMU => 12, + HPXML::WallTypeDoubleWoodStud => 28.7, + HPXML::WallTypeICF => 21, + HPXML::WallTypeLog => 7.1, + HPXML::WallTypeSIP => 16.1, + HPXML::WallTypeConcrete => 1.35, + HPXML::WallTypeSteelStud => 8.1, + HPXML::WallTypeStone => 5.4, + HPXML::WallTypeStrawBale => 58.8, + HPXML::WallTypeBrick => 7.9, + HPXML::WallTypeAdobe => 5.0 } + siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorReflective], + [HPXML::SidingTypeAsbestos, HPXML::ColorLight], + [HPXML::SidingTypeBrick, HPXML::ColorMediumDark], + [HPXML::SidingTypeCompositeShingle, HPXML::ColorReflective], + [HPXML::SidingTypeFiberCement, HPXML::ColorMedium], + [HPXML::SidingTypeMasonite, HPXML::ColorDark], + [HPXML::SidingTypeStucco, HPXML::ColorLight], + [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMedium], + [HPXML::SidingTypeVinyl, HPXML::ColorDark], + [HPXML::SidingTypeNone, HPXML::ColorMedium]] + int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], + [HPXML::InteriorFinishGypsumBoard, 1.0], + [HPXML::InteriorFinishGypsumCompositeBoard, 0.5], + [HPXML::InteriorFinishPlaster, 0.5], + [HPXML::InteriorFinishWood, 0.5], + [HPXML::InteriorFinishNone, nil]] + walls_map.each_with_index do |(wall_type, assembly_r), i| + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationLivingSpace, + wall_type: wall_type, + siding: siding_types[i % siding_types.size][0], + color: siding_types[i % siding_types.size][1], + area: 1200 / walls_map.size, + emittance: 0.92, + interior_finish_type: int_finish_types[i % int_finish_types.size][0], + interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], + insulation_assembly_r_value: assembly_r) + end + gable_walls.each do |gable_wall| + hpxml_bldg.walls << gable_wall + hpxml_bldg.walls[-1].id = "Wall#{hpxml_bldg.walls.size}" + hpxml_bldg.walls[-1].insulation_id = "Wall#{hpxml_bldg.walls.size}Insulation" + hpxml_bldg.attics[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id + end + hpxml_bldg.windows.reverse_each do |window| + window.delete + end + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 108 / 8, + azimuth: 0, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall1') + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 72 / 8, + azimuth: 90, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall2') + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 108 / 8, + azimuth: 180, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall3') + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 72 / 8, + azimuth: 270, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall4') + hpxml_bldg.doors.reverse_each do |door| + door.delete + end + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall9', + area: 20, azimuth: 0, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall1') - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 72 / 8, - azimuth: 90, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall2') - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 108 / 8, + r_value: 4.4) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall10', + area: 20, azimuth: 180, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall3') - hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", - area: 72 / 8, - azimuth: 270, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall4') - hpxml_bldg.doors.reverse_each do |door| - door.delete - end - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: 'Wall9', - area: 20, - azimuth: 0, - r_value: 4.4) - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: 'Wall10', - area: 20, - azimuth: 180, - r_value: 4.4) - elsif ['base-enclosure-rooftypes.xml'].include? hpxml_file - hpxml_bldg.roofs.reverse_each do |roof| - roof.delete - end - roof_types = [[HPXML::RoofTypeClayTile, HPXML::ColorLight], - [HPXML::RoofTypeMetal, HPXML::ColorReflective], - [HPXML::RoofTypeWoodShingles, HPXML::ColorDark], - [HPXML::RoofTypeShingles, HPXML::ColorMediumDark], - [HPXML::RoofTypePlasticRubber, HPXML::ColorLight], - [HPXML::RoofTypeEPS, HPXML::ColorMedium], - [HPXML::RoofTypeConcrete, HPXML::ColorLight], - [HPXML::RoofTypeCool, HPXML::ColorReflective]] - int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], - [HPXML::InteriorFinishPlaster, 0.5], - [HPXML::InteriorFinishWood, 0.5]] - roof_types.each_with_index do |roof_type, i| - hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", - interior_adjacent_to: HPXML::LocationAtticUnvented, - area: 1509.3 / roof_types.size, - roof_type: roof_type[0], - roof_color: roof_type[1], - emittance: 0.92, - pitch: 6, - radiant_barrier: false, - interior_finish_type: int_finish_types[i % int_finish_types.size][0], - interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], - insulation_assembly_r_value: roof_type[0] == HPXML::RoofTypeEPS ? 7.0 : 2.3) - hpxml_bldg.attics[0].attached_to_roof_idrefs << hpxml_bldg.roofs[-1].id - end - elsif ['base-enclosure-overhangs.xml'].include? hpxml_file - # Test relaxed overhangs validation; https://github.com/NREL/OpenStudio-HPXML/issues/866 - hpxml_bldg.windows.each do |window| - next unless window.overhangs_depth.nil? - - window.overhangs_depth = 0.0 - window.overhangs_distance_to_top_of_window = 0.0 - window.overhangs_distance_to_bottom_of_window = 0.0 + r_value: 4.4) + elsif ['base-enclosure-rooftypes.xml'].include? hpxml_file + hpxml_bldg.roofs.reverse_each do |roof| + roof.delete + end + roof_types = [[HPXML::RoofTypeClayTile, HPXML::ColorLight], + [HPXML::RoofTypeMetal, HPXML::ColorReflective], + [HPXML::RoofTypeWoodShingles, HPXML::ColorDark], + [HPXML::RoofTypeShingles, HPXML::ColorMediumDark], + [HPXML::RoofTypePlasticRubber, HPXML::ColorLight], + [HPXML::RoofTypeEPS, HPXML::ColorMedium], + [HPXML::RoofTypeConcrete, HPXML::ColorLight], + [HPXML::RoofTypeCool, HPXML::ColorReflective]] + int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], + [HPXML::InteriorFinishPlaster, 0.5], + [HPXML::InteriorFinishWood, 0.5]] + roof_types.each_with_index do |roof_type, i| + hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", + interior_adjacent_to: HPXML::LocationAtticUnvented, + area: 1509.3 / roof_types.size, + roof_type: roof_type[0], + roof_color: roof_type[1], + emittance: 0.92, + pitch: 6, + radiant_barrier: false, + interior_finish_type: int_finish_types[i % int_finish_types.size][0], + interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], + insulation_assembly_r_value: roof_type[0] == HPXML::RoofTypeEPS ? 7.0 : 2.3) + hpxml_bldg.attics[0].attached_to_roof_idrefs << hpxml_bldg.roofs[-1].id + end + elsif ['base-enclosure-overhangs.xml'].include? hpxml_file + # Test relaxed overhangs validation; https://github.com/NREL/OpenStudio-HPXML/issues/866 + hpxml_bldg.windows.each do |window| + next unless window.overhangs_depth.nil? + + window.overhangs_depth = 0.0 + window.overhangs_distance_to_top_of_window = 0.0 + window.overhangs_distance_to_bottom_of_window = 0.0 + end end - end - if ['base-enclosure-2stories-garage.xml', - 'base-enclosure-garage.xml'].include? hpxml_file - grg_wall = hpxml_bldg.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationGarage && - w.exterior_adjacent_to == HPXML::LocationOutside - }[0] - hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", - wall_idref: grg_wall.id, - area: 70, - azimuth: 180, - r_value: 4.4) - end - if ['base-misc-neighbor-shading-bldgtype-multifamily.xml'].include? hpxml_file - wall = hpxml_bldg.walls.select { |w| w.azimuth == hpxml_bldg.neighbor_buildings[0].azimuth }[0] - wall.exterior_adjacent_to = HPXML::LocationOtherHeatedSpace - end - - # ---------- # - # HPXML HVAC # - # ---------- # - - # General logic - hpxml_bldg.heating_systems.each do |heating_system| - if heating_system.heating_system_type == HPXML::HVACTypeBoiler && - heating_system.heating_system_fuel == HPXML::FuelTypeNaturalGas && - !heating_system.is_shared_system - heating_system.electric_auxiliary_energy = 200 - elsif [HPXML::HVACTypeFloorFurnace, - HPXML::HVACTypeWallFurnace, - HPXML::HVACTypeFireplace, - HPXML::HVACTypeSpaceHeater].include? heating_system.heating_system_type - heating_system.fan_watts = 0 - elsif [HPXML::HVACTypeStove].include? heating_system.heating_system_type - heating_system.fan_watts = 40 + if ['base-enclosure-2stories-garage.xml', + 'base-enclosure-garage.xml'].include? hpxml_file + grg_wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationGarage && + w.exterior_adjacent_to == HPXML::LocationOutside + }[0] + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: grg_wall.id, + area: 70, + azimuth: 180, + r_value: 4.4) + end + if ['base-misc-neighbor-shading-bldgtype-multifamily.xml'].include? hpxml_file + wall = hpxml_bldg.walls.select { |w| w.azimuth == hpxml_bldg.neighbor_buildings[0].azimuth }[0] + wall.exterior_adjacent_to = HPXML::LocationOtherHeatedSpace + end + + # ---------- # + # HPXML HVAC # + # ---------- # + + # General logic + hpxml_bldg.heating_systems.each do |heating_system| + if heating_system.heating_system_type == HPXML::HVACTypeBoiler && + heating_system.heating_system_fuel == HPXML::FuelTypeNaturalGas && + !heating_system.is_shared_system + heating_system.electric_auxiliary_energy = 200 + elsif [HPXML::HVACTypeFloorFurnace, + HPXML::HVACTypeWallFurnace, + HPXML::HVACTypeFireplace, + HPXML::HVACTypeSpaceHeater].include? heating_system.heating_system_type + heating_system.fan_watts = 0 + elsif [HPXML::HVACTypeStove].include? heating_system.heating_system_type + heating_system.fan_watts = 40 + end end - end - hpxml_bldg.heat_pumps.each do |heat_pump| - if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir - heat_pump.pump_watts_per_ton = 30.0 + hpxml_bldg.heat_pumps.each do |heat_pump| + if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir + heat_pump.pump_watts_per_ton = 30.0 + end end - end - # Logic that can only be applied based on the file name - if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - # Handle chiller/cooling tower - if hpxml_file.include? 'chiller' - hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypeChiller, - cooling_system_fuel: HPXML::FuelTypeElectricity, - is_shared_system: true, - number_of_units_served: 6, - cooling_capacity: 24000 * 6, - cooling_efficiency_kw_per_ton: 0.9, - fraction_cool_load_served: 1.0, - primary_system: true) - elsif hpxml_file.include? 'cooling-tower' - hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypeCoolingTower, - cooling_system_fuel: HPXML::FuelTypeElectricity, - is_shared_system: true, - number_of_units_served: 6, - fraction_cool_load_served: 1.0, - primary_system: true) + # Logic that can only be applied based on the file name + if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') + # Handle chiller/cooling tower + if hpxml_file.include? 'chiller' + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypeChiller, + cooling_system_fuel: HPXML::FuelTypeElectricity, + is_shared_system: true, + number_of_units_served: 6, + cooling_capacity: 24000 * 6, + cooling_efficiency_kw_per_ton: 0.9, + fraction_cool_load_served: 1.0, + primary_system: true) + elsif hpxml_file.include? 'cooling-tower' + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypeCoolingTower, + cooling_system_fuel: HPXML::FuelTypeElectricity, + is_shared_system: true, + number_of_units_served: 6, + fraction_cool_load_served: 1.0, + primary_system: true) + end + if hpxml_file.include? 'boiler' + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 78.0 + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + else + hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", + control_type: HPXML::HVACControlTypeManual, + cooling_setpoint_temp: 78.0) + if hpxml_file.include? 'baseboard' + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + end end - if hpxml_file.include? 'boiler' - hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 78.0 - hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id - else - hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", - control_type: HPXML::HVACControlTypeManual, - cooling_setpoint_temp: 78.0) - if hpxml_file.include? 'baseboard' + if hpxml_file.include?('water-loop-heat-pump') || (hpxml_file.include?('fan-coil') && !hpxml_file.include?('fireplace-elec')) + # Handle WLHP/ducted fan coil + hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution| + hvac_distribution.delete + end + if hpxml_file.include? 'water-loop-heat-pump' hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + hydronic_type: HPXML::HydronicTypeWaterLoop) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity) + if hpxml_file.include? 'boiler' + hpxml_bldg.heat_pumps[-1].heating_capacity = 24000 + hpxml_bldg.heat_pumps[-1].heating_efficiency_cop = 4.4 + hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') + hpxml_bldg.heat_pumps[-1].cooling_capacity = 24000 + hpxml_bldg.heat_pumps[-1].cooling_efficiency_eer = 12.8 + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.heat_pumps[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + elsif hpxml_file.include? 'fan-coil' + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeFanCoil) + + if hpxml_file.include? 'boiler' + hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + end + if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil-ducted') + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 15, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 10, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationOtherMultifamilyBufferSpace, + duct_surface_area: 50) + hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationOtherMultifamilyBufferSpace, + duct_surface_area: 20) end end - end - if hpxml_file.include?('water-loop-heat-pump') || (hpxml_file.include?('fan-coil') && !hpxml_file.include?('fireplace-elec')) - # Handle WLHP/ducted fan coil - hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution| - hvac_distribution.delete - end - if hpxml_file.include? 'water-loop-heat-pump' - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeWaterLoop) + if hpxml_file.include? 'shared-ground-loop' + hpxml_bldg.heating_systems.reverse_each do |heating_system| + heating_system.delete + end + hpxml_bldg.cooling_systems.reverse_each do |cooling_system| + cooling_system.delete + end hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity) - if hpxml_file.include? 'boiler' - hpxml_bldg.heat_pumps[-1].heating_capacity = 24000 - hpxml_bldg.heat_pumps[-1].heating_efficiency_cop = 4.4 - hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + distribution_system_idref: hpxml_bldg.hvac_distributions[-1].id, + heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, + is_shared_system: true, + number_of_units_served: 6, + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 1, + fraction_cool_load_served: 1, + heating_efficiency_cop: 3.6, + cooling_efficiency_eer: 16.6, + heating_capacity: 12000, + cooling_capacity: 12000, + backup_heating_capacity: 12000, + cooling_shr: 0.73, + primary_heating_system: true, + primary_cooling_system: true, + pump_watts_per_ton: 0.0) + + end + if hpxml_file.include? 'eae' + hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 500.0 + else + if hpxml_file.include? 'shared-boiler' + hpxml_bldg.heating_systems[0].shared_loop_watts = 600 end if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - hpxml_bldg.heat_pumps[-1].cooling_capacity = 24000 - hpxml_bldg.heat_pumps[-1].cooling_efficiency_eer = 12.8 - hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + hpxml_bldg.cooling_systems[0].shared_loop_watts = 600 + end + if hpxml_file.include? 'shared-ground-loop' + hpxml_bldg.heat_pumps[0].shared_loop_watts = 600 + end + if hpxml_file.include? 'fan-coil' + if hpxml_file.include? 'boiler' + hpxml_bldg.heating_systems[0].fan_coil_watts = 150 + end + if hpxml_file.include? 'chiller' + hpxml_bldg.cooling_systems[0].fan_coil_watts = 150 + end + end + end + if hpxml_file.include? 'install-quality' + hpxml_bldg.hvac_systems.each do |hvac_system| + hvac_system.fan_watts_per_cfm = 0.365 + end + elsif ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file + hpxml_bldg.hvac_controls[0].heating_setback_temp = 66 + hpxml_bldg.hvac_controls[0].heating_setback_hours_per_week = 7 * 7 + hpxml_bldg.hvac_controls[0].heating_setback_start_hour = 23 # 11pm + hpxml_bldg.hvac_controls[0].cooling_setup_temp = 80 + hpxml_bldg.hvac_controls[0].cooling_setup_hours_per_week = 6 * 7 + hpxml_bldg.hvac_controls[0].cooling_setup_start_hour = 9 # 9am + elsif ['base-hvac-dse.xml', + 'base-dhw-indirect-dse.xml', + 'base-mechvent-cfis-dse.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE + hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8 + hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7 + elsif ['base-hvac-furnace-x3-dse.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE + hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8 + hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7 + hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup + hpxml_bldg.hvac_distributions[1].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" + hpxml_bldg.hvac_distributions[1].annual_cooling_dse = 1.0 + hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup + hpxml_bldg.hvac_distributions[2].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" + hpxml_bldg.hvac_distributions[2].annual_cooling_dse = 1.0 + hpxml_bldg.heating_systems[0].primary_system = false + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[2].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[2].distribution_system_idref = hpxml_bldg.hvac_distributions[2].id + hpxml_bldg.heating_systems[2].primary_system = true + for i in 0..2 + hpxml_bldg.heating_systems[i].heating_capacity /= 3.0 + # Test a file where sum is slightly greater than 1 + if i < 2 + hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.33 + else + hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.35 + end + end + elsif ['base-enclosure-2stories.xml', + 'base-enclosure-2stories-garage.xml', + 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup + hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}" + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup + hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}" + hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall + hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = 37.5 + hpxml_bldg.hvac_distributions[0].ducts[3].duct_location = HPXML::LocationLivingSpace + hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = 12.5 + if hpxml_file == 'base-hvac-ducts-area-fractions.xml' + hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[0].duct_fraction_area = 0.75 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_fraction_area = 0.75 + hpxml_bldg.hvac_distributions[0].ducts[2].duct_fraction_area = 0.25 + hpxml_bldg.hvac_distributions[0].ducts[3].duct_fraction_area = 0.25 + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 4050.0 + hpxml_bldg.hvac_distributions[0].number_of_return_registers = 3 + end + elsif ['base-hvac-ducts-effective-rvalue.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil + hpxml_bldg.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil + hpxml_bldg.hvac_distributions[0].ducts[0].duct_effective_r_value = 4.5 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_effective_r_value = 1.7 + elsif ['base-hvac-multiple.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution| + hvac_distribution.delete end hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", distribution_system_type: HPXML::HVACDistributionTypeAir, air_type: HPXML::AirTypeRegularVelocity) - hpxml_bldg.heat_pumps[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id - elsif hpxml_file.include? 'fan-coil' + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 75, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 25, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 8, + duct_location: HPXML::LocationAtticUnvented, + duct_surface_area: 75) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 8, + duct_location: HPXML::LocationOutside, + duct_surface_area: 75) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 4, + duct_location: HPXML::LocationAtticUnvented, + duct_surface_area: 25) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 4, + duct_location: HPXML::LocationOutside, + duct_surface_area: 25) hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeFanCoil) - - if hpxml_file.include? 'boiler' - hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + for i in 0..3 + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup + hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + i + 1}" end - if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + for i in 0..3 + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup + hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 2 + i + 1}" end - end - if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil-ducted') - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 15, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 10, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationOtherMultifamilyBufferSpace, - duct_surface_area: 50) - hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationOtherMultifamilyBufferSpace, - duct_surface_area: 20) - end - end - if hpxml_file.include? 'shared-ground-loop' - hpxml_bldg.heating_systems.reverse_each do |heating_system| - heating_system.delete - end - hpxml_bldg.cooling_systems.reverse_each do |cooling_system| - cooling_system.delete - end - hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[-1].id, - heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - is_shared_system: true, - number_of_units_served: 6, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 1, - fraction_cool_load_served: 1, - heating_efficiency_cop: 3.6, - cooling_efficiency_eer: 16.6, - heating_capacity: 12000, - cooling_capacity: 12000, - backup_heating_capacity: 12000, - cooling_shr: 0.73, - primary_heating_system: true, - primary_cooling_system: true, - pump_watts_per_ton: 0.0) - - end - if hpxml_file.include? 'eae' - hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 500.0 - else - if hpxml_file.include? 'shared-boiler' - hpxml_bldg.heating_systems[0].shared_loop_watts = 600 - end - if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - hpxml_bldg.cooling_systems[0].shared_loop_watts = 600 - end - if hpxml_file.include? 'shared-ground-loop' - hpxml_bldg.heat_pumps[0].shared_loop_watts = 600 - end - if hpxml_file.include? 'fan-coil' - if hpxml_file.include? 'boiler' - hpxml_bldg.heating_systems[0].fan_coil_watts = 150 + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + for i in 0..3 + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup + hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 3 + i + 1}" end - if hpxml_file.include? 'chiller' - hpxml_bldg.cooling_systems[0].fan_coil_watts = 150 + hpxml_bldg.heating_systems.reverse_each do |heating_system| + heating_system.delete end - end - end - if hpxml_file.include? 'install-quality' - hpxml_bldg.hvac_systems.each do |hvac_system| - hvac_system.fan_watts_per_cfm = 0.365 - end - elsif ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file - hpxml_bldg.hvac_controls[0].heating_setback_temp = 66 - hpxml_bldg.hvac_controls[0].heating_setback_hours_per_week = 7 * 7 - hpxml_bldg.hvac_controls[0].heating_setback_start_hour = 23 # 11pm - hpxml_bldg.hvac_controls[0].cooling_setup_temp = 80 - hpxml_bldg.hvac_controls[0].cooling_setup_hours_per_week = 6 * 7 - hpxml_bldg.hvac_controls[0].cooling_setup_start_hour = 9 # 9am - elsif ['base-hvac-dse.xml', - 'base-dhw-indirect-dse.xml', - 'base-mechvent-cfis-dse.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE - hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8 - hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7 - elsif ['base-hvac-furnace-x3-dse.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE - hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8 - hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7 - hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup - hpxml_bldg.hvac_distributions[1].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" - hpxml_bldg.hvac_distributions[1].annual_cooling_dse = 1.0 - hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup - hpxml_bldg.hvac_distributions[2].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" - hpxml_bldg.hvac_distributions[2].annual_cooling_dse = 1.0 - hpxml_bldg.heating_systems[0].primary_system = false - hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup - hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" - hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id - hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup - hpxml_bldg.heating_systems[2].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" - hpxml_bldg.heating_systems[2].distribution_system_idref = hpxml_bldg.hvac_distributions[2].id - hpxml_bldg.heating_systems[2].primary_system = true - for i in 0..2 - hpxml_bldg.heating_systems[i].heating_capacity /= 3.0 - # Test a file where sum is slightly greater than 1 - if i < 2 - hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.33 + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[0].id, + heating_system_type: HPXML::HVACTypeFurnace, + heating_system_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 6400, + heating_efficiency_afue: 1, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[1].id, + heating_system_type: HPXML::HVACTypeFurnace, + heating_system_fuel: HPXML::FuelTypeNaturalGas, + heating_capacity: 6400, + heating_efficiency_afue: 0.92, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[2].id, + heating_system_type: HPXML::HVACTypeBoiler, + heating_system_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 6400, + heating_efficiency_afue: 1, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[3].id, + heating_system_type: HPXML::HVACTypeBoiler, + heating_system_fuel: HPXML::FuelTypeNaturalGas, + heating_capacity: 6400, + heating_efficiency_afue: 0.92, + fraction_heat_load_served: 0.1, + electric_auxiliary_energy: 200) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: HPXML::HVACTypeElectricResistance, + heating_system_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 6400, + heating_efficiency_percent: 1, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: HPXML::HVACTypeStove, + heating_system_fuel: HPXML::FuelTypeOil, + heating_capacity: 6400, + heating_efficiency_percent: 0.8, + fraction_heat_load_served: 0.1, + fan_watts: 40.0) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: HPXML::HVACTypeWallFurnace, + heating_system_fuel: HPXML::FuelTypePropane, + heating_capacity: 6400, + heating_efficiency_afue: 0.8, + fraction_heat_load_served: 0.1, + fan_watts: 0.0) + hpxml_bldg.cooling_systems[0].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.cooling_systems[0].fraction_cool_load_served = 0.1333 + hpxml_bldg.cooling_systems[0].cooling_capacity *= 0.1333 + hpxml_bldg.cooling_systems[0].primary_system = false + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypeRoomAirConditioner, + cooling_system_fuel: HPXML::FuelTypeElectricity, + cooling_capacity: 9600, + fraction_cool_load_served: 0.1333, + cooling_efficiency_eer: 8.5, + cooling_shr: 0.65) + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypePTAC, + cooling_system_fuel: HPXML::FuelTypeElectricity, + cooling_capacity: 9600, + fraction_cool_load_served: 0.1333, + cooling_efficiency_eer: 10.7, + cooling_shr: 0.65) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[4].id, + heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 4800, + cooling_capacity: 4800, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, + backup_heating_capacity: 3412, + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 0.1, + fraction_cool_load_served: 0.2, + heating_efficiency_hspf: 7.7, + cooling_efficiency_seer: 13, + heating_capacity_17F: 4800 * 0.6, + cooling_shr: 0.73, + compressor_type: HPXML::HVACCompressorTypeSingleStage) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[5].id, + heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 4800, + cooling_capacity: 4800, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, + backup_heating_capacity: 3412, + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 0.1, + fraction_cool_load_served: 0.2, + heating_efficiency_cop: 3.6, + cooling_efficiency_eer: 16.6, + cooling_shr: 0.73, + pump_watts_per_ton: 30.0) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + heat_pump_type: HPXML::HVACTypeHeatPumpMiniSplit, + heat_pump_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 4800, + cooling_capacity: 4800, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, + backup_heating_capacity: 3412, + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 0.1, + fraction_cool_load_served: 0.2, + heating_efficiency_hspf: 10, + cooling_efficiency_seer: 19, + heating_capacity_17F: 4800 * 0.6, + cooling_shr: 0.73, + primary_cooling_system: true, + primary_heating_system: true) + elsif ['base-mechvent-multiple.xml', + 'base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup + hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup + hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}" + hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}" + hpxml_bldg.heating_systems[0].heating_capacity /= 2.0 + hpxml_bldg.heating_systems[0].fraction_heat_load_served /= 2.0 + hpxml_bldg.heating_systems[0].primary_system = false + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.heating_systems[1].primary_system = true + hpxml_bldg.cooling_systems[0].fraction_cool_load_served /= 2.0 + hpxml_bldg.cooling_systems[0].cooling_capacity /= 2.0 + hpxml_bldg.cooling_systems[0].primary_system = false + hpxml_bldg.cooling_systems << hpxml_bldg.cooling_systems[0].dup + hpxml_bldg.cooling_systems[1].id = "CoolingSystem#{hpxml_bldg.cooling_systems.size}" + hpxml_bldg.cooling_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.cooling_systems[1].primary_system = true + elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationOtherHousingUnit + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 4, + duct_location: HPXML::LocationRoofDeck, + duct_surface_area: 150) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationRoofDeck, + duct_surface_area: 50) + elsif ['base-appliances-dehumidifier-multiple.xml'].include? hpxml_file + hpxml_bldg.dehumidifiers[0].fraction_served = 0.5 + hpxml_bldg.dehumidifiers.add(id: 'Dehumidifier2', + type: HPXML::DehumidifierTypePortable, + capacity: 30, + energy_factor: 1.6, + rh_setpoint: 0.5, + fraction_served: 0.25, + location: HPXML::LocationLivingSpace) + end + if ['base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml', + 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml'].include? hpxml_file + # Switch backup boiler with hydronic distribution to backup furnace with air distribution + hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeFurnace + hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir + hpxml_bldg.hvac_distributions[0].air_type = HPXML::AirTypeRegularVelocity + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[1].dup + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[0].dup + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[1].dup + hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}" + hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}" + end + if ['base-hvac-ducts-area-multipliers.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5 + end + if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file + hpxml.header.manualj_heating_design_temp = 0 + hpxml.header.manualj_cooling_design_temp = 100 + hpxml.header.manualj_heating_setpoint = 60 + hpxml.header.manualj_cooling_setpoint = 80 + hpxml.header.manualj_humidity_setpoint = 0.55 + hpxml.header.manualj_internal_loads_sensible = 4000 + hpxml.header.manualj_internal_loads_latent = 200 + hpxml.header.manualj_num_occupants = 5 + end + if hpxml_file.include? 'heating-capacity-17f' + hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity * hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil + end + if hpxml_file.include? 'base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml' + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp + hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = nil + end + + # ------------------ # + # HPXML WaterHeating # + # ------------------ # + + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-vacancy-year-round.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.water_heating.water_fixtures_weekday_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' + hpxml_bldg.water_heating.water_fixtures_weekend_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' + hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + elsif ['base-bldgtype-multifamily-shared-water-heater-recirc.xml'].include? hpxml_file + hpxml_bldg.hot_water_distributions[0].has_shared_recirculation = true + hpxml_bldg.hot_water_distributions[0].shared_recirculation_number_of_units_served = 6 + hpxml_bldg.hot_water_distributions[0].shared_recirculation_pump_power = 220 + hpxml_bldg.hot_water_distributions[0].shared_recirculation_control_type = HPXML::DHWRecirControlTypeTimer + elsif ['base-bldgtype-multifamily-shared-laundry-room.xml', + 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems.reverse_each do |water_heating_system| + water_heating_system.delete + end + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + is_shared_system: true, + number_of_units_served: 6, + fuel_type: HPXML::FuelTypeNaturalGas, + water_heater_type: HPXML::WaterHeaterTypeStorage, + location: HPXML::LocationLivingSpace, + tank_volume: 120, + fraction_dhw_load_served: 1.0, + heating_capacity: 40000, + energy_factor: 0.59, + recovery_efficiency: 0.76, + temperature: 125.0) + if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml' + hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served /= 2.0 + hpxml_bldg.water_heating_systems[0].tank_volume /= 2.0 + hpxml_bldg.water_heating_systems[0].number_of_units_served /= 2.0 + hpxml_bldg.water_heating_systems << hpxml_bldg.water_heating_systems[0].dup + hpxml_bldg.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size}" + end + elsif ['base-dhw-tank-gas-uef-fhr.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems[0].first_hour_rating = 56.0 + hpxml_bldg.water_heating_systems[0].usage_bin = nil + elsif ['base-dhw-tankless-electric-outside.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems[0].performance_adjustment = 0.92 + elsif ['base-dhw-multiple.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.2 + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeNaturalGas, + water_heater_type: HPXML::WaterHeaterTypeStorage, + location: HPXML::LocationLivingSpace, + tank_volume: 50, + fraction_dhw_load_served: 0.2, + heating_capacity: 40000, + energy_factor: 0.59, + recovery_efficiency: 0.76, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeElectricity, + water_heater_type: HPXML::WaterHeaterTypeHeatPump, + location: HPXML::LocationLivingSpace, + tank_volume: 80, + fraction_dhw_load_served: 0.2, + energy_factor: 2.3, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeElectricity, + water_heater_type: HPXML::WaterHeaterTypeTankless, + location: HPXML::LocationLivingSpace, + fraction_dhw_load_served: 0.2, + energy_factor: 0.99, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeNaturalGas, + water_heater_type: HPXML::WaterHeaterTypeTankless, + location: HPXML::LocationLivingSpace, + fraction_dhw_load_served: 0.1, + energy_factor: 0.82, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + water_heater_type: HPXML::WaterHeaterTypeCombiStorage, + location: HPXML::LocationLivingSpace, + tank_volume: 50, + fraction_dhw_load_served: 0.1, + related_hvac_idref: 'HeatingSystem1', + temperature: 125.0) + hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", + system_type: HPXML::SolarThermalSystemType, + water_heating_system_idref: nil, # Apply to all water heaters + solar_fraction: 0.65) + end + + # -------------------- # + # HPXML VentilationFan # + # -------------------- # + + # Logic that can only be applied based on the file name + if ['base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeSupply, + is_shared_system: true, + in_unit_flow_rate: 100, + calculated_flow_rate: 1000, + hours_in_operation: 24, + fan_power: 300, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.0, + preheating_fuel: HPXML::FuelTypeNaturalGas, + preheating_efficiency_cop: 0.92, + preheating_fraction_load_served: 0.8, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 4.0, + precooling_fraction_load_served: 0.8) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeERV, + is_shared_system: true, + in_unit_flow_rate: 50, + delivered_ventilation: 500, + hours_in_operation: 24, + total_recovery_efficiency: 0.48, + sensible_recovery_efficiency: 0.72, + fan_power: 150, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.4, + preheating_fuel: HPXML::FuelTypeNaturalGas, + preheating_efficiency_cop: 0.87, + preheating_fraction_load_served: 1.0, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 3.5, + precooling_fraction_load_served: 1.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + is_shared_system: true, + in_unit_flow_rate: 50, + rated_flow_rate: 500, + hours_in_operation: 24, + sensible_recovery_efficiency: 0.72, + fan_power: 150, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.3, + preheating_fuel: HPXML::FuelTypeElectricity, + preheating_efficiency_cop: 4.0, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 4.5, + preheating_fraction_load_served: 1.0, + precooling_fraction_load_served: 1.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeBalanced, + is_shared_system: true, + in_unit_flow_rate: 30, + tested_flow_rate: 300, + hours_in_operation: 24, + fan_power: 150, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.3, + preheating_fuel: HPXML::FuelTypeElectricity, + preheating_efficiency_cop: 3.5, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 4.0, + preheating_fraction_load_served: 0.9, + precooling_fraction_load_served: 1.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + is_shared_system: true, + in_unit_flow_rate: 70, + rated_flow_rate: 700, + hours_in_operation: 8, + fan_power: 300, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + tested_flow_rate: 50, + hours_in_operation: 14, + fan_power: 10, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + tested_flow_rate: 160, + hours_in_operation: 8, + fan_power: 150, + used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, + distribution_system_idref: 'HVACDistribution1') + elsif ['base-mechvent-multiple.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + rated_flow_rate: 2000, + fan_power: 150, + used_for_seasonal_cooling_load_reduction: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeSupply, + tested_flow_rate: 12.5, + hours_in_operation: 14, + fan_power: 2.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + tested_flow_rate: 30.0, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeBalanced, + tested_flow_rate: 27.5, + hours_in_operation: 24, + fan_power: 15, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeERV, + tested_flow_rate: 12.5, + hours_in_operation: 24, + total_recovery_efficiency: 0.48, + sensible_recovery_efficiency: 0.72, + fan_power: 6.25, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + tested_flow_rate: 15, + hours_in_operation: 24, + sensible_recovery_efficiency: 0.72, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.reverse_each do |vent_fan| + vent_fan.fan_power /= 2.0 + vent_fan.rated_flow_rate /= 2.0 unless vent_fan.rated_flow_rate.nil? + vent_fan.tested_flow_rate /= 2.0 unless vent_fan.tested_flow_rate.nil? + hpxml_bldg.ventilation_fans << vent_fan.dup + hpxml_bldg.ventilation_fans[-1].id = "VentilationFan#{hpxml_bldg.ventilation_fans.size}" + hpxml_bldg.ventilation_fans[-1].start_hour = vent_fan.start_hour - 1 unless vent_fan.start_hour.nil? + hpxml_bldg.ventilation_fans[-1].hours_in_operation = vent_fan.hours_in_operation - 1 unless vent_fan.hours_in_operation.nil? + end + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + tested_flow_rate: 40, + hours_in_operation: 8, + fan_power: 37.5, + used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, + distribution_system_idref: 'HVACDistribution1') + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + tested_flow_rate: 42.5, + hours_in_operation: 8, + fan_power: 37.5, + used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplementalFan, + cfis_supplemental_fan_idref: hpxml_bldg.ventilation_fans.find { |f| f.fan_type == HPXML::MechVentTypeExhaust }.id, + distribution_system_idref: 'HVACDistribution2') + # Test ventilation system w/ zero airflow and hours + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + tested_flow_rate: 0, + hours_in_operation: 24, + sensible_recovery_efficiency: 0.72, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + tested_flow_rate: 15, + hours_in_operation: 0, + sensible_recovery_efficiency: 0.72, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0 + elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml', + 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + tested_flow_rate: 120, + fan_power: 30, + used_for_whole_building_ventilation: true) + if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' + hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust else - hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.35 + hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply end - end - elsif ['base-enclosure-2stories.xml', - 'base-enclosure-2stories-garage.xml', - 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup - hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}" - hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup - hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}" - hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall - hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = 37.5 - hpxml_bldg.hvac_distributions[0].ducts[3].duct_location = HPXML::LocationLivingSpace - hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = 12.5 - if hpxml_file == 'base-hvac-ducts-area-fractions.xml' - hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area = nil - hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area = nil - hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = nil - hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = nil - hpxml_bldg.hvac_distributions[0].ducts[0].duct_fraction_area = 0.75 - hpxml_bldg.hvac_distributions[0].ducts[1].duct_fraction_area = 0.75 - hpxml_bldg.hvac_distributions[0].ducts[2].duct_fraction_area = 0.25 - hpxml_bldg.hvac_distributions[0].ducts[3].duct_fraction_area = 0.25 - hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 4050.0 - hpxml_bldg.hvac_distributions[0].number_of_return_registers = 3 - end - elsif ['base-hvac-ducts-effective-rvalue.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil - hpxml_bldg.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil - hpxml_bldg.hvac_distributions[0].ducts[0].duct_effective_r_value = 4.5 - hpxml_bldg.hvac_distributions[0].ducts[1].duct_effective_r_value = 1.7 - elsif ['base-hvac-multiple.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution| - hvac_distribution.delete - end - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 75, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 25, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 8, - duct_location: HPXML::LocationAtticUnvented, - duct_surface_area: 75) - hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 8, - duct_location: HPXML::LocationOutside, - duct_surface_area: 75) - hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 4, - duct_location: HPXML::LocationAtticUnvented, - duct_surface_area: 25) - hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 4, - duct_location: HPXML::LocationOutside, - duct_surface_area: 25) - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup - for i in 0..3 - hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup - hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + i + 1}" - end - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup - for i in 0..3 - hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup - hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 2 + i + 1}" - end - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup - for i in 0..3 - hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup - hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 3 + i + 1}" - end - hpxml_bldg.heating_systems.reverse_each do |heating_system| - heating_system.delete - end - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[0].id, - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 6400, - heating_efficiency_afue: 1, - fraction_heat_load_served: 0.1) - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[1].id, - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: 6400, - heating_efficiency_afue: 0.92, - fraction_heat_load_served: 0.1) - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[2].id, - heating_system_type: HPXML::HVACTypeBoiler, - heating_system_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 6400, - heating_efficiency_afue: 1, - fraction_heat_load_served: 0.1) - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[3].id, - heating_system_type: HPXML::HVACTypeBoiler, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: 6400, - heating_efficiency_afue: 0.92, - fraction_heat_load_served: 0.1, - electric_auxiliary_energy: 200) - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - heating_system_type: HPXML::HVACTypeElectricResistance, - heating_system_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 6400, - heating_efficiency_percent: 1, - fraction_heat_load_served: 0.1) - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - heating_system_type: HPXML::HVACTypeStove, - heating_system_fuel: HPXML::FuelTypeOil, - heating_capacity: 6400, - heating_efficiency_percent: 0.8, - fraction_heat_load_served: 0.1, - fan_watts: 40.0) - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - heating_system_type: HPXML::HVACTypeWallFurnace, - heating_system_fuel: HPXML::FuelTypePropane, - heating_capacity: 6400, - heating_efficiency_afue: 0.8, - fraction_heat_load_served: 0.1, - fan_watts: 0.0) - hpxml_bldg.cooling_systems[0].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id - hpxml_bldg.cooling_systems[0].fraction_cool_load_served = 0.1333 - hpxml_bldg.cooling_systems[0].cooling_capacity *= 0.1333 - hpxml_bldg.cooling_systems[0].primary_system = false - hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypeRoomAirConditioner, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 9600, - fraction_cool_load_served: 0.1333, - cooling_efficiency_eer: 8.5, - cooling_shr: 0.65) - hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypePTAC, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 9600, - fraction_cool_load_served: 0.1333, - cooling_efficiency_eer: 10.7, - cooling_shr: 0.65) - hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[4].id, - heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 4800, - cooling_capacity: 4800, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 3412, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 0.1, - fraction_cool_load_served: 0.2, - heating_efficiency_hspf: 7.7, - cooling_efficiency_seer: 13, - heating_capacity_17F: 4800 * 0.6, - cooling_shr: 0.73, - compressor_type: HPXML::HVACCompressorTypeSingleStage) - hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - distribution_system_idref: hpxml_bldg.hvac_distributions[5].id, - heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 4800, - cooling_capacity: 4800, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 3412, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 0.1, - fraction_cool_load_served: 0.2, - heating_efficiency_cop: 3.6, - cooling_efficiency_eer: 16.6, - cooling_shr: 0.73, - pump_watts_per_ton: 30.0) - hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - heat_pump_type: HPXML::HVACTypeHeatPumpMiniSplit, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 4800, - cooling_capacity: 4800, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 3412, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 0.1, - fraction_cool_load_served: 0.2, - heating_efficiency_hspf: 10, - cooling_efficiency_seer: 19, - heating_capacity_17F: 4800 * 0.6, - cooling_shr: 0.73, - primary_cooling_system: true, - primary_heating_system: true) - elsif ['base-mechvent-multiple.xml', - 'base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup - hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup - hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup - hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}" - hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}" - hpxml_bldg.heating_systems[0].heating_capacity /= 2.0 - hpxml_bldg.heating_systems[0].fraction_heat_load_served /= 2.0 - hpxml_bldg.heating_systems[0].primary_system = false - hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup - hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" - hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id - hpxml_bldg.heating_systems[1].primary_system = true - hpxml_bldg.cooling_systems[0].fraction_cool_load_served /= 2.0 - hpxml_bldg.cooling_systems[0].cooling_capacity /= 2.0 - hpxml_bldg.cooling_systems[0].primary_system = false - hpxml_bldg.cooling_systems << hpxml_bldg.cooling_systems[0].dup - hpxml_bldg.cooling_systems[1].id = "CoolingSystem#{hpxml_bldg.cooling_systems.size}" - hpxml_bldg.cooling_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id - hpxml_bldg.cooling_systems[1].primary_system = true - elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationOtherHousingUnit - hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 4, - duct_location: HPXML::LocationRoofDeck, - duct_surface_area: 150) - hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationRoofDeck, - duct_surface_area: 50) - elsif ['base-appliances-dehumidifier-multiple.xml'].include? hpxml_file - hpxml_bldg.dehumidifiers[0].fraction_served = 0.5 - hpxml_bldg.dehumidifiers.add(id: 'Dehumidifier2', - type: HPXML::DehumidifierTypePortable, - capacity: 30, - energy_factor: 1.6, - rh_setpoint: 0.5, - fraction_served: 0.25, - location: HPXML::LocationLivingSpace) - end - if ['base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml', - 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml'].include? hpxml_file - # Switch backup boiler with hydronic distribution to backup furnace with air distribution - hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeFurnace - hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir - hpxml_bldg.hvac_distributions[0].air_type = HPXML::AirTypeRegularVelocity - hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[0].dup - hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[1].dup - hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[0].dup - hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[1].dup - hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}" - hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}" - end - if ['base-hvac-ducts-area-multipliers.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5 - hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5 - end - if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file - hpxml.header.manualj_heating_design_temp = 0 - hpxml.header.manualj_cooling_design_temp = 100 - hpxml.header.manualj_heating_setpoint = 60 - hpxml.header.manualj_cooling_setpoint = 80 - hpxml.header.manualj_humidity_setpoint = 0.55 - hpxml.header.manualj_internal_loads_sensible = 4000 - hpxml.header.manualj_internal_loads_latent = 200 - hpxml.header.manualj_num_occupants = 5 - end - if hpxml_file.include? 'heating-capacity-17f' - hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity * hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction - hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil - hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil - end - if hpxml_file.include? 'base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml' - hpxml_bldg.heat_pumps[0].compressor_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp - hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp - hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = nil - end - - # ------------------ # - # HPXML WaterHeating # - # ------------------ # - - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml_bldg.water_heating.water_fixtures_weekday_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' - hpxml_bldg.water_heating.water_fixtures_weekend_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' - hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' - elsif ['base-bldgtype-multifamily-shared-water-heater-recirc.xml'].include? hpxml_file - hpxml_bldg.hot_water_distributions[0].has_shared_recirculation = true - hpxml_bldg.hot_water_distributions[0].shared_recirculation_number_of_units_served = 6 - hpxml_bldg.hot_water_distributions[0].shared_recirculation_pump_power = 220 - hpxml_bldg.hot_water_distributions[0].shared_recirculation_control_type = HPXML::DHWRecirControlTypeTimer - elsif ['base-bldgtype-multifamily-shared-laundry-room.xml', - 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file - hpxml_bldg.water_heating_systems.reverse_each do |water_heating_system| - water_heating_system.delete - end - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - is_shared_system: true, - number_of_units_served: 6, - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeStorage, - location: HPXML::LocationLivingSpace, - tank_volume: 120, - fraction_dhw_load_served: 1.0, - heating_capacity: 40000, - energy_factor: 0.59, - recovery_efficiency: 0.76, - temperature: 125.0) - if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml' - hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served /= 2.0 - hpxml_bldg.water_heating_systems[0].tank_volume /= 2.0 - hpxml_bldg.water_heating_systems[0].number_of_units_served /= 2.0 - hpxml_bldg.water_heating_systems << hpxml_bldg.water_heating_systems[0].dup - hpxml_bldg.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size}" - end - elsif ['base-dhw-tank-gas-uef-fhr.xml'].include? hpxml_file - hpxml_bldg.water_heating_systems[0].first_hour_rating = 56.0 - hpxml_bldg.water_heating_systems[0].usage_bin = nil - elsif ['base-dhw-tankless-electric-outside.xml'].include? hpxml_file - hpxml_bldg.water_heating_systems[0].performance_adjustment = 0.92 - elsif ['base-dhw-multiple.xml'].include? hpxml_file - hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.2 - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeStorage, - location: HPXML::LocationLivingSpace, - tank_volume: 50, - fraction_dhw_load_served: 0.2, - heating_capacity: 40000, - energy_factor: 0.59, - recovery_efficiency: 0.76, - temperature: 125.0) - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeElectricity, - water_heater_type: HPXML::WaterHeaterTypeHeatPump, - location: HPXML::LocationLivingSpace, - tank_volume: 80, - fraction_dhw_load_served: 0.2, - energy_factor: 2.3, - temperature: 125.0) - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeElectricity, - water_heater_type: HPXML::WaterHeaterTypeTankless, - location: HPXML::LocationLivingSpace, - fraction_dhw_load_served: 0.2, - energy_factor: 0.99, - temperature: 125.0) - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeTankless, - location: HPXML::LocationLivingSpace, - fraction_dhw_load_served: 0.1, - energy_factor: 0.82, - temperature: 125.0) - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - water_heater_type: HPXML::WaterHeaterTypeCombiStorage, - location: HPXML::LocationLivingSpace, - tank_volume: 50, - fraction_dhw_load_served: 0.1, - related_hvac_idref: 'HeatingSystem1', - temperature: 125.0) - hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", - system_type: HPXML::SolarThermalSystemType, - water_heating_system_idref: nil, # Apply to all water heaters - solar_fraction: 0.65) - end - - # -------------------- # - # HPXML VentilationFan # - # -------------------- # - - # Logic that can only be applied based on the file name - if ['base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeSupply, - is_shared_system: true, - in_unit_flow_rate: 100, - calculated_flow_rate: 1000, - hours_in_operation: 24, - fan_power: 300, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.0, - preheating_fuel: HPXML::FuelTypeNaturalGas, - preheating_efficiency_cop: 0.92, - preheating_fraction_load_served: 0.8, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 4.0, - precooling_fraction_load_served: 0.8) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeERV, - is_shared_system: true, - in_unit_flow_rate: 50, - delivered_ventilation: 500, - hours_in_operation: 24, - total_recovery_efficiency: 0.48, - sensible_recovery_efficiency: 0.72, - fan_power: 150, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.4, - preheating_fuel: HPXML::FuelTypeNaturalGas, - preheating_efficiency_cop: 0.87, - preheating_fraction_load_served: 1.0, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 3.5, - precooling_fraction_load_served: 1.0) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - is_shared_system: true, - in_unit_flow_rate: 50, - rated_flow_rate: 500, - hours_in_operation: 24, - sensible_recovery_efficiency: 0.72, - fan_power: 150, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.3, - preheating_fuel: HPXML::FuelTypeElectricity, - preheating_efficiency_cop: 4.0, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 4.5, - preheating_fraction_load_served: 1.0, - precooling_fraction_load_served: 1.0) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeBalanced, - is_shared_system: true, - in_unit_flow_rate: 30, - tested_flow_rate: 300, - hours_in_operation: 24, - fan_power: 150, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.3, - preheating_fuel: HPXML::FuelTypeElectricity, - preheating_efficiency_cop: 3.5, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 4.0, - preheating_fraction_load_served: 0.9, - precooling_fraction_load_served: 1.0) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, - is_shared_system: true, - in_unit_flow_rate: 70, - rated_flow_rate: 700, - hours_in_operation: 8, - fan_power: 300, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.0) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, - tested_flow_rate: 50, - hours_in_operation: 14, - fan_power: 10, - used_for_whole_building_ventilation: true) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - tested_flow_rate: 160, - hours_in_operation: 8, - fan_power: 150, - used_for_whole_building_ventilation: true, - cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, - distribution_system_idref: 'HVACDistribution1') - elsif ['base-mechvent-multiple.xml'].include? hpxml_file - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - rated_flow_rate: 2000, - fan_power: 150, - used_for_seasonal_cooling_load_reduction: true) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeSupply, - tested_flow_rate: 12.5, - hours_in_operation: 14, - fan_power: 2.5, - used_for_whole_building_ventilation: true) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, - tested_flow_rate: 30.0, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeBalanced, - tested_flow_rate: 27.5, - hours_in_operation: 24, - fan_power: 15, - used_for_whole_building_ventilation: true) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeERV, - tested_flow_rate: 12.5, - hours_in_operation: 24, - total_recovery_efficiency: 0.48, - sensible_recovery_efficiency: 0.72, - fan_power: 6.25, - used_for_whole_building_ventilation: true) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - tested_flow_rate: 15, - hours_in_operation: 24, - sensible_recovery_efficiency: 0.72, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - hpxml_bldg.ventilation_fans.reverse_each do |vent_fan| - vent_fan.fan_power /= 2.0 - vent_fan.rated_flow_rate /= 2.0 unless vent_fan.rated_flow_rate.nil? - vent_fan.tested_flow_rate /= 2.0 unless vent_fan.tested_flow_rate.nil? - hpxml_bldg.ventilation_fans << vent_fan.dup - hpxml_bldg.ventilation_fans[-1].id = "VentilationFan#{hpxml_bldg.ventilation_fans.size}" - hpxml_bldg.ventilation_fans[-1].start_hour = vent_fan.start_hour - 1 unless vent_fan.start_hour.nil? - hpxml_bldg.ventilation_fans[-1].hours_in_operation = vent_fan.hours_in_operation - 1 unless vent_fan.hours_in_operation.nil? - end - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - tested_flow_rate: 40, - hours_in_operation: 8, - fan_power: 37.5, - used_for_whole_building_ventilation: true, - cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, - distribution_system_idref: 'HVACDistribution1') - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - tested_flow_rate: 42.5, - hours_in_operation: 8, - fan_power: 37.5, - used_for_whole_building_ventilation: true, - cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplementalFan, - cfis_supplemental_fan_idref: hpxml_bldg.ventilation_fans.find { |f| f.fan_type == HPXML::MechVentTypeExhaust }.id, - distribution_system_idref: 'HVACDistribution2') - # Test ventilation system w/ zero airflow and hours - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - tested_flow_rate: 0, - hours_in_operation: 24, - sensible_recovery_efficiency: 0.72, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - tested_flow_rate: 15, - hours_in_operation: 0, - sensible_recovery_efficiency: 0.72, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file - hpxml_bldg.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0 - elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml', - 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file - hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", - tested_flow_rate: 120, - fan_power: 30, - used_for_whole_building_ventilation: true) - if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' - hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust - else - hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply - end - hpxml_bldg.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan - hpxml_bldg.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml_bldg.ventilation_fans[1].id - end - - # ---------------- # - # HPXML Generation # - # ---------------- # - - # Logic that can only be applied based on the file name - if ['base-misc-defaults.xml'].include? hpxml_file - hpxml_bldg.pv_systems[0].year_modules_manufactured = 2015 - elsif ['base-misc-generators.xml', - 'base-misc-generators-battery.xml', - 'base-misc-generators-battery-scheduled.xml', - 'base-pv-generators.xml', - 'base-pv-generators-battery.xml', - 'base-pv-generators-battery-scheduled.xml'].include? hpxml_file - hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", - fuel_type: HPXML::FuelTypeNaturalGas, - annual_consumption_kbtu: 8500, - annual_output_kwh: 1200) - hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", - fuel_type: HPXML::FuelTypeOil, - annual_consumption_kbtu: 8500, - annual_output_kwh: 1200) - elsif ['base-bldgtype-multifamily-shared-generator.xml'].include? hpxml_file - hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", - is_shared_system: true, - fuel_type: HPXML::FuelTypePropane, - annual_consumption_kbtu: 85000, - annual_output_kwh: 12000, - number_of_bedrooms_served: 18) - end - - # ------------- # - # HPXML Battery # - # ------------- # - - if ['base-pv-battery-lifetime-model.xml'].include? hpxml_file - hpxml_bldg.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith - elsif ['base-pv-battery-ah.xml'].include? hpxml_file - default_values = Battery.get_battery_default_values() - hpxml_bldg.batteries[0].nominal_capacity_ah = Battery.get_Ah_from_kWh(hpxml_bldg.batteries[0].nominal_capacity_kwh, - default_values[:nominal_voltage]) - hpxml_bldg.batteries[0].usable_capacity_ah = hpxml_bldg.batteries[0].nominal_capacity_ah * default_values[:usable_fraction] - hpxml_bldg.batteries[0].nominal_capacity_kwh = nil - hpxml_bldg.batteries[0].usable_capacity_kwh = nil - end - - # ---------------- # - # HPXML Appliances # - # ---------------- # - - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml_bldg.clothes_washers[0].weekday_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' - hpxml_bldg.clothes_washers[0].weekend_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' - hpxml_bldg.clothes_washers[0].monthly_multipliers = '1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011' - hpxml_bldg.clothes_dryers[0].weekday_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' - hpxml_bldg.clothes_dryers[0].weekend_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' - hpxml_bldg.clothes_dryers[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' - hpxml_bldg.dishwashers[0].weekday_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' - hpxml_bldg.dishwashers[0].weekend_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' - hpxml_bldg.dishwashers[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' - hpxml_bldg.refrigerators[0].weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - hpxml_bldg.refrigerators[0].weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - hpxml_bldg.refrigerators[0].monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' - hpxml_bldg.cooking_ranges[0].weekday_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' - hpxml_bldg.cooking_ranges[0].weekend_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' - hpxml_bldg.cooking_ranges[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' - end - if ['base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml', - 'base-misc-usage-multiplier.xml'].include? hpxml_file - if hpxml_file != 'base-misc-usage-multiplier.xml' - hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", - rated_annual_kwh: 800, - primary_indicator: false) - end - hpxml_bldg.freezers.add(id: "Freezer#{hpxml_bldg.freezers.size + 1}", - location: HPXML::LocationLivingSpace, - rated_annual_kwh: 400) - if hpxml_file == 'base-misc-usage-multiplier.xml' - hpxml_bldg.freezers[-1].usage_multiplier = 0.9 - end - (hpxml_bldg.refrigerators + hpxml_bldg.freezers).each do |appliance| - next if appliance.is_a?(HPXML::Refrigerator) && hpxml_file == 'base-misc-usage-multiplier.xml' + hpxml_bldg.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan + hpxml_bldg.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml_bldg.ventilation_fans[1].id + end + + # ---------------- # + # HPXML Generation # + # ---------------- # + + # Logic that can only be applied based on the file name + if ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.pv_systems[0].year_modules_manufactured = 2015 + elsif ['base-misc-generators.xml', + 'base-misc-generators-battery.xml', + 'base-misc-generators-battery-scheduled.xml', + 'base-pv-generators.xml', + 'base-pv-generators-battery.xml', + 'base-pv-generators-battery-scheduled.xml'].include? hpxml_file + hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", + fuel_type: HPXML::FuelTypeNaturalGas, + annual_consumption_kbtu: 8500, + annual_output_kwh: 1200) + hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", + fuel_type: HPXML::FuelTypeOil, + annual_consumption_kbtu: 8500, + annual_output_kwh: 1200) + elsif ['base-bldgtype-multifamily-shared-generator.xml'].include? hpxml_file + hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", + is_shared_system: true, + fuel_type: HPXML::FuelTypePropane, + annual_consumption_kbtu: 85000, + annual_output_kwh: 12000, + number_of_bedrooms_served: 18) + end + + # ------------- # + # HPXML Battery # + # ------------- # + + if ['base-pv-battery-lifetime-model.xml'].include? hpxml_file + hpxml_bldg.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith + elsif ['base-pv-battery-ah.xml'].include? hpxml_file + default_values = Battery.get_battery_default_values() + hpxml_bldg.batteries[0].nominal_capacity_ah = Battery.get_Ah_from_kWh(hpxml_bldg.batteries[0].nominal_capacity_kwh, + default_values[:nominal_voltage]) + hpxml_bldg.batteries[0].usable_capacity_ah = hpxml_bldg.batteries[0].nominal_capacity_ah * default_values[:usable_fraction] + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + end + + # ---------------- # + # HPXML Appliances # + # ---------------- # + + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-vacancy-year-round.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.clothes_washers[0].weekday_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' + hpxml_bldg.clothes_washers[0].weekend_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' + hpxml_bldg.clothes_washers[0].monthly_multipliers = '1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011' + hpxml_bldg.clothes_dryers[0].weekday_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' + hpxml_bldg.clothes_dryers[0].weekend_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' + hpxml_bldg.clothes_dryers[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + hpxml_bldg.dishwashers[0].weekday_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' + hpxml_bldg.dishwashers[0].weekend_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' + hpxml_bldg.dishwashers[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' + hpxml_bldg.refrigerators[0].weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + hpxml_bldg.refrigerators[0].weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + hpxml_bldg.refrigerators[0].monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' + hpxml_bldg.cooking_ranges[0].weekday_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' + hpxml_bldg.cooking_ranges[0].weekend_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' + hpxml_bldg.cooking_ranges[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' + end + if ['base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml', + 'base-misc-usage-multiplier.xml'].include? hpxml_file + if hpxml_file != 'base-misc-usage-multiplier.xml' + hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", + rated_annual_kwh: 800, + primary_indicator: false) + end + hpxml_bldg.freezers.add(id: "Freezer#{hpxml_bldg.freezers.size + 1}", + location: HPXML::LocationLivingSpace, + rated_annual_kwh: 400) + if hpxml_file == 'base-misc-usage-multiplier.xml' + hpxml_bldg.freezers[-1].usage_multiplier = 0.9 + end + (hpxml_bldg.refrigerators + hpxml_bldg.freezers).each do |appliance| + next if appliance.is_a?(HPXML::Refrigerator) && hpxml_file == 'base-misc-usage-multiplier.xml' - appliance.weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - appliance.weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - appliance.monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' - end - hpxml_bldg.pools[0].pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml_bldg.pools[0].pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml_bldg.pools[0].pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' - hpxml_bldg.pools[0].heater_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml_bldg.pools[0].heater_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml_bldg.pools[0].heater_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' - hpxml_bldg.hot_tubs[0].pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml_bldg.hot_tubs[0].pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml_bldg.hot_tubs[0].pump_monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' - hpxml_bldg.hot_tubs[0].heater_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml_bldg.hot_tubs[0].heater_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml_bldg.hot_tubs[0].heater_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921' - end - if ['base-bldgtype-multifamily-shared-laundry-room.xml', - 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file - hpxml_bldg.clothes_washers[0].is_shared_appliance = true - hpxml_bldg.clothes_washers[0].location = HPXML::LocationOtherHeatedSpace - hpxml_bldg.clothes_dryers[0].location = HPXML::LocationOtherHeatedSpace - hpxml_bldg.clothes_dryers[0].is_shared_appliance = true - hpxml_bldg.dishwashers[0].is_shared_appliance = true - hpxml_bldg.dishwashers[0].location = HPXML::LocationOtherHeatedSpace - if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room.xml' - hpxml_bldg.clothes_washers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id - hpxml_bldg.dishwashers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id - elsif hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml' - hpxml_bldg.clothes_washers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id - hpxml_bldg.dishwashers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id - end - elsif ['base-misc-defaults.xml'].include? hpxml_file - hpxml_bldg.refrigerators[0].primary_indicator = nil - end + appliance.weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + appliance.weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + appliance.monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' + end + hpxml_bldg.pools[0].pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + hpxml_bldg.pools[0].heater_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].heater_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].heater_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + hpxml_bldg.hot_tubs[0].pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.hot_tubs[0].pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.hot_tubs[0].pump_monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' + hpxml_bldg.hot_tubs[0].heater_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.hot_tubs[0].heater_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.hot_tubs[0].heater_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921' + end + if ['base-bldgtype-multifamily-shared-laundry-room.xml', + 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file + hpxml_bldg.clothes_washers[0].is_shared_appliance = true + hpxml_bldg.clothes_washers[0].location = HPXML::LocationOtherHeatedSpace + hpxml_bldg.clothes_dryers[0].location = HPXML::LocationOtherHeatedSpace + hpxml_bldg.clothes_dryers[0].is_shared_appliance = true + hpxml_bldg.dishwashers[0].is_shared_appliance = true + hpxml_bldg.dishwashers[0].location = HPXML::LocationOtherHeatedSpace + if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room.xml' + hpxml_bldg.clothes_washers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id + hpxml_bldg.dishwashers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id + elsif hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml' + hpxml_bldg.clothes_washers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id + hpxml_bldg.dishwashers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id + end + elsif ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.refrigerators[0].primary_indicator = nil + end + + # -------------- # + # HPXML Lighting # + # -------------- # + + # Logic that can only be applied based on the file name + if ['base-lighting-ceiling-fans.xml'].include? hpxml_file + hpxml_bldg.ceiling_fans[0].weekday_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' + hpxml_bldg.ceiling_fans[0].weekend_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' + hpxml_bldg.ceiling_fans[0].monthly_multipliers = '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0' + elsif ['base-lighting-holiday.xml'].include? hpxml_file + hpxml_bldg.lighting.holiday_weekday_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' + hpxml_bldg.lighting.holiday_weekend_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' + elsif ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-vacancy-year-round.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.lighting.interior_weekday_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' + hpxml_bldg.lighting.interior_weekend_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' + hpxml_bldg.lighting.interior_monthly_multipliers = '1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905' + hpxml_bldg.lighting.exterior_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' + hpxml_bldg.lighting.exterior_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' + hpxml_bldg.lighting.exterior_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' + hpxml_bldg.lighting.garage_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' + hpxml_bldg.lighting.garage_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' + hpxml_bldg.lighting.garage_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' + elsif ['base-lighting-kwh-per-year.xml'].include? hpxml_file + ltg_kwhs_per_year = { HPXML::LocationInterior => 1500, + HPXML::LocationExterior => 150, + HPXML::LocationGarage => 0 } + hpxml_bldg.lighting_groups.clear + ltg_kwhs_per_year.each do |location, kwh_per_year| + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: location, + kwh_per_year: kwh_per_year) + end + elsif ['base-lighting-mixed.xml'].include? hpxml_file + hpxml_bldg.lighting_groups.reverse_each do |lg| + next unless lg.location == HPXML::LocationExterior - # -------------- # - # HPXML Lighting # - # -------------- # - - # Logic that can only be applied based on the file name - if ['base-lighting-ceiling-fans.xml'].include? hpxml_file - hpxml_bldg.ceiling_fans[0].weekday_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' - hpxml_bldg.ceiling_fans[0].weekend_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' - hpxml_bldg.ceiling_fans[0].monthly_multipliers = '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0' - elsif ['base-lighting-holiday.xml'].include? hpxml_file - hpxml_bldg.lighting.holiday_weekday_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' - hpxml_bldg.lighting.holiday_weekend_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' - elsif ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml_bldg.lighting.interior_weekday_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' - hpxml_bldg.lighting.interior_weekend_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' - hpxml_bldg.lighting.interior_monthly_multipliers = '1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905' - hpxml_bldg.lighting.exterior_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' - hpxml_bldg.lighting.exterior_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' - hpxml_bldg.lighting.exterior_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' - hpxml_bldg.lighting.garage_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' - hpxml_bldg.lighting.garage_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' - hpxml_bldg.lighting.garage_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' - elsif ['base-lighting-kwh-per-year.xml'].include? hpxml_file - ltg_kwhs_per_year = { HPXML::LocationInterior => 1500, - HPXML::LocationExterior => 150, - HPXML::LocationGarage => 0 } - hpxml_bldg.lighting_groups.clear - ltg_kwhs_per_year.each do |location, kwh_per_year| + lg.delete + end + hpxml_bldg.lighting_groups.each_with_index do |lg, i| + lg.id = "LightingGroup#{i + 1}" + end hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", - location: location, - kwh_per_year: kwh_per_year) - end - elsif ['base-lighting-mixed.xml'].include? hpxml_file - hpxml_bldg.lighting_groups.reverse_each do |lg| - next unless lg.location == HPXML::LocationExterior - - lg.delete - end - hpxml_bldg.lighting_groups.each_with_index do |lg, i| - lg.id = "LightingGroup#{i + 1}" - end - hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", - location: HPXML::LocationExterior, - kwh_per_year: 150) - elsif ['base-foundation-basement-garage.xml'].include? hpxml_file - int_lighting_groups = hpxml_bldg.lighting_groups.select { |lg| lg.location == HPXML::LocationInterior } - int_lighting_groups.each do |lg| - hpxml_bldg.lighting_groups << lg.dup - hpxml_bldg.lighting_groups[-1].location = HPXML::LocationGarage - hpxml_bldg.lighting_groups[-1].id = "LightingGroup#{hpxml_bldg.lighting_groups.size}" + location: HPXML::LocationExterior, + kwh_per_year: 150) + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + int_lighting_groups = hpxml_bldg.lighting_groups.select { |lg| lg.location == HPXML::LocationInterior } + int_lighting_groups.each do |lg| + hpxml_bldg.lighting_groups << lg.dup + hpxml_bldg.lighting_groups[-1].location = HPXML::LocationGarage + hpxml_bldg.lighting_groups[-1].id = "LightingGroup#{hpxml_bldg.lighting_groups.size}" + end end - end - # --------------- # - # HPXML MiscLoads # - # --------------- # + # --------------- # + # HPXML MiscLoads # + # --------------- # + + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-vacancy-year-round.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.plug_loads[0].weekday_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' + hpxml_bldg.plug_loads[0].weekend_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' + hpxml_bldg.plug_loads[0].monthly_multipliers = '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137' + hpxml_bldg.plug_loads[1].weekday_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' + hpxml_bldg.plug_loads[1].weekend_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' + hpxml_bldg.plug_loads[1].monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' + end + next unless ['base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml', + 'base-misc-usage-multiplier.xml'].include? hpxml_file - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml_bldg.plug_loads[0].weekday_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' - hpxml_bldg.plug_loads[0].weekend_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' - hpxml_bldg.plug_loads[0].monthly_multipliers = '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137' - hpxml_bldg.plug_loads[1].weekday_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' - hpxml_bldg.plug_loads[1].weekend_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' - hpxml_bldg.plug_loads[1].monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' - end - if ['base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml', - 'base-misc-usage-multiplier.xml'].include? hpxml_file if hpxml_file != 'base-misc-usage-multiplier.xml' hpxml_bldg.plug_loads[2].weekday_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042' hpxml_bldg.plug_loads[2].weekend_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042' diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 97f9dea0d1..7ad5134bf6 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3191,9 +3191,14 @@ "hot_tub_heater_annual_kwh": 1300, "hot_tub_heater_usage_multiplier": 0.9 }, + "sample_files/base-two-buildings.xml": { + "parent_hpxml": "sample_files/base.xml", + "hpxml_path_in": "workflow/sample_files/base.xml" + }, "sample_files/base-multiple-buildings.xml": { "parent_hpxml": "sample_files/base.xml", - "clothes_dryer_present": false + "clothes_dryer_present": false, + "hpxml_path_in": "workflow/sample_files/base-two-buildings.xml" }, "sample_files/base-pv.xml": { "parent_hpxml": "sample_files/base.xml", diff --git a/workflow/sample_files/base-two-buildings.xml b/workflow/sample_files/base-two-buildings.xml new file mode 100644 index 0000000000..e8a1a3f068 --- /dev/null +++ b/workflow/sample_files/base-two-buildings.xml @@ -0,0 +1,1088 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From d05086b64adbc13d1596638227ed838210fa38be Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 10:44:16 -0700 Subject: [PATCH 03/33] Make SiteID variable to avoid overwriting it. --- BuildResidentialHPXML/measure.rb | 4 +- BuildResidentialHPXML/measure.xml | 6 +-- HPXMLtoOpenStudio/measure.xml | 6 +-- HPXMLtoOpenStudio/resources/hpxml.rb | 5 ++- tasks.rb | 9 +---- .../sample_files/base-multiple-buildings.xml | 38 +++++++++++++++---- workflow/sample_files/base-two-buildings.xml | 2 +- 7 files changed, 44 insertions(+), 26 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index d1351406f0..4a743cf848 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3390,7 +3390,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) sorted_surfaces = model.getSurfaces.sort_by { |s| s.additionalProperties.getFeatureAsInteger('Index').get } sorted_subsurfaces = model.getSubSurfaces.sort_by { |ss| ss.additionalProperties.getFeatureAsInteger('Index').get } - hpxml = HPXML.new(hpxml_path: hpxml_path_in) + hpxml = HPXML.new(hpxml_path: hpxml_path_in, building_id: 'ALL') set_header(hpxml, args) hpxml_bldg = add_building(hpxml, args) @@ -3462,7 +3462,6 @@ def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) # FIXME: Address this when multiple buildings HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file) hpxml_doc = hpxml.to_doc() - # unique_hpxml_ids(hpxml_doc) end return hpxml_doc @@ -3890,6 +3889,7 @@ def self.add_building(hpxml, args) hpxml.buildings.add(building_id: 'MyBuilding', event_type: 'proposed workscope', + site_id: 'SiteID', zip_code: zip_code, state_code: state_code, time_zone_utc_offset: time_zone_utc_offset, diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index d7e7e85168..b431897bdd 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 9827870a-4bbb-483b-beda-5991ed4cf849 - 2023-08-04T17:33:51Z + a122385f-a0b4-43ea-a39d-dcf59d17c602 + 2023-08-04T17:43:52Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6707,7 +6707,7 @@ measure.rb rb script - F98712EB + 92A77D3F
geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c1a7414180..04a5b7cef6 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 49cf88dd-8e07-4112-b525-9c8a3ea29d6f - 2023-08-03T23:21:07Z + ee71945d-68e9-4846-a084-485bbd3e7e29 + 2023-08-04T17:43:56Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,7 +238,7 @@ hpxml.rb rb resource - 48F3DEE3 + D7DE24E8 hpxml_defaults.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 47539267d7..05bd513576 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -1064,7 +1064,7 @@ class Building < BaseElement :batteries, :clothes_washers, :clothes_dryers, :dishwashers, :refrigerators, :freezers, :dehumidifiers, :cooking_ranges, :ovens, :lighting_groups, :lighting, :ceiling_fans, :pools, :hot_tubs, :plug_loads, :fuel_loads] - ATTRS = [:building_id, :state_code, :zip_code, :time_zone_utc_offset, :egrid_region, + ATTRS = [:building_id, :site_id, :state_code, :zip_code, :time_zone_utc_offset, :egrid_region, :egrid_subregion, :cambium_region_gea, :dst_enabled, :dst_begin_month, :dst_begin_day, :dst_end_month, :dst_end_day, :event_type] attr_accessor(*CLASS_ATTRS) @@ -1085,7 +1085,7 @@ def to_doc(doc) if (not @state_code.nil?) || (not @zip_code.nil?) || (not @time_zone_utc_offset.nil?) || (not @egrid_region.nil?) || (not @egrid_subregion.nil?) || (not @cambium_region_gea.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) building_site = XMLHelper.add_element(building, 'Site') site_id = XMLHelper.add_element(building_site, 'SiteID') - XMLHelper.add_attribute(site_id, 'id', 'SiteID') + XMLHelper.add_attribute(site_id, 'id', @site_id) if (not @state_code.nil?) || (not @zip_code.nil?) address = XMLHelper.add_element(building_site, 'Address') XMLHelper.add_element(address, 'StateCode', @state_code, :string, @state_code_isdefaulted) unless @state_code.nil? @@ -1170,6 +1170,7 @@ def from_doc(building) if not building.nil? @building_id = HPXML::get_id(building, 'BuildingID') @event_type = XMLHelper.get_value(building, 'ProjectStatus/EventType', :string) + @site_id = HPXML::get_id(building, 'Site/SiteID') @state_code = XMLHelper.get_value(building, 'Site/Address/StateCode', :string) @zip_code = XMLHelper.get_value(building, 'Site/Address/ZipCode', :string) @egrid_region = XMLHelper.get_value(building, 'Site/eGridRegion', :string) diff --git a/tasks.rb b/tasks.rb index 722bf49135..e5c763d2f5 100644 --- a/tasks.rb +++ b/tasks.rb @@ -24,7 +24,7 @@ def create_hpxmls puts "Generating #{json_inputs.size} HPXML files..." json_inputs.keys.each_with_index do |hpxml_filename, i| - next if !hpxml_filename.include? 'two-buildings' + # next if !hpxml_filename.include? 'base.xml' puts "[#{i + 1}/#{json_inputs.size}] Generating #{hpxml_filename}..." hpxml_path = File.join(workflow_dir, hpxml_filename) @@ -78,12 +78,7 @@ def create_hpxmls exit! end - building_id = nil - if hpxml_path.include? 'buildings' - building_id = 'ALL' - end - - hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: building_id) + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') if hpxml_path.include? 'ASHRAE_Standard_140' apply_hpxml_modification_ashrae_140(hpxml) else diff --git a/workflow/sample_files/base-multiple-buildings.xml b/workflow/sample_files/base-multiple-buildings.xml index 249605abaa..188029fdaf 100644 --- a/workflow/sample_files/base-multiple-buildings.xml +++ b/workflow/sample_files/base-multiple-buildings.xml @@ -15,6 +15,12 @@ Bills + + Bills + + + Bills + @@ -441,6 +447,14 @@ 6.0 3.2 + + + living space + electricity + 3.73 + true + 150.0 + living space @@ -778,7 +792,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -792,7 +806,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -806,7 +820,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -820,7 +834,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -965,6 +979,14 @@ 6.0 3.2 + + + living space + electricity + 3.73 + true + 150.0 + living space @@ -1302,7 +1324,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -1316,7 +1338,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -1330,7 +1352,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -1344,7 +1366,7 @@ 0.33 0.45 - + 0.7 0.85 diff --git a/workflow/sample_files/base-two-buildings.xml b/workflow/sample_files/base-two-buildings.xml index e8a1a3f068..d6fcac2de9 100644 --- a/workflow/sample_files/base-two-buildings.xml +++ b/workflow/sample_files/base-two-buildings.xml @@ -556,7 +556,7 @@ - +
CO
From 989255809956885f0557285acacf75e7ff12b957 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 10:55:48 -0700 Subject: [PATCH 04/33] Avoid duplicating bill scenarios. --- tasks.rb | 2 +- workflow/hpxml_inputs.json | 7 +++++-- workflow/sample_files/base-multiple-buildings.xml | 14 -------------- workflow/sample_files/base-two-buildings.xml | 11 ----------- 4 files changed, 6 insertions(+), 28 deletions(-) diff --git a/tasks.rb b/tasks.rb index e5c763d2f5..c224847e79 100644 --- a/tasks.rb +++ b/tasks.rb @@ -24,7 +24,7 @@ def create_hpxmls puts "Generating #{json_inputs.size} HPXML files..." json_inputs.keys.each_with_index do |hpxml_filename, i| - # next if !hpxml_filename.include? 'base.xml' + # next if !hpxml_filename.include? 'multiple-buildings' puts "[#{i + 1}/#{json_inputs.size}] Generating #{hpxml_filename}..." hpxml_path = File.join(workflow_dir, hpxml_filename) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 7ad5134bf6..3f3a96b694 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3193,12 +3193,15 @@ }, "sample_files/base-two-buildings.xml": { "parent_hpxml": "sample_files/base.xml", - "hpxml_path_in": "workflow/sample_files/base.xml" + "hpxml_path_in": "workflow/sample_files/base.xml", + "clothes_dryer_present": false, + "utility_bill_scenario_names": null }, "sample_files/base-multiple-buildings.xml": { "parent_hpxml": "sample_files/base.xml", + "hpxml_path_in": "workflow/sample_files/base-two-buildings.xml", "clothes_dryer_present": false, - "hpxml_path_in": "workflow/sample_files/base-two-buildings.xml" + "utility_bill_scenario_names": null }, "sample_files/base-pv.xml": { "parent_hpxml": "sample_files/base.xml", diff --git a/workflow/sample_files/base-multiple-buildings.xml b/workflow/sample_files/base-multiple-buildings.xml index 188029fdaf..d682ed4f95 100644 --- a/workflow/sample_files/base-multiple-buildings.xml +++ b/workflow/sample_files/base-multiple-buildings.xml @@ -15,12 +15,6 @@ Bills - - Bills - - - Bills - @@ -979,14 +973,6 @@ 6.0 3.2 - - - living space - electricity - 3.73 - true - 150.0 - living space diff --git a/workflow/sample_files/base-two-buildings.xml b/workflow/sample_files/base-two-buildings.xml index d6fcac2de9..cc5b029a8c 100644 --- a/workflow/sample_files/base-two-buildings.xml +++ b/workflow/sample_files/base-two-buildings.xml @@ -15,9 +15,6 @@ Bills - - Bills - @@ -976,14 +973,6 @@ 6.0 3.2 - - - living space - electricity - 3.73 - true - 150.0 - living space From 2590ba7ad7c3e632cb65580031a312879508598d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 11:30:43 -0700 Subject: [PATCH 05/33] Try multiple buildings with detailed schedules. --- BuildResidentialScheduleFile/measure.rb | 10 +- BuildResidentialScheduleFile/measure.xml | 6 +- tasks.rb | 2 +- workflow/hpxml_inputs.json | 9 +- .../base-two-buildings-detailed-schedules.xml | 1078 +++++++++++++++++ 5 files changed, 1095 insertions(+), 10 deletions(-) create mode 100644 workflow/sample_files/base-two-buildings-detailed-schedules.xml diff --git a/BuildResidentialScheduleFile/measure.rb b/BuildResidentialScheduleFile/measure.rb index be7d41febc..ebb1a2788f 100644 --- a/BuildResidentialScheduleFile/measure.rb +++ b/BuildResidentialScheduleFile/measure.rb @@ -97,13 +97,13 @@ def run(model, runner, user_arguments) end args[:hpxml_output_path] = hpxml_output_path - hpxml = HPXML.new(hpxml_path: hpxml_path) + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') # FIXME: Relax this constraint (using a new building_id measure argument?) - if hpxml.buildings.size > 1 - runner.registerError('Cannot currently handle an HPXML with multiple Building elements.') - return false - end + # if hpxml.buildings.size > 1 + # runner.registerError('Cannot currently handle an HPXML with multiple Building elements.') + # return false + # end hpxml_bldg = hpxml.buildings[0] # exit if number of occupants is zero diff --git a/BuildResidentialScheduleFile/measure.xml b/BuildResidentialScheduleFile/measure.xml index 4cbe667de3..004307dc16 100644 --- a/BuildResidentialScheduleFile/measure.xml +++ b/BuildResidentialScheduleFile/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_schedule_file f770b2db-1a9f-4e99-99a7-7f3161a594b1 - e755cecf-daee-4f17-8669-ebd8d6d9c148 - 2023-08-03T15:55:40Z + 6874f575-89f5-47cb-920d-4d8a89a10184 + 2023-08-04T18:27:00Z 03F02484 BuildResidentialScheduleFile Schedule File Builder @@ -94,7 +94,7 @@ measure.rb rb script - 6FD3AB4D + 30E563E2
README.md diff --git a/tasks.rb b/tasks.rb index c224847e79..a67aedf19b 100644 --- a/tasks.rb +++ b/tasks.rb @@ -24,7 +24,7 @@ def create_hpxmls puts "Generating #{json_inputs.size} HPXML files..." json_inputs.keys.each_with_index do |hpxml_filename, i| - # next if !hpxml_filename.include? 'multiple-buildings' + # next if !hpxml_filename.include? 'two-buildings-detailed' puts "[#{i + 1}/#{json_inputs.size}] Generating #{hpxml_filename}..." hpxml_path = File.join(workflow_dir, hpxml_filename) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 3f3a96b694..3e4d308bcc 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3196,7 +3196,14 @@ "hpxml_path_in": "workflow/sample_files/base.xml", "clothes_dryer_present": false, "utility_bill_scenario_names": null - }, + }, + "sample_files/base-two-buildings-detailed-schedules.xml": { + "parent_hpxml": "sample_files/base.xml", + "hpxml_path_in": "workflow/sample_files/base.xml", + "clothes_dryer_present": false, + "utility_bill_scenario_names": null, + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" + }, "sample_files/base-multiple-buildings.xml": { "parent_hpxml": "sample_files/base.xml", "hpxml_path_in": "workflow/sample_files/base-two-buildings.xml", diff --git a/workflow/sample_files/base-two-buildings-detailed-schedules.xml b/workflow/sample_files/base-two-buildings-detailed-schedules.xml new file mode 100644 index 0000000000..80cb5bcc87 --- /dev/null +++ b/workflow/sample_files/base-two-buildings-detailed-schedules.xml @@ -0,0 +1,1078 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 50b4970af382594437d067b13567bf109d1de6e6 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 12:50:21 -0700 Subject: [PATCH 06/33] Remove clothes dryer from first building in sample file. --- tasks.rb | 184 +++++++++--------- .../sample_files/base-multiple-buildings.xml | 8 - 2 files changed, 97 insertions(+), 95 deletions(-) diff --git a/tasks.rb b/tasks.rb index a67aedf19b..bf1607085d 100644 --- a/tasks.rb +++ b/tasks.rb @@ -24,7 +24,7 @@ def create_hpxmls puts "Generating #{json_inputs.size} HPXML files..." json_inputs.keys.each_with_index do |hpxml_filename, i| - # next if !hpxml_filename.include? 'two-buildings-detailed' + next if !hpxml_filename.include? 'multiple-buildings' puts "[#{i + 1}/#{json_inputs.size}] Generating #{hpxml_filename}..." hpxml_path = File.join(workflow_dir, hpxml_filename) @@ -110,7 +110,6 @@ def create_hpxmls def apply_hpxml_modification_ashrae_140(hpxml) # Set detailed HPXML values for ASHRAE 140 test files - hpxml_bldg = hpxml.buildings[0] # ------------ # # HPXML Header # @@ -120,86 +119,88 @@ def apply_hpxml_modification_ashrae_140(hpxml) hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs hpxml.header.apply_ashrae140_assumptions = true - # --------------------- # - # HPXML BuildingSummary # - # --------------------- # + hpxml.buildings.each do |hpxml_bldg| + # --------------------- # + # HPXML BuildingSummary # + # --------------------- # - hpxml_bldg.site.azimuth_of_front_of_home = nil - hpxml_bldg.building_construction.average_ceiling_height = nil + hpxml_bldg.site.azimuth_of_front_of_home = nil + hpxml_bldg.building_construction.average_ceiling_height = nil - # --------------- # - # HPXML Enclosure # - # --------------- # + # --------------- # + # HPXML Enclosure # + # --------------- # - hpxml_bldg.attics[0].vented_attic_ach = 2.4 - hpxml_bldg.foundations.reverse_each do |foundation| - foundation.delete - end - hpxml_bldg.roofs.each do |roof| - if roof.roof_color == HPXML::ColorReflective - roof.solar_absorptance = 0.2 - else - roof.solar_absorptance = 0.6 + hpxml_bldg.attics[0].vented_attic_ach = 2.4 + hpxml_bldg.foundations.reverse_each do |foundation| + foundation.delete end - roof.emittance = 0.9 - roof.roof_color = nil - end - (hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |wall| - if wall.color == HPXML::ColorReflective - wall.solar_absorptance = 0.2 - else - wall.solar_absorptance = 0.6 + hpxml_bldg.roofs.each do |roof| + if roof.roof_color == HPXML::ColorReflective + roof.solar_absorptance = 0.2 + else + roof.solar_absorptance = 0.6 + end + roof.emittance = 0.9 + roof.roof_color = nil end - wall.emittance = 0.9 - wall.color = nil - if wall.is_a?(HPXML::Wall) - if wall.attic_wall_type == HPXML::AtticWallTypeGable - wall.insulation_assembly_r_value = 2.15 + (hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |wall| + if wall.color == HPXML::ColorReflective + wall.solar_absorptance = 0.2 else - wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard - wall.interior_finish_thickness = 0.5 + wall.solar_absorptance = 0.6 + end + wall.emittance = 0.9 + wall.color = nil + if wall.is_a?(HPXML::Wall) + if wall.attic_wall_type == HPXML::AtticWallTypeGable + wall.insulation_assembly_r_value = 2.15 + else + wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard + wall.interior_finish_thickness = 0.5 + end end end - end - hpxml_bldg.floors.each do |floor| - next unless floor.is_ceiling + hpxml_bldg.floors.each do |floor| + next unless floor.is_ceiling - floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard - floor.interior_finish_thickness = 0.5 - end - hpxml_bldg.foundation_walls.each do |fwall| - if fwall.insulation_interior_r_value == 0 - fwall.interior_finish_type = HPXML::InteriorFinishNone - else - fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard - fwall.interior_finish_thickness = 0.5 + floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard + floor.interior_finish_thickness = 0.5 end - end - if hpxml_bldg.doors.size == 1 - hpxml_bldg.doors[0].area /= 2.0 - hpxml_bldg.doors << hpxml_bldg.doors[0].dup - hpxml_bldg.doors[1].azimuth = 0 - hpxml_bldg.doors[1].id = 'Door2' - end - hpxml_bldg.windows.each do |window| - next if window.overhangs_depth.nil? + hpxml_bldg.foundation_walls.each do |fwall| + if fwall.insulation_interior_r_value == 0 + fwall.interior_finish_type = HPXML::InteriorFinishNone + else + fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard + fwall.interior_finish_thickness = 0.5 + end + end + if hpxml_bldg.doors.size == 1 + hpxml_bldg.doors[0].area /= 2.0 + hpxml_bldg.doors << hpxml_bldg.doors[0].dup + hpxml_bldg.doors[1].azimuth = 0 + hpxml_bldg.doors[1].id = 'Door2' + end + hpxml_bldg.windows.each do |window| + next if window.overhangs_depth.nil? - window.overhangs_distance_to_bottom_of_window = 6.0 - end + window.overhangs_distance_to_bottom_of_window = 6.0 + end - # ---------- # - # HPXML HVAC # - # ---------- # + # ---------- # + # HPXML HVAC # + # ---------- # - hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", - heating_setpoint_temp: 68.0, - cooling_setpoint_temp: 78.0) + hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", + heating_setpoint_temp: 68.0, + cooling_setpoint_temp: 78.0) - # --------------- # - # HPXML MiscLoads # - # --------------- # + # --------------- # + # HPXML MiscLoads # + # --------------- # + + next unless hpxml_bldg.plug_loads[0].kwh_per_year > 0 - if hpxml_bldg.plug_loads[0].kwh_per_year > 0 hpxml_bldg.plug_loads[0].weekday_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' hpxml_bldg.plug_loads[0].weekend_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' hpxml_bldg.plug_loads[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' @@ -208,19 +209,38 @@ def apply_hpxml_modification_ashrae_140(hpxml) def apply_hpxml_modification(hpxml_file, hpxml) # Set detailed HPXML values for sample files - hpxml.buildings.each do |hpxml_bldg| - # ------------ # - # HPXML Header # - # ------------ # - # General logic for all files - hpxml.header.xml_generated_by = 'tasks.rb' - hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs + # ------------ # + # HPXML Header # + # ------------ # + + # General logic for all files + hpxml.header.xml_generated_by = 'tasks.rb' + hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs + + # Logic that can only be applied based on the file name + if ['base-hvac-undersized-allow-increased-fixed-capacities.xml'].include? hpxml_file + hpxml.header.allow_increased_fixed_capacities = true + end + if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file + hpxml.header.manualj_heating_design_temp = 0 + hpxml.header.manualj_cooling_design_temp = 100 + hpxml.header.manualj_heating_setpoint = 60 + hpxml.header.manualj_cooling_setpoint = 80 + hpxml.header.manualj_humidity_setpoint = 0.55 + hpxml.header.manualj_internal_loads_sensible = 4000 + hpxml.header.manualj_internal_loads_latent = 200 + hpxml.header.manualj_num_occupants = 5 + end + + if ['base-multiple-buildings.xml'].include? hpxml_file + hpxml.buildings[0].clothes_dryers[0].delete + end + + hpxml.buildings.each do |hpxml_bldg| # Logic that can only be applied based on the file name - if ['base-hvac-undersized-allow-increased-fixed-capacities.xml'].include? hpxml_file - hpxml.header.allow_increased_fixed_capacities = true - elsif ['base-misc-emissions.xml'].include? hpxml_file + if ['base-misc-emissions.xml'].include? hpxml_file hpxml_bldg.egrid_region = 'Western' hpxml_bldg.egrid_subregion = 'RMPA' hpxml_bldg.cambium_region_gea = 'RMPAc' @@ -1641,16 +1661,6 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5 hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5 end - if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file - hpxml.header.manualj_heating_design_temp = 0 - hpxml.header.manualj_cooling_design_temp = 100 - hpxml.header.manualj_heating_setpoint = 60 - hpxml.header.manualj_cooling_setpoint = 80 - hpxml.header.manualj_humidity_setpoint = 0.55 - hpxml.header.manualj_internal_loads_sensible = 4000 - hpxml.header.manualj_internal_loads_latent = 200 - hpxml.header.manualj_num_occupants = 5 - end if hpxml_file.include? 'heating-capacity-17f' hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity * hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil diff --git a/workflow/sample_files/base-multiple-buildings.xml b/workflow/sample_files/base-multiple-buildings.xml index d682ed4f95..c9f68f83d1 100644 --- a/workflow/sample_files/base-multiple-buildings.xml +++ b/workflow/sample_files/base-multiple-buildings.xml @@ -441,14 +441,6 @@ 6.0 3.2 - - - living space - electricity - 3.73 - true - 150.0 - living space From 692f9aeed65ffe497060daf4ffee149f03114cad Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 13:11:23 -0700 Subject: [PATCH 07/33] Avoid hardset of site id and shading ids. --- BuildResidentialHPXML/measure.rb | 1 - BuildResidentialHPXML/measure.xml | 6 ++--- HPXMLtoOpenStudio/measure.xml | 6 ++--- HPXMLtoOpenStudio/resources/hpxml.rb | 24 +++++++++++++++---- tasks.rb | 2 +- .../sample_files/base-multiple-buildings.xml | 16 ++++++------- .../base-two-buildings-detailed-schedules.xml | 8 +++---- workflow/sample_files/base-two-buildings.xml | 8 +++---- 8 files changed, 42 insertions(+), 29 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 4a743cf848..42d2fdd8ad 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3889,7 +3889,6 @@ def self.add_building(hpxml, args) hpxml.buildings.add(building_id: 'MyBuilding', event_type: 'proposed workscope', - site_id: 'SiteID', zip_code: zip_code, state_code: state_code, time_zone_utc_offset: time_zone_utc_offset, diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index b431897bdd..43b3e46afb 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - a122385f-a0b4-43ea-a39d-dcf59d17c602 - 2023-08-04T17:43:52Z + 514828db-2779-4e07-9189-5ccc0474f06c + 2023-08-04T20:10:05Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6707,7 +6707,7 @@ measure.rb rb script - 92A77D3F + 888F2D22
geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 04a5b7cef6..bcd5977a34 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ee71945d-68e9-4846-a084-485bbd3e7e29 - 2023-08-04T17:43:56Z + 3c353c0d-f153-4d2b-8cac-503737a493e4 + 2023-08-04T20:10:08Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,7 +238,7 @@ hpxml.rb rb resource - D7DE24E8 + E3D8402F hpxml_defaults.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 05bd513576..d1ad29be45 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -1085,7 +1085,11 @@ def to_doc(doc) if (not @state_code.nil?) || (not @zip_code.nil?) || (not @time_zone_utc_offset.nil?) || (not @egrid_region.nil?) || (not @egrid_subregion.nil?) || (not @cambium_region_gea.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) building_site = XMLHelper.add_element(building, 'Site') site_id = XMLHelper.add_element(building_site, 'SiteID') - XMLHelper.add_attribute(site_id, 'id', @site_id) + if @site_id.nil? + XMLHelper.add_attribute(site_id, 'id', 'SiteID') + else + XMLHelper.add_attribute(site_id, 'id', @site_id) + end if (not @state_code.nil?) || (not @zip_code.nil?) address = XMLHelper.add_element(building_site, 'Address') XMLHelper.add_element(address, 'StateCode', @state_code, :string, @state_code_isdefaulted) unless @state_code.nil? @@ -3454,8 +3458,8 @@ def from_doc(building) class Window < BaseElement ATTRS = [:id, :area, :azimuth, :orientation, :frame_type, :thermal_break, :glass_layers, :glass_type, :gas_fill, :ufactor, :shgc, :interior_shading_factor_summer, - :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer, - :exterior_shading_factor_winter, :exterior_shading_type, :storm_type, :overhangs_depth, + :interior_shading_id, :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer, + :exterior_shading_id, :exterior_shading_factor_winter, :exterior_shading_type, :storm_type, :overhangs_depth, :overhangs_distance_to_top_of_window, :overhangs_distance_to_bottom_of_window, :fraction_operable, :performance_class, :wall_idref] attr_accessor(*ATTRS) @@ -3526,7 +3530,11 @@ def to_doc(building) if (not @exterior_shading_type.nil?) || (not @exterior_shading_factor_summer.nil?) || (not @exterior_shading_factor_winter.nil?) exterior_shading = XMLHelper.add_element(window, 'ExteriorShading') sys_id = XMLHelper.add_element(exterior_shading, 'SystemIdentifier') - XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading") + if @exterior_shading_id.nil? + XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading") + else + XMLHelper.add_attribute(sys_id, 'id', @exterior_shading_id) + end XMLHelper.add_element(exterior_shading, 'Type', @exterior_shading_type, :string) unless @exterior_shading_type.nil? XMLHelper.add_element(exterior_shading, 'SummerShadingCoefficient', @exterior_shading_factor_summer, :float, @exterior_shading_factor_summer_isdefaulted) unless @exterior_shading_factor_summer.nil? XMLHelper.add_element(exterior_shading, 'WinterShadingCoefficient', @exterior_shading_factor_winter, :float, @exterior_shading_factor_winter_isdefaulted) unless @exterior_shading_factor_winter.nil? @@ -3534,7 +3542,11 @@ def to_doc(building) if (not @interior_shading_type.nil?) || (not @interior_shading_factor_summer.nil?) || (not @interior_shading_factor_winter.nil?) interior_shading = XMLHelper.add_element(window, 'InteriorShading') sys_id = XMLHelper.add_element(interior_shading, 'SystemIdentifier') - XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading") + if @interior_shading_id.nil? + XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading") + else + XMLHelper.add_attribute(sys_id, 'id', @interior_shading_id) + end XMLHelper.add_element(interior_shading, 'Type', @interior_shading_type, :string) unless @interior_shading_type.nil? XMLHelper.add_element(interior_shading, 'SummerShadingCoefficient', @interior_shading_factor_summer, :float, @interior_shading_factor_summer_isdefaulted) unless @interior_shading_factor_summer.nil? XMLHelper.add_element(interior_shading, 'WinterShadingCoefficient', @interior_shading_factor_winter, :float, @interior_shading_factor_winter_isdefaulted) unless @interior_shading_factor_winter.nil? @@ -3577,9 +3589,11 @@ def from_doc(window) @gas_fill = XMLHelper.get_value(window, 'GasFill', :string) @ufactor = XMLHelper.get_value(window, 'UFactor', :float) @shgc = XMLHelper.get_value(window, 'SHGC', :float) + @exterior_shading_id = HPXML::get_id(window, 'ExteriorShading/SystemIdentifier') @exterior_shading_type = XMLHelper.get_value(window, 'ExteriorShading/Type', :string) @exterior_shading_factor_summer = XMLHelper.get_value(window, 'ExteriorShading/SummerShadingCoefficient', :float) @exterior_shading_factor_winter = XMLHelper.get_value(window, 'ExteriorShading/WinterShadingCoefficient', :float) + @interior_shading_id = HPXML::get_id(window, 'InteriorShading/SystemIdentifier') @interior_shading_type = XMLHelper.get_value(window, 'InteriorShading/Type', :string) @interior_shading_factor_summer = XMLHelper.get_value(window, 'InteriorShading/SummerShadingCoefficient', :float) @interior_shading_factor_winter = XMLHelper.get_value(window, 'InteriorShading/WinterShadingCoefficient', :float) diff --git a/tasks.rb b/tasks.rb index bf1607085d..d8e7c01c05 100644 --- a/tasks.rb +++ b/tasks.rb @@ -24,7 +24,7 @@ def create_hpxmls puts "Generating #{json_inputs.size} HPXML files..." json_inputs.keys.each_with_index do |hpxml_filename, i| - next if !hpxml_filename.include? 'multiple-buildings' + # next if !hpxml_filename.include? 'multiple-buildings' puts "[#{i + 1}/#{json_inputs.size}] Generating #{hpxml_filename}..." hpxml_path = File.join(workflow_dir, hpxml_filename) diff --git a/workflow/sample_files/base-multiple-buildings.xml b/workflow/sample_files/base-multiple-buildings.xml index c9f68f83d1..249605abaa 100644 --- a/workflow/sample_files/base-multiple-buildings.xml +++ b/workflow/sample_files/base-multiple-buildings.xml @@ -778,7 +778,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -792,7 +792,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -806,7 +806,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -820,7 +820,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -1302,7 +1302,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -1316,7 +1316,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -1330,7 +1330,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -1344,7 +1344,7 @@ 0.33 0.45 - + 0.7 0.85 diff --git a/workflow/sample_files/base-two-buildings-detailed-schedules.xml b/workflow/sample_files/base-two-buildings-detailed-schedules.xml index 80cb5bcc87..626313680e 100644 --- a/workflow/sample_files/base-two-buildings-detailed-schedules.xml +++ b/workflow/sample_files/base-two-buildings-detailed-schedules.xml @@ -787,7 +787,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -801,7 +801,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -815,7 +815,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -829,7 +829,7 @@ 0.33 0.45 - + 0.7 0.85 diff --git a/workflow/sample_files/base-two-buildings.xml b/workflow/sample_files/base-two-buildings.xml index cc5b029a8c..7ca8f786ca 100644 --- a/workflow/sample_files/base-two-buildings.xml +++ b/workflow/sample_files/base-two-buildings.xml @@ -786,7 +786,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -800,7 +800,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -814,7 +814,7 @@ 0.33 0.45 - + 0.7 0.85 @@ -828,7 +828,7 @@ 0.33 0.45 - + 0.7 0.85 From 8ceda701c43a0b1f26eea60fea59b52d6e3fa3c5 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 15:34:40 -0700 Subject: [PATCH 08/33] Set unit_model on schedules_file instance. --- HPXMLtoOpenStudio/measure.rb | 1 + HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/schedules.rb | 4 ++++ workflow/tests/hpxml_translator_test.rb | 1 + 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.rb b/HPXMLtoOpenStudio/measure.rb index 72c99be0e9..ec6b79573e 100644 --- a/HPXMLtoOpenStudio/measure.rb +++ b/HPXMLtoOpenStudio/measure.rb @@ -153,6 +153,7 @@ def run(model, runner, user_arguments) if hpxml.buildings.size > 1 # Create the model for this single unit unit_model = OpenStudio::Model::Model.new + schedules_file.set_unit_model(unit_model) # otherwise we find Schedule:File in model without External:File create_unit_model(hpxml, hpxml_bldg, runner, unit_model, epw_path, epw_file, weather, debug, schedules_file, eri_version) hpxml_osm_map[hpxml_bldg] = unit_model else diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index bcd5977a34..1f71d15767 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 3c353c0d-f153-4d2b-8cac-503737a493e4 - 2023-08-04T20:10:08Z + 87dc56e1-24c9-4709-9b2d-20fb7333e2b4 + 2023-08-04T22:20:09Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -130,7 +130,7 @@ measure.rb rb script - ED8FF2DF + D2C89E8E airflow.rb @@ -424,7 +424,7 @@ schedules.rb rb resource - 07B7227D + 873A8559 simcontrols.rb diff --git a/HPXMLtoOpenStudio/resources/schedules.rb b/HPXMLtoOpenStudio/resources/schedules.rb index 27447529c7..0ca5942258 100644 --- a/HPXMLtoOpenStudio/resources/schedules.rb +++ b/HPXMLtoOpenStudio/resources/schedules.rb @@ -1397,6 +1397,10 @@ def initialize(runner: nil, export() end + def set_unit_model(unit_model) + @model = unit_model + end + def nil? if @schedules.nil? return true diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index dcc4c6b6c6..e764dd74ef 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -30,6 +30,7 @@ def test_simulations sample_files_dirs.each do |sample_files_dir| Dir["#{sample_files_dir}/*.xml"].sort.each do |xml| next if xml.include? 'base-multiple-buildings.xml' # This is tested in test_multiple_building_ids + next if xml.include? 'base-two-buildings' # FIXME: Delete this line when E+ fix is available; currently hitting limitation noted # in https://github.com/NREL/EnergyPlus/issues/9049 next if xml.include? 'base-bldgtype-multifamily-shared-mechvent-multiple.xml' From 8c95d15f692362af9b15e84f7175b4bdab3d04eb Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 4 Aug 2023 15:36:52 -0700 Subject: [PATCH 09/33] Handle all buildings from workflow tests. --- workflow/tests/hpxml_translator_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index e764dd74ef..a107fcdc20 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -368,7 +368,7 @@ def _run_xml(xml, worker_num = nil) # Uses 'monthly' to verify timeseries results match annual results via error-checking # inside the ReportSimulationOutput measure. cli_path = OpenStudio.getOpenStudioCLI - command = "\"#{cli_path}\" \"#{File.join(File.dirname(__FILE__), '../run_simulation.rb')}\" -x \"#{xml}\" --add-component-loads -o \"#{rundir}\" --debug --monthly ALL" + command = "\"#{cli_path}\" \"#{File.join(File.dirname(__FILE__), '../run_simulation.rb')}\" -x \"#{xml}\" --add-component-loads -o \"#{rundir}\" --debug --monthly ALL -b ALL" success = system(command) rundir = File.join(rundir, 'run') From b0430c9f7690791c1a6f9422073352b56f34d270 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 7 Aug 2023 08:59:32 -0700 Subject: [PATCH 10/33] Validate files created in build measure tests. --- BuildResidentialHPXML/measure.rb | 1 + BuildResidentialHPXML/measure.xml | 8 +++---- .../tests/build_residential_hpxml_test.rb | 21 ++++++++++++++++--- 3 files changed, 23 insertions(+), 7 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 42d2fdd8ad..a51d1b28ef 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3462,6 +3462,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) # FIXME: Address this when multiple buildings HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file) hpxml_doc = hpxml.to_doc() + unique_hpxml_ids(hpxml_doc) end return hpxml_doc diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 43b3e46afb..c4c2ebce98 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 514828db-2779-4e07-9189-5ccc0474f06c - 2023-08-04T20:10:05Z + fdfcc965-ebbf-4a9d-80ca-dbc42ae793e4 + 2023-08-07T15:58:50Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6707,7 +6707,7 @@ measure.rb rb script - 888F2D22 + B48A68E0 geometry.rb @@ -6719,7 +6719,7 @@ build_residential_hpxml_test.rb rb test - 0F877D2B + FABECA28 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index e045686ad5..16c5dd69b8 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -22,6 +22,7 @@ def test_workflows hpxmls_files = { # Base files to derive from 'base-sfd.xml' => nil, + 'base-sfd2.xml' => 'base-sfd.xml', 'base-sfa.xml' => 'base-sfd.xml', 'base-mf.xml' => 'base-sfd.xml', @@ -260,9 +261,14 @@ def test_workflows 'warning-conditioned-attic-with-floor-insulation.xml' => 'Home with conditioned attic has ceiling insulation.', } + schema_path = File.join(File.dirname(__FILE__), '../..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd') + schema_validator = XMLValidator.get_schema_validator(schema_path) + puts "Generating #{hpxmls_files.size} HPXML files..." hpxmls_files.each_with_index do |(hpxml_file, parent), i| + next if !hpxml_file.include?('base-sfd2.xml') + puts "[#{i + 1}/#{hpxmls_files.size}] Generating #{hpxml_file}..." begin @@ -306,14 +312,21 @@ def test_workflows end hpxml_path = File.absolute_path(File.join(@output_path, hpxml_file)) - hpxml = HPXML.new(hpxml_path: hpxml_path) + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') hpxml.header.xml_generated_by = 'build_residential_hpxml_test.rb' hpxml.header.created_date_and_time = Time.new(2000, 1, 1).strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs hpxml_doc = hpxml.to_doc() XMLHelper.write_file(hpxml_doc, hpxml_path) - rescue Exception => e - flunk "Error: Did not successfully generate #{hpxml_file}.\n#{e}\n#{e.backtrace.join('\n')}" + + errors, _warnings = XMLValidator.validate_against_schema(hpxml_path, schema_validator) + next unless errors.size > 0 + + puts errors.to_s + puts "\nError: Did not successfully validate #{hpxml_file}." + exit! + rescue Exception + flunk "Error: Did not successfully generate #{hpxml_file}" end end @@ -608,6 +621,8 @@ def _set_measure_argument_values(hpxml_file, args) args['pool_heater_type'] = HPXML::HeaterTypeElectricResistance args['hot_tub_present'] = false args['hot_tub_heater_type'] = HPXML::HeaterTypeElectricResistance + elsif ['base-sfd2.xml'].include? hpxml_file + args['hpxml_path_in'] = 'workflow/sample_files/base.xml' elsif ['base-sfa.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeSFA args['geometry_unit_cfa'] = 1800.0 From ff3aed82522a0d76b6346d60e2dbbac34792df53 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 7 Aug 2023 11:50:29 -0700 Subject: [PATCH 11/33] Remove debug line. --- BuildResidentialHPXML/measure.xml | 6 +++--- BuildResidentialHPXML/tests/build_residential_hpxml_test.rb | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index c4c2ebce98..578d4471ac 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - fdfcc965-ebbf-4a9d-80ca-dbc42ae793e4 - 2023-08-07T15:58:50Z + c36cbf4d-6c71-478a-8013-16f67d2d0f94 + 2023-08-07T18:50:16Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6719,7 +6719,7 @@ build_residential_hpxml_test.rb rb test - FABECA28 + 7976A025 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index 16c5dd69b8..ee433e0616 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -267,8 +267,6 @@ def test_workflows puts "Generating #{hpxmls_files.size} HPXML files..." hpxmls_files.each_with_index do |(hpxml_file, parent), i| - next if !hpxml_file.include?('base-sfd2.xml') - puts "[#{i + 1}/#{hpxmls_files.size}] Generating #{hpxml_file}..." begin From 129f367c92e9fe09446fcee6ec008845b6d6454f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 8 Aug 2023 09:31:43 -0700 Subject: [PATCH 12/33] Need to ignore shading_id attrs. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hpxml.rb | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 1f71d15767..1b6a58718a 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 87dc56e1-24c9-4709-9b2d-20fb7333e2b4 - 2023-08-04T22:20:09Z + 72032c2e-f780-49d6-9327-77683b0cd920 + 2023-08-08T16:30:39Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,7 +238,7 @@ hpxml.rb rb resource - E3D8402F + E8C3A647 hpxml_defaults.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index d1ad29be45..2f1abe3259 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -1635,7 +1635,9 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil) :under_slab_insulation_id, :area, :length, - :exposed_perimeter] + :exposed_perimeter, + :interior_shading_id, + :exterior_shading_id] # Look for pairs of surfaces that can be collapsed like_foundation_walls = {} From a4072e75629932609d5b253cc1be00d5b8d75e5c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 15 Aug 2023 11:10:05 -0700 Subject: [PATCH 13/33] Add extra build measure tests. --- BuildResidentialHPXML/measure.rb | 1 - BuildResidentialHPXML/measure.xml | 1802 ++++++++++++++++- .../tests/build_residential_hpxml_test.rb | 21 +- 3 files changed, 1817 insertions(+), 7 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index d80337a635..00e8f8529d 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3466,7 +3466,6 @@ def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) if args[:apply_defaults] eri_version = Constants.ERIVersions[-1] - # FIXME: Address this when multiple buildings HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file) hpxml_doc = hpxml.to_doc() unique_hpxml_ids(hpxml_doc) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index d6106b7d57..5a45c9e5d7 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 3207dc4c-7014-4b84-9dd4-59cf217bb4b9 - 2023-08-10T23:39:33Z + 1d7ee484-0372-4252-a86e-fe988ac27519 + 2023-08-15T18:09:18Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6725,7 +6725,7 @@ measure.rb rb script - B2F5A5DC + 9F5E5E64 geometry.rb @@ -6737,7 +6737,1801 @@ build_residential_hpxml_test.rb rb test - 680C953A + 74CC0B18 + + + extra_files/base-mf.osm + osm + test + DAADD5E1 + + + extra_files/base-mf.xml + xml + test + 6D95BC4C + + + extra_files/base-mf2.osm + osm + test + D354DFBD + + + extra_files/base-mf2.xml + xml + test + 84960610 + + + extra_files/base-mf3.osm + osm + test + 52DEF0E6 + + + extra_files/base-mf3.xml + xml + test + 72720CDE + + + extra_files/base-mf4.osm + osm + test + DC3BA2EA + + + extra_files/base-mf4.xml + xml + test + 76E5214D + + + extra_files/base-sfa.osm + osm + test + EC46A63F + + + extra_files/base-sfa.xml + xml + test + C7452A0F + + + extra_files/base-sfa2.osm + osm + test + EDCA5E8C + + + extra_files/base-sfa2.xml + xml + test + 07A71071 + + + extra_files/base-sfa3.osm + osm + test + CAB3169C + + + extra_files/base-sfa3.xml + xml + test + CC369D8F + + + extra_files/base-sfd.osm + osm + test + EBDB657C + + + extra_files/base-sfd.xml + xml + test + AF7637CF + + + extra_files/base-sfd2.osm + osm + test + C4C9753A + + + extra_files/base-sfd2.xml + xml + test + FDA8956D + + + extra_files/error-ambient-with-garage.osm + osm + test + 8BE229FC + + + extra_files/error-bills-args-not-all-same-size.osm + osm + test + 1992C7A9 + + + extra_files/error-conditioned-attic-with-one-floor-above-grade.osm + osm + test + 9FBC2BC3 + + + extra_files/error-cooling-system-and-heat-pump.osm + osm + test + 5AE076F7 + + + extra_files/error-dhw-indirect-without-boiler.osm + osm + test + 53A9A27B + + + extra_files/error-emissions-args-not-all-same-size.osm + osm + test + A2B5FD05 + + + extra_files/error-emissions-args-not-all-specified.osm + osm + test + 91CB1C48 + + + extra_files/error-emissions-natural-gas-args-not-all-specified.osm + osm + test + F8A69974 + + + extra_files/error-garage-too-deep.osm + osm + test + 241B18DF + + + extra_files/error-garage-too-wide.osm + osm + test + E88828FA + + + extra_files/error-heating-system-and-heat-pump.osm + osm + test + 2F5D0574 + + + extra_files/error-hip-roof-and-protruding-garage.osm + osm + test + D2645331 + + + extra_files/error-invalid-aspect-ratio.osm + osm + test + EBCE6FEC + + + extra_files/error-invalid-door-area.osm + osm + test + 287B4B61 + + + extra_files/error-invalid-garage-protrusion.osm + osm + test + F4974C0C + + + extra_files/error-invalid-window-aspect-ratio.osm + osm + test + 9E838F1F + + + extra_files/error-mf-all-adiabatic-walls.osm + osm + test + 889E5AFE + + + extra_files/error-mf-bottom-crawlspace-zero-foundation-height.osm + osm + test + 31394EB2 + + + extra_files/error-mf-conditioned-attic.osm + osm + test + F2546228 + + + extra_files/error-mf-no-building-num-units.osm + osm + test + 2F8A44E6 + + + extra_files/error-mf-two-stories.osm + osm + test + 353AABE8 + + + extra_files/error-negative-foundation-height.osm + osm + test + 17A5D234 + + + extra_files/error-protruding-garage-under-gable-roof.osm + osm + test + 1E5B484A + + + extra_files/error-rim-joist-assembly-r-but-no-height.osm + osm + test + B686D2B8 + + + extra_files/error-rim-joist-height-but-no-assembly-r.osm + osm + test + 72FCB0AF + + + extra_files/error-second-heating-system-but-no-primary-heating.osm + osm + test + 6E776815 + + + extra_files/error-second-heating-system-ducted-with-ducted-primary-heating.osm + osm + test + C09150FD + + + extra_files/error-sfa-above-apartment.osm + osm + test + 2A983DDF + + + extra_files/error-sfa-all-adiabatic-walls.osm + osm + test + 40A9EDCE + + + extra_files/error-sfa-below-apartment.osm + osm + test + 5CCED0E0 + + + extra_files/error-sfa-no-building-num-units.osm + osm + test + 4B542B76 + + + extra_files/error-sfa-no-non-adiabatic-walls.osm + osm + test + 3A539985 + + + extra_files/error-sfd-adiabatic-walls.osm + osm + test + C184FA04 + + + extra_files/error-sfd-conditioned-basement-zero-foundation-height.osm + osm + test + 6A99BCEC + + + extra_files/error-sfd-with-shared-system.osm + osm + test + 13DE6C4D + + + extra_files/error-too-many-floors.osm + osm + test + 596E2302 + + + extra_files/error-vented-attic-with-zero-floor-insulation.osm + osm + test + D5BA2B23 + + + extra_files/error-vented-attic-with-zero-floor-insulation.xml + xml + test + 5C67276F + + + extra_files/error-zero-number-of-bedrooms.osm + osm + test + 22987192 + + + extra_files/extra-auto-duct-locations.osm + osm + test + 538B7405 + + + extra_files/extra-auto-duct-locations.xml + xml + test + A4219CBD + + + extra_files/extra-auto.osm + osm + test + 77B08408 + + + extra_files/extra-auto.xml + xml + test + FAE3282C + + + extra_files/extra-bills-fossil-fuel-rates.osm + osm + test + E5872D99 + + + extra_files/extra-bills-fossil-fuel-rates.xml + xml + test + 6B37F132 + + + extra_files/extra-dhw-solar-latitude.osm + osm + test + EF3FB8AE + + + extra_files/extra-dhw-solar-latitude.xml + xml + test + 1A86D3F2 + + + extra_files/extra-emissions-fossil-fuel-factors.osm + osm + test + 66814972 + + + extra_files/extra-emissions-fossil-fuel-factors.xml + xml + test + A2183F17 + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.osm + osm + test + ACF6096D + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml + xml + test + BEB1B364 + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.osm + osm + test + 66640725 + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml + xml + test + 67AC708E + + + extra_files/extra-enclosure-garage-atticroof-conditioned.osm + osm + test + 5E78574E + + + extra_files/extra-enclosure-garage-atticroof-conditioned.xml + xml + test + B8566F88 + + + extra_files/extra-enclosure-garage-partially-protruded.osm + osm + test + 5E3DEC53 + + + extra_files/extra-enclosure-garage-partially-protruded.xml + xml + test + 82BDF984 + + + extra_files/extra-enclosure-windows-shading.osm + osm + test + 645A7B1B + + + extra_files/extra-enclosure-windows-shading.xml + xml + test + 4A3C2E39 + + + extra_files/extra-gas-hot-tub-heater-with-zero-kwh.osm + osm + test + DF85DA25 + + + extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml + xml + test + 1206BDD6 + + + extra_files/extra-gas-pool-heater-with-zero-kwh.osm + osm + test + 2BE5D86A + + + extra_files/extra-gas-pool-heater-with-zero-kwh.xml + xml + test + 535835B9 + + + extra_files/extra-iecc-zone-different-than-epw.osm + osm + test + F840F75C + + + extra_files/extra-iecc-zone-different-than-epw.xml + xml + test + 567FD4FC + + + extra_files/extra-mf-ambient.osm + osm + test + 397E4EF3 + + + extra_files/extra-mf-ambient.xml + xml + test + 2B2847D0 + + + extra_files/extra-mf-atticroof-flat.osm + osm + test + 70190C5A + + + extra_files/extra-mf-atticroof-flat.xml + xml + test + DE26BAA9 + + + extra_files/extra-mf-atticroof-vented.osm + osm + test + 70FB986E + + + extra_files/extra-mf-atticroof-vented.xml + xml + test + D0EFACCA + + + extra_files/extra-mf-eaves.osm + osm + test + ADEAF7FB + + + extra_files/extra-mf-eaves.xml + xml + test + 5FB7AC6A + + + extra_files/extra-mf-exterior-corridor.osm + osm + test + E55B04ED + + + extra_files/extra-mf-exterior-corridor.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-rear-units.osm + osm + test + 39844BD3 + + + extra_files/extra-mf-rear-units.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-slab-left-bottom-rear-units.osm + osm + test + 6E140589 + + + extra_files/extra-mf-slab-left-bottom-rear-units.xml + xml + test + 35CC46A1 + + + extra_files/extra-mf-slab-left-bottom.osm + osm + test + 04DBDE37 + + + extra_files/extra-mf-slab-left-bottom.xml + xml + test + 0FD99952 + + + extra_files/extra-mf-slab-left-middle-rear-units.osm + osm + test + 9B0E9C03 + + + extra_files/extra-mf-slab-left-middle-rear-units.xml + xml + test + 5AFD0141 + + + extra_files/extra-mf-slab-left-middle.osm + osm + test + 8324DFB7 + + + extra_files/extra-mf-slab-left-middle.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-slab-left-top-rear-units.osm + osm + test + C04509DB + + + extra_files/extra-mf-slab-left-top-rear-units.xml + xml + test + 5AFD0141 + + + extra_files/extra-mf-slab-left-top.osm + osm + test + 64128E76 + + + extra_files/extra-mf-slab-left-top.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-slab-middle-bottom-rear-units.osm + osm + test + 9D21F965 + + + extra_files/extra-mf-slab-middle-bottom-rear-units.xml + xml + test + 67B92871 + + + extra_files/extra-mf-slab-middle-bottom.osm + osm + test + D66310A6 + + + extra_files/extra-mf-slab-middle-bottom.xml + xml + test + 700DE73C + + + extra_files/extra-mf-slab-middle-middle-rear-units.osm + osm + test + 2DD82C82 + + + extra_files/extra-mf-slab-middle-middle-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-slab-middle-middle.osm + osm + test + 30B8D9CA + + + extra_files/extra-mf-slab-middle-middle.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-slab-middle-top-rear-units.osm + osm + test + 038264B2 + + + extra_files/extra-mf-slab-middle-top-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-slab-middle-top.osm + osm + test + 04A587E7 + + + extra_files/extra-mf-slab-middle-top.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-slab-rear-units.osm + osm + test + 2861FC72 + + + extra_files/extra-mf-slab-rear-units.xml + xml + test + 35CC46A1 + + + extra_files/extra-mf-slab-right-bottom-rear-units.osm + osm + test + A8253A8E + + + extra_files/extra-mf-slab-right-bottom-rear-units.xml + xml + test + 67B92871 + + + extra_files/extra-mf-slab-right-bottom.osm + osm + test + BFA81AA2 + + + extra_files/extra-mf-slab-right-bottom.xml + xml + test + 700DE73C + + + extra_files/extra-mf-slab-right-middle-rear-units.osm + osm + test + F337E2E3 + + + extra_files/extra-mf-slab-right-middle-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-slab-right-middle.osm + osm + test + 535BE517 + + + extra_files/extra-mf-slab-right-middle.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-slab-right-top-rear-units.osm + osm + test + 85530A1B + + + extra_files/extra-mf-slab-right-top-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-slab-right-top.osm + osm + test + DB1B3F2C + + + extra_files/extra-mf-slab-right-top.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-slab.osm + osm + test + C9DA4C2F + + + extra_files/extra-mf-slab.xml + xml + test + 0FD99952 + + + extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.osm + osm + test + 49411FD8 + + + extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.xml + xml + test + 2C0ADB14 + + + extra_files/extra-mf-unvented-crawlspace-left-bottom.osm + osm + test + 9FDABC69 + + + extra_files/extra-mf-unvented-crawlspace-left-bottom.xml + xml + test + C893E31B + + + extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.osm + osm + test + AB12846E + + + extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.xml + xml + test + 5AFD0141 + + + extra_files/extra-mf-unvented-crawlspace-left-middle.osm + osm + test + 1EC4CE81 + + + extra_files/extra-mf-unvented-crawlspace-left-middle.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.osm + osm + test + 9FE03FAB + + + extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.xml + xml + test + 5AFD0141 + + + extra_files/extra-mf-unvented-crawlspace-left-top.osm + osm + test + 49CD5C12 + + + extra_files/extra-mf-unvented-crawlspace-left-top.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.osm + osm + test + 6CDC1CA2 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.xml + xml + test + 75E1BD6F + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom.osm + osm + test + 4D40B115 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom.xml + xml + test + 4437DA07 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.osm + osm + test + 45263A86 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle.osm + osm + test + 5BF4D68D + + + extra_files/extra-mf-unvented-crawlspace-middle-middle.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.osm + osm + test + EBD0E60C + + + extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-unvented-crawlspace-middle-top.osm + osm + test + 10FEB78D + + + extra_files/extra-mf-unvented-crawlspace-middle-top.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-unvented-crawlspace-rear-units.osm + osm + test + 063BC36C + + + extra_files/extra-mf-unvented-crawlspace-rear-units.xml + xml + test + 2C0ADB14 + + + extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.osm + osm + test + F6773167 + + + extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.xml + xml + test + 75E1BD6F + + + extra_files/extra-mf-unvented-crawlspace-right-bottom.osm + osm + test + 8EA1A3F5 + + + extra_files/extra-mf-unvented-crawlspace-right-bottom.xml + xml + test + 4437DA07 + + + extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.osm + osm + test + 95B1EB69 + + + extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-unvented-crawlspace-right-middle.osm + osm + test + A262FD9B + + + extra_files/extra-mf-unvented-crawlspace-right-middle.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.osm + osm + test + 04D1B5CA + + + extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-unvented-crawlspace-right-top.osm + osm + test + 132360FA + + + extra_files/extra-mf-unvented-crawlspace-right-top.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-unvented-crawlspace.osm + osm + test + C38BA4B6 + + + extra_files/extra-mf-unvented-crawlspace.xml + xml + test + C893E31B + + + extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.osm + osm + test + 88BB9FC0 + + + extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.xml + xml + test + 4E95BAE8 + + + extra_files/extra-mf-vented-crawlspace-left-bottom.osm + osm + test + 64EE0E38 + + + extra_files/extra-mf-vented-crawlspace-left-bottom.xml + xml + test + A9EE986D + + + extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.osm + osm + test + 71A219E0 + + + extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.xml + xml + test + 5AFD0141 + + + extra_files/extra-mf-vented-crawlspace-left-middle.osm + osm + test + 39F57010 + + + extra_files/extra-mf-vented-crawlspace-left-middle.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-vented-crawlspace-left-top-rear-units.osm + osm + test + BFFEAA60 + + + extra_files/extra-mf-vented-crawlspace-left-top-rear-units.xml + xml + test + 5AFD0141 + + + extra_files/extra-mf-vented-crawlspace-left-top.osm + osm + test + 60F5592D + + + extra_files/extra-mf-vented-crawlspace-left-top.xml + xml + test + 6D95BC4C + + + extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.osm + osm + test + 782238B5 + + + extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.xml + xml + test + 4432AE3B + + + extra_files/extra-mf-vented-crawlspace-middle-bottom.osm + osm + test + 723C54CA + + + extra_files/extra-mf-vented-crawlspace-middle-bottom.xml + xml + test + 95D813A6 + + + extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.osm + osm + test + 7CF22D3A + + + extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-vented-crawlspace-middle-middle.osm + osm + test + 480E1F35 + + + extra_files/extra-mf-vented-crawlspace-middle-middle.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.osm + osm + test + 4FDBC2AB + + + extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-vented-crawlspace-middle-top.osm + osm + test + B3F51859 + + + extra_files/extra-mf-vented-crawlspace-middle-top.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-vented-crawlspace-rear-units.osm + osm + test + 4EB33C9F + + + extra_files/extra-mf-vented-crawlspace-rear-units.xml + xml + test + 4E95BAE8 + + + extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.osm + osm + test + A003801A + + + extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.xml + xml + test + 4432AE3B + + + extra_files/extra-mf-vented-crawlspace-right-bottom.osm + osm + test + 94F610D1 + + + extra_files/extra-mf-vented-crawlspace-right-bottom.xml + xml + test + 95D813A6 + + + extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.osm + osm + test + E21EB5C6 + + + extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-vented-crawlspace-right-middle.osm + osm + test + D4957877 + + + extra_files/extra-mf-vented-crawlspace-right-middle.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-vented-crawlspace-right-top-rear-units.osm + osm + test + 3DAEB136 + + + extra_files/extra-mf-vented-crawlspace-right-top-rear-units.xml + xml + test + A5FEAB71 + + + extra_files/extra-mf-vented-crawlspace-right-top.osm + osm + test + A1584315 + + + extra_files/extra-mf-vented-crawlspace-right-top.xml + xml + test + 7EB18F6F + + + extra_files/extra-mf-vented-crawlspace.osm + osm + test + 8C9AA0EF + + + extra_files/extra-mf-vented-crawlspace.xml + xml + test + A9EE986D + + + extra_files/extra-no-rim-joists.osm + osm + test + 4323192B + + + extra_files/extra-no-rim-joists.xml + xml + test + 6D38860E + + + extra_files/extra-pv-roofpitch.osm + osm + test + 8191D626 + + + extra_files/extra-pv-roofpitch.xml + xml + test + AF7637CF + + + extra_files/extra-seasons-building-america.osm + osm + test + B6EE3FCE + + + extra_files/extra-seasons-building-america.xml + xml + test + 980BA696 + + + extra_files/extra-second-heating-system-boiler-to-heat-pump.osm + osm + test + 5B2D5D66 + + + extra_files/extra-second-heating-system-boiler-to-heat-pump.xml + xml + test + 7F9D3669 + + + extra_files/extra-second-heating-system-boiler-to-heating-system.osm + osm + test + 15FA7659 + + + extra_files/extra-second-heating-system-boiler-to-heating-system.xml + xml + test + A02D60E3 + + + extra_files/extra-second-heating-system-fireplace-to-heat-pump.osm + osm + test + 475FE10D + + + extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml + xml + test + 24709B1D + + + extra_files/extra-second-heating-system-fireplace-to-heating-system.osm + osm + test + 3DBE8FFE + + + extra_files/extra-second-heating-system-fireplace-to-heating-system.xml + xml + test + 6EB553C1 + + + extra_files/extra-second-heating-system-portable-heater-to-heat-pump.osm + osm + test + 9F9013FA + + + extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml + xml + test + CFBFFC55 + + + extra_files/extra-second-heating-system-portable-heater-to-heating-system.osm + osm + test + 8C531B56 + + + extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml + xml + test + EADD1D72 + + + extra_files/extra-second-refrigerator.osm + osm + test + C6A001E2 + + + extra_files/extra-second-refrigerator.xml + xml + test + AF7637CF + + + extra_files/extra-sfa-ambient.osm + osm + test + 6ED53771 + + + extra_files/extra-sfa-ambient.xml + xml + test + 8F1A060F + + + extra_files/extra-sfa-atticroof-conditioned-eaves-gable.osm + osm + test + D2231B6E + + + extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml + xml + test + BCB40EC5 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-hip.osm + osm + test + 2BC54CD5 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml + xml + test + 631B6480 + + + extra_files/extra-sfa-atticroof-flat.osm + osm + test + 1BE55A62 + + + extra_files/extra-sfa-atticroof-flat.xml + xml + test + C0233403 + + + extra_files/extra-sfa-conditioned-crawlspace.osm + osm + test + B0C3D3F2 + + + extra_files/extra-sfa-conditioned-crawlspace.xml + xml + test + AF6C32DC + + + extra_files/extra-sfa-exterior-corridor.osm + osm + test + 8513B98F + + + extra_files/extra-sfa-exterior-corridor.xml + xml + test + C7452A0F + + + extra_files/extra-sfa-rear-units.osm + osm + test + ABF8D1AF + + + extra_files/extra-sfa-rear-units.xml + xml + test + C7452A0F + + + extra_files/extra-sfa-slab-middle.osm + osm + test + D5E4D3BE + + + extra_files/extra-sfa-slab-middle.xml + xml + test + D59398EB + + + extra_files/extra-sfa-slab-right.osm + osm + test + 09DDEE98 + + + extra_files/extra-sfa-slab-right.xml + xml + test + D59398EB + + + extra_files/extra-sfa-slab.osm + osm + test + C74C2CAA + + + extra_files/extra-sfa-slab.xml + xml + test + 8469DE44 + + + extra_files/extra-sfa-unconditioned-basement-middle.osm + osm + test + E82C6334 + + + extra_files/extra-sfa-unconditioned-basement-middle.xml + xml + test + B88DF8AE + + + extra_files/extra-sfa-unconditioned-basement-right.osm + osm + test + 8DC58358 + + + extra_files/extra-sfa-unconditioned-basement-right.xml + xml + test + B88DF8AE + + + extra_files/extra-sfa-unconditioned-basement.osm + osm + test + 828B70D6 + + + extra_files/extra-sfa-unconditioned-basement.xml + xml + test + 0BBCB101 + + + extra_files/extra-sfa-unvented-crawlspace-middle.osm + osm + test + C0547756 + + + extra_files/extra-sfa-unvented-crawlspace-middle.xml + xml + test + A415CA23 + + + extra_files/extra-sfa-unvented-crawlspace-right.osm + osm + test + A04CF75E + + + extra_files/extra-sfa-unvented-crawlspace-right.xml + xml + test + A415CA23 + + + extra_files/extra-sfa-unvented-crawlspace.osm + osm + test + D6F8AE1A + + + extra_files/extra-sfa-unvented-crawlspace.xml + xml + test + 9E073403 + + + extra_files/extra-sfa-vented-crawlspace-middle.osm + osm + test + F3452B86 + + + extra_files/extra-sfa-vented-crawlspace-middle.xml + xml + test + 218B3B7D + + + extra_files/extra-sfa-vented-crawlspace-right.osm + osm + test + A58D67AB + + + extra_files/extra-sfa-vented-crawlspace-right.xml + xml + test + 218B3B7D + + + extra_files/extra-sfa-vented-crawlspace.osm + osm + test + 26C5579B + + + extra_files/extra-sfa-vented-crawlspace.xml + xml + test + E528E701 + + + extra_files/extra-state-code-different-than-epw.osm + osm + test + 7E56AF59 + + + extra_files/extra-state-code-different-than-epw.xml + xml + test + 2FF54CA2 + + + extra_files/extra-time-zone-different-than-epw.osm + osm + test + 36B26F33 + + + extra_files/extra-time-zone-different-than-epw.xml + xml + test + 4535828E + + + extra_files/warning-conditioned-attic-with-floor-insulation.osm + osm + test + 383B2A82 + + + extra_files/warning-conditioned-attic-with-floor-insulation.xml + xml + test + 46031EC0 + + + extra_files/warning-conditioned-basement-with-ceiling-insulation.osm + osm + test + 6C9A93F6 + + + extra_files/warning-conditioned-basement-with-ceiling-insulation.xml + xml + test + AF7637CF + + + extra_files/warning-mf-bottom-slab-non-zero-foundation-height.osm + osm + test + 128A7038 + + + extra_files/warning-mf-bottom-slab-non-zero-foundation-height.xml + xml + test + 0FD99952 + + + extra_files/warning-non-electric-heat-pump-water-heater.osm + osm + test + 16E46C63 + + + extra_files/warning-non-electric-heat-pump-water-heater.xml + xml + test + 4E39FC64 + + + extra_files/warning-sfd-slab-non-zero-foundation-height.osm + osm + test + B4301E11 + + + extra_files/warning-sfd-slab-non-zero-foundation-height.xml + xml + test + 6FFBC3F9 + + + extra_files/warning-slab-non-zero-foundation-height-above-grade.osm + osm + test + E93BE575 + + + extra_files/warning-slab-non-zero-foundation-height-above-grade.xml + xml + test + 6FFBC3F9 + + + extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.osm + osm + test + 4FB203C4 + + + extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml + xml + test + 7A57EEC4 + + + extra_files/warning-unvented-attic-with-floor-and-roof-insulation.osm + osm + test + 649CAB74 + + + extra_files/warning-unvented-attic-with-floor-and-roof-insulation.xml + xml + test + 79D9B6D1 + + + extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.osm + osm + test + 7D9DD25A + + + extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml + xml + test + B037D6F5 + + + extra_files/warning-vented-attic-with-floor-and-roof-insulation.osm + osm + test + A88A5AB9 + + + extra_files/warning-vented-attic-with-floor-and-roof-insulation.xml + xml + test + D8898F19 + + + extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.osm + osm + test + ABD0D258 + + + extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml + xml + test + 7F5CCD87 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index 02ddbf7da8..2317021b07 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -10,7 +10,7 @@ class BuildResidentialHPXMLTest < Minitest::Test def setup @output_path = File.join(File.dirname(__FILE__), 'extra_files') - @model_save = false # true helpful for debugging, i.e., can render osm in 3D + @model_save = true # true helpful for debugging, i.e., can render osm in 3D end def teardown @@ -23,8 +23,15 @@ def test_workflows # Base files to derive from 'base-sfd.xml' => nil, 'base-sfd2.xml' => 'base-sfd.xml', + 'base-sfa.xml' => 'base-sfd.xml', + 'base-sfa2.xml' => 'base-sfa.xml', + 'base-sfa3.xml' => 'base-sfa.xml', + 'base-mf.xml' => 'base-sfd.xml', + 'base-mf2.xml' => 'base-mf.xml', + 'base-mf3.xml' => 'base-mf.xml', + 'base-mf4.xml' => 'base-mf.xml', # Extra files to test 'extra-auto.xml' => 'base-sfd.xml', @@ -615,7 +622,7 @@ def _set_measure_argument_values(hpxml_file, args) args['hot_tub_present'] = false args['hot_tub_heater_type'] = HPXML::HeaterTypeElectricResistance elsif ['base-sfd2.xml'].include? hpxml_file - args['hpxml_path_in'] = 'workflow/sample_files/base.xml' + args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') elsif ['base-sfa.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeSFA args['geometry_unit_cfa'] = 1800.0 @@ -630,6 +637,10 @@ def _set_measure_argument_values(hpxml_file, args) args['window_area_left'] = 0 args['window_area_right'] = 0 args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal + elsif ['base-sfa2.xml'].include? hpxml_file + args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml') + elsif ['base-sfa3.xml'].include? hpxml_file + args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml') elsif ['base-mf.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeApartment args['geometry_unit_cfa'] = 900.0 @@ -655,6 +666,12 @@ def _set_measure_argument_values(hpxml_file, args) args['ducts_number_of_return_registers'] = 1 args['door_area'] = 20.0 args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal + elsif ['base-mf2.xml'].include? hpxml_file + args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml') + elsif ['base-mf3.xml'].include? hpxml_file + args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml') + elsif ['base-mf4.xml'].include? hpxml_file + args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml') end # Extras From 22ed937b976cef65a1c6a989a5ba4b831f2cd7ea Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 24 Aug 2023 12:30:05 -0700 Subject: [PATCH 14/33] Avoid setting unique ids on the first building element. --- BuildResidentialHPXML/measure.rb | 4 ++-- BuildResidentialHPXML/measure.xml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 955eb4fc9f..52cd1169d5 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3455,7 +3455,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) renumber_hpxml_ids(hpxml_bldg) hpxml_doc = hpxml.to_doc() - hpxml.set_unique_hpxml_ids(hpxml_doc, true) + hpxml.set_unique_hpxml_ids(hpxml_doc, true) if hpxml.buildings.size > 1 XMLHelper.write_file(hpxml_doc, hpxml_path) if args[:apply_defaults] @@ -3467,7 +3467,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) eri_version = Constants.ERIVersions[-1] HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file) hpxml_doc = hpxml.to_doc() - hpxml.set_unique_hpxml_ids(hpxml_doc, true) + hpxml.set_unique_hpxml_ids(hpxml_doc, true) if hpxml.buildings.size > 1 XMLHelper.write_file(hpxml_doc, hpxml_path) end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 20c5930331..fcf694adef 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 3b9bb277-a031-47df-a546-227ead6d878c - 2023-08-24T16:07:13Z + 464863e2-4766-4b5e-b606-fd5be3f75ecf + 2023-08-24T19:29:24Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6757,7 +6757,7 @@ measure.rb rb script - 8D28BF8E + 7E40E4A4 geometry.rb From 7a95206671c34f76b23a86ca962dbf3949e4391c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 21 Sep 2023 16:00:44 -0700 Subject: [PATCH 15/33] Create a new sample file of two buildings having separate detailed schedules. --- tasks.rb | 9 ++++++--- workflow/hpxml_inputs.json | 12 +++++------- ...tailed-occupancy-stochastic-two-buildings.xml} | 15 ++++++++++++++- 3 files changed, 25 insertions(+), 11 deletions(-) rename workflow/sample_files/{base-two-buildings-detailed-schedules.xml => base-schedules-detailed-occupancy-stochastic-two-buildings.xml} (98%) diff --git a/tasks.rb b/tasks.rb index 9fa4899535..a0db5be231 100644 --- a/tasks.rb +++ b/tasks.rb @@ -24,8 +24,6 @@ def create_hpxmls puts "Generating #{json_inputs.size} HPXML files..." json_inputs.keys.each_with_index do |hpxml_filename, i| - # next if !hpxml_filename.include? 'multiple-buildings' - puts "[#{i + 1}/#{json_inputs.size}] Generating #{hpxml_filename}..." hpxml_path = File.join(workflow_dir, hpxml_filename) abs_hpxml_files << File.absolute_path(hpxml_path) @@ -56,7 +54,8 @@ def create_hpxmls if (not csv_path.nil?) && (not schedules_regenerated.include? csv_path) sch_args = { 'hpxml_path' => hpxml_path, 'output_csv_path' => csv_path, - 'hpxml_output_path' => hpxml_path } + 'hpxml_output_path' => hpxml_path, + 'building_id' => 'ALL' } measures['BuildResidentialScheduleFile'] = [sch_args] schedules_regenerated << csv_path end @@ -238,6 +237,10 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.buildings[0].clothes_dryers[0].delete end + if ['base-schedules-detailed-occupancy-stochastic-two-buildings.xml'].include? hpxml_file + hpxml.buildings[-1].header.schedules_filepaths.delete_at(0) + end + hpxml.buildings.each do |hpxml_bldg| # Logic that can only be applied based on the file name if ['base-misc-emissions.xml'].include? hpxml_file diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index fb5a5a01f2..f6de40ff8c 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3201,13 +3201,6 @@ "clothes_dryer_present": false, "utility_bill_scenario_names": null }, - "sample_files/base-two-buildings-detailed-schedules.xml": { - "parent_hpxml": "sample_files/base.xml", - "hpxml_path_in": "workflow/sample_files/base.xml", - "clothes_dryer_present": false, - "utility_bill_scenario_names": null, - "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" - }, "sample_files/base-multiple-buildings.xml": { "parent_hpxml": "sample_files/base.xml", "hpxml_path_in": "workflow/sample_files/base-two-buildings.xml", @@ -3401,6 +3394,11 @@ "parent_hpxml": "sample_files/base.xml", "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" }, + "sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml": { + "parent_hpxml": "sample_files/base.xml", + "hpxml_path_in": "workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml", + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" + }, "sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml": { "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml", "schedules_vacancy_period": "Dec 1 - Jan 31" diff --git a/workflow/sample_files/base-two-buildings-detailed-schedules.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml similarity index 98% rename from workflow/sample_files/base-two-buildings-detailed-schedules.xml rename to workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml index 626313680e..82cf6b2842 100644 --- a/workflow/sample_files/base-two-buildings-detailed-schedules.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml @@ -11,11 +11,13 @@ 60 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv Bills + + Bills + @@ -52,6 +54,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + @@ -974,6 +979,14 @@ 6.0 3.2 + + + living space + electricity + 3.73 + true + 150.0 + living space From becc012fcb906efcc3bc9d8a998ae2f5c730e396 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 21 Sep 2023 19:11:22 -0700 Subject: [PATCH 16/33] Actually add two buildings sample file with different detailed schedules. --- ...e-schedules-detailed-occupancy-stochastic-two-buildings.xml | 3 +++ workflow/tests/hpxml_translator_test.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml index 82cf6b2842..f7fff54feb 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml @@ -589,6 +589,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv + diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index 60569fa78a..93e00451b3 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -30,7 +30,7 @@ def test_simulations Dir["#{sample_files_dir}/*.xml"].sort.each do |xml| next if xml.end_with? '-10x.xml' next if xml.include? 'base-multiple-buildings.xml' # Tested by test_multiple_buildings() - next if xml.include? 'base-two-buildings' + next if xml.include? 'two-buildings' # FIXME: Need to address these files # Misc: next if xml.include? 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump' From 10170eb1cb02d64ffd5b8281af7a07ab04e46468 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 21 Sep 2023 20:22:54 -0700 Subject: [PATCH 17/33] Regenerate both schedule files from new sample file. --- HPXMLtoOpenStudio/measure.xml | 10 +- .../schedule_files/occupancy-stochastic_2.csv | 8761 +++++++++++++++++ tasks.rb | 2 +- workflow/hpxml_inputs.json | 2 +- 4 files changed, 8771 insertions(+), 4 deletions(-) create mode 100644 HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 33de5c7670..19b3648454 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - c8876577-21d4-4533-a3d2-54bc8c334e71 - 2023-09-21T22:18:07Z + f1e20484-307f-441f-8da7-6999b39c7a87 + 2023-09-22T03:18:34Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -366,6 +366,12 @@ resource DEED74EA + + schedule_files/occupancy-stochastic_2.csv + csv + resource + 7E648862 + schedule_files/setpoints-10-mins.csv csv diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv new file mode 100644 index 0000000000..a7f8dc95be --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.14 +0.667,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.334,0.334,0.25,0,0,0,0.403,0.692,0.692,0,0,0.119 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.342 +0.667,0.334,0.334,0.5,0,0,0,0.31,0.692,0.692,0,0,0.149 +0.667,0.322,0.322,0.0167,0,0,0,0.319,0.705,0.705,0,0,0.402 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0372 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.223 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.26 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0.5,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.677,0.677,0.05,0,0,0,0.711,0.78,0.78,0,0,0.149 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.334 +1,0.355,0.355,0.783,0,0,0,0.601,0.693,0.693,0,0,0.28 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.162 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.275 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.217 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.168 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.365 +0.667,0.181,0.181,0,0,0.233,0,0.284,0.591,0.591,0,0.295,0.154 +0.667,0.18,0.18,0,0,0.25,0.217,0.302,0.591,0.591,0,0.44,0 +0.667,0.182,0.182,0.25,0,0,0.6,0.316,0.585,0.585,0,0.55,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.479,0.186 +0.333,0.234,0.234,0,0.4,0,0,0.354,0.61,0.61,0.707,0.379,0.0743 +0.667,0.548,0.548,0,0.667,0,0,0.58,0.805,0.805,0,0.287,0.112 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0.65,0,0,0.711,0.78,0.78,0.635,0,0.417 +0.667,0.307,0.307,0,0.15,0,0,0.503,0.604,0.604,0,0,0.112 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.195 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.186 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0.65,0.233,0,0.33,0.579,0.579,0.614,0.494,0.0963 +0.667,0.343,0.343,0.517,0.15,0,0.717,0.3,0.692,0.692,0,0.232,0.121 +0.667,0.334,0.334,0,0,0,0.917,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.149 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.186 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.0841,0.149 +0.333,0.234,0.234,0,0,0.483,0,0.354,0.61,0.61,0,0.448,0.215 +0.667,0.548,0.548,0,0,0,0.817,0.58,0.805,0.805,0,0,0.112 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.335 +0.667,0.677,0.677,0,0.65,0,0,0.711,0.78,0.78,0.792,0,0.0743 +0.667,0.565,0.565,0.767,0.15,0,0,0.748,0.742,0.742,0.143,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.297 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.314 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.448 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.313 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.222 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.264 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.292 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.157 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0.15,0,0,0.316,0.585,0.585,0.458,0,0 +0.333,0.196,0.196,0,0.65,0,0,0.321,0.597,0.597,0.538,0,0.187 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.634,0,0.158 +0.667,0.548,0.548,0.25,0,0,0,0.58,0.805,0.805,0.378,0,0.127 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.223 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.424,0 +1,0.253,0.253,0.517,0,0.25,0.217,0.487,0.617,0.617,0,0.229,0 +1,0.449,0.449,0,0,0,1,0.657,0.787,0.787,0,0,0 +0.333,0.192,0.192,0,0,0,0.417,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.112 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.186 +0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0.186 +0.333,0.18,0.18,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.186 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.105 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.146 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.269 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.347 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.167 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.281 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.52 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.153 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,0.1,0,0.483,0,0.673,0.817,0.817,0,0.613,0.223 +0.667,0.677,0.677,0.917,0,0,0.633,0.711,0.78,0.78,0,0.136,0.0743 +1,0.823,0.823,0.367,0,0,1,0.993,0.88,0.88,0,0,0.08 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.112 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0882 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.19 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.242 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.351 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.184 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0743 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.186 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.1,0,0.186 +0.667,0.669,0.669,0,0.817,0,0,0.673,0.817,0.817,0.438,0,0.149 +0.667,0.677,0.677,0,0.25,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.119 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.206 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.223 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.166 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0502 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.145 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0978 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0887 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.115 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.333,0.196,0.196,0,0,0.717,0,0.321,0.597,0.597,0,0.511,0.149 +0.667,0.418,0.418,0,0,0,0.483,0.449,0.755,0.755,0,0,0.52 +0.667,0.548,0.548,0,0,0,0.867,0.58,0.805,0.805,0,0,0.372 +0.667,0.669,0.669,0,0.4,0,0,0.673,0.817,0.817,0.508,0,0.301 +1,0.991,0.991,0,0.667,0.233,0,0.937,0.937,0.937,0.139,0.635,0 +0.667,0.565,0.565,0,0,0,0.533,0.748,0.742,0.742,0,0.601,0.0372 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.117 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.368 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.221 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.271 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0372 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0.106,0.263 +0.667,0.334,0.334,0,0,0.717,0,0.31,0.692,0.692,0,0.508,0.118 +0.333,0.186,0.186,0,0,0,0.733,0.288,0.585,0.585,0,0.454,0.0372 +0.333,0.181,0.181,0,0,0,0.9,0.284,0.591,0.591,0,0.731,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.633,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.322 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.0173 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.333,0.299,0.299,0,0.15,0,0,0.419,0.635,0.635,0.391,0,0.297 +0.667,0.669,0.669,0,0.65,0,0,0.673,0.817,0.817,0.653,0,0.149 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.173,0,0.149 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.26 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.203 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0697 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.414 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.247 +0.333,0.192,0.192,0.25,0,0,0,0.284,0.579,0.579,0,0,0.163 +0.667,0.322,0.322,0.5,0,0,0,0.319,0.705,0.705,0,0,0.135 +0.667,0.313,0.313,0.0167,0,0,0,0.31,0.717,0.717,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.502,0.0372 +0.667,0.343,0.343,0,0,0,0.967,0.384,0.73,0.73,0,0,0.0372 +1,0.602,0.602,0,0,0,0.117,0.545,0.899,0.899,0,0,0.149 +0.667,0.548,0.548,0.25,0,0,0,0.58,0.805,0.805,0,0,0.149 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0,0.483,0,0.711,0.78,0.78,0,0.124,0.315 +1,0.565,0.565,0,0,0,0.267,0.748,0.742,0.742,0,0,0.112 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.535 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.111 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.194 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.118 +0.333,0.183,0.183,0.517,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.297 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0372 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.112 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.204,0,0.0372 +1,0.979,0.979,0,0.8,0,0,0.881,0.993,0.993,0.753,0,0.149 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.149 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.267 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0532,0.0532,0,0,0,0,0.394,0.555,0.555,0,0,0.268 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.324 +1,0.151,0.151,0.25,0,0,0,0.372,0.541,0.541,0,0,0.133 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.228 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.421 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.403 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.132 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.158 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.224 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.43 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0.243,0,0.497 +0.667,0.548,0.548,0,0.9,0,0,0.58,0.805,0.805,0.481,0,0.52 +0.667,0.669,0.669,0,0.45,0,0,0.673,0.817,0.817,0,0,0.113 +0.333,0.363,0.363,0,0,0.233,0,0.484,0.622,0.622,0,0.382,0.112 +0.333,0.307,0.307,0,0,0,0.533,0.503,0.604,0.604,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0867 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0347 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.0532,0.0532,0.917,0,0,0,0.394,0.555,0.555,0,0,0.222 +1,0.117,0.117,0.633,0,0,0,0.422,0.567,0.567,0,0,0.199 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.0797 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.111 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.438 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.483 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.394 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.34 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.216 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.167,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.196,0.196,0.0833,0,0,0,0.321,0.597,0.597,0,0,0.335 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0743 +0.667,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.0743 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0.0749,0.0372 +0.667,0.363,0.363,0,0,0.717,0,0.484,0.622,0.622,0,0.56,0.0743 +0.667,0.565,0.565,0,0,0,0.267,0.748,0.742,0.742,0,0.131,0.0791 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.049 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.343,0.343,0.35,0.567,0,0,0.3,0.692,0.692,0.798,0,0 +1,0.477,0.477,0,0.233,0,0,0.336,0.806,0.806,0.15,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.0743 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0372 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0.0724,0,0.0743 +0.667,0.315,0.315,0,0.817,0,0,0.375,0.705,0.705,0.896,0,0.223 +0.667,0.343,0.343,0,0.25,0,0,0.384,0.73,0.73,0,0,0.0372 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.112 +0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,0.1,0,0,0,0.673,0.817,0.817,0,0,0.335 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0743 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.149 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.26 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.216 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.128,0 +0.667,0.186,0.186,0,0,0.483,0,0.288,0.585,0.585,0,0.839,0.223 +0.333,0.181,0.181,0,0,0,0.533,0.284,0.591,0.591,0,0.651,0.223 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.595,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.524,0.0372 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.396,0.0372 +0.333,0.234,0.234,0.25,0,0,0,0.354,0.61,0.61,0,0.538,0.367 +0.667,0.548,0.548,0,0.65,0,0,0.58,0.805,0.805,0.796,0.131,0.26 +0.667,0.669,0.669,0.5,0.417,0,0,0.673,0.817,0.817,0,0,0.446 +0.333,0.363,0.363,0.783,0,0,0,0.484,0.622,0.622,0,0,0.0372 +0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0.15,0,0,0.284,0.591,0.591,0.292,0,0 +0.667,0.311,0.311,0.517,0.917,0,0,0.347,0.717,0.717,0.483,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.112 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.297 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.297 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.186 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0743 +1,0.565,0.565,0,0,0.233,0,0.748,0.742,0.742,0,0.202,0.112 +1,0.43,0.43,0,0,0,0.717,0.729,0.717,0.717,0,0,0.0743 +1,0.212,0.212,0,0,0,0.917,0.447,0.56,0.56,0,0,0.186 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.149 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.267 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.126 +0.667,0.183,0.183,0.267,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0.106,0.25 +0.667,0.322,0.322,0,0,0.483,0,0.319,0.705,0.705,0,0,0.0999 +0.333,0.181,0.181,0,0,0,0.967,0.284,0.591,0.591,0,0,0.0372 +0.333,0.18,0.18,0,0,0,0.667,0.302,0.591,0.591,0,0,0.149 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.186 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0.167,0,0 +0.333,0.0495,0.0495,0,0.8,0,0,0.258,0.465,0.465,0.555,0,0.0743 +0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0372 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.207 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0.3,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.0743 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.347 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.199 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.186 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0.333,0.182,0.182,0,0,0.233,0,0.316,0.585,0.585,0,0.364,0.149 +0.333,0.196,0.196,0,0,0,0.467,0.321,0.597,0.597,0,0.321,0 +0.333,0.234,0.234,0,0,0,0.617,0.354,0.61,0.61,0,0,0.186 +0.333,0.299,0.299,0.25,0,0,0,0.419,0.635,0.635,0.176,0,0.112 +0.667,0.669,0.669,0,0.9,0,0,0.673,0.817,0.817,0.675,0,0.112 +0.667,0.677,0.677,0,0.167,0,0,0.711,0.78,0.78,0.646,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0.25,0,0,0,0.487,0.617,0.617,0,0,0.158 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.132 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.193 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.613 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.183 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.166 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.099 +0.667,0.548,0.548,0.5,0,0,0,0.58,0.805,0.805,0,0,0.149 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.112 +0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.149 +0.667,0.565,0.565,0.6,0,0,0,0.748,0.742,0.742,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.207 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.178 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.175 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.108 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.0793 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.134 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.154 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.26 +0.333,0.18,0.18,0,0.0667,0,0,0.302,0.591,0.591,0.364,0,0.223 +0.333,0.182,0.182,0,0.733,0,0,0.316,0.585,0.585,0.74,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0.529,0,0 +0.333,0.234,0.234,0.417,0,0,0,0.354,0.61,0.61,0.455,0,0.186 +0.667,0.548,0.548,0.35,0,0,0,0.58,0.805,0.805,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0.137,0,0.149 +0.333,0.363,0.363,0,0.533,0,0,0.484,0.622,0.622,0.616,0,0.112 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0.499,0,0.112 +0.667,0.43,0.43,0,0.567,0,0,0.729,0.717,0.717,0.79,0,0.186 +1,0.374,0.374,0,0.233,0,0,0.636,0.655,0.655,0,0,0.186 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.149 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.316,0.316,0.1,0,0.15,0,0.524,0.68,0.68,0,0.193,0 +1,0.334,0.334,0,0,1,0,0.403,0.692,0.692,0,0.324,0 +1,0.343,0.343,0.417,0,0.533,0,0.3,0.692,0.692,0,0.402,0.272 +1,0.477,0.477,1,0,0,0.933,0.336,0.806,0.806,0,0,0.259 +1,0.458,0.458,0.133,0,0,0.967,0.35,0.824,0.824,0,0.301,0.534 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.00459,0.261 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.175 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.283 +0.333,0.234,0.234,0.517,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.268 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0743 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.16 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.498 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.186 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.188 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.386 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0.25,0,0,0,0.279,0.579,0.579,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0887,0.0743 +0,0.0495,0.0495,0,0,0.717,0,0.258,0.465,0.465,0,0.369,0.112 +0.333,0.18,0.18,0,0,0,0.733,0.302,0.591,0.591,0,0.723,0 +0.667,0.315,0.315,0.25,0,0,0.0833,0.375,0.705,0.705,0,0.0917,0 +0.667,0.343,0.343,0.267,0,0,0,0.384,0.73,0.73,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.26 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.249 +0.667,0.677,0.677,0.0333,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.223 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0657,0 +1,0.0833,0.0833,0,0,0.483,0,0.34,0.516,0.516,0,0.413,0.257 +1,0.253,0.253,0,0,0,0.817,0.487,0.617,0.617,0,0,0.22 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0998 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.177 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0.733,0,0.31,0.692,0.692,0,0.731,0 +0.333,0.186,0.186,0,0,0.233,0.233,0.288,0.585,0.585,0,0.401,0.0372 +0.333,0.181,0.181,0,0,0,0.85,0.284,0.591,0.591,0,0.492,0.112 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.719,0.112 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.763,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.402,0 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0.573,0.112 +0.667,0.548,0.548,0.0333,0,0,0,0.58,0.805,0.805,0,0,0.0372 +0.667,0.669,0.669,0,0.267,0,0,0.673,0.817,0.817,0.616,0,0.0743 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.753,0,0.112 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.245,0,0.0743 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.25,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0833,0.0833,0.517,0,0,0,0.34,0.516,0.516,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.196,0.196,0.783,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0.25,0,0.483,0,0.284,0.591,0.591,0,0.0352,0.186 +0.667,0.311,0.311,0,0,0.483,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0.983,0.375,0.705,0.705,0,0,0 +1,0.49,0.49,0,0,0,0.65,0.447,0.862,0.862,0,0,0.0372 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.259 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.26 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.174 +0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.311 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.238 +0.667,0.212,0.212,0.5,0,0,0,0.447,0.56,0.56,0,0,0.112 +1,0.116,0.116,0.0167,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0.25,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.188 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0743 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.161 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.321 +0.667,0.311,0.311,0.25,0,0,0,0.347,0.717,0.717,0,0,0.517 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.246 +0.667,0.343,0.343,0.5,0,0,0,0.384,0.73,0.73,0,0,0.16 +0.667,0.234,0.234,0.267,0,0,0,0.354,0.61,0.61,0,0,0.117 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0372 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.132 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.381 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.212 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0372 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0.483,0,0.288,0.585,0.585,0,0.537,0.112 +0.333,0.181,0.181,0,0,0.233,0.233,0.284,0.591,0.591,0,0.752,0 +0.333,0.18,0.18,0,0,0,1,0.302,0.591,0.591,0,0.307,0 +0.667,0.315,0.315,0,0,0,0.4,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0.25,0,0,0,0.384,0.73,0.73,0,0,0.0743 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.149 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.409 +0.667,0.669,0.669,0.517,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.241 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.263 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.317 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.238 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.205 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0.15,0,0.33,0.579,0.579,0,0.393,0 +0.667,0.196,0.196,0,0,0.567,0,0.279,0.579,0.579,0,0.466,0 +0.667,0.192,0.192,0,0,0,0.533,0.284,0.579,0.579,0,0.674,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.538,0.194 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.227 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0743 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.372 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.222 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.0875 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.211 +0.667,0.183,0.183,0.917,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.322,0.322,0.167,0,0,0,0.319,0.705,0.705,0,0.106,0 +0.333,0.181,0.181,0.0833,0,0.717,0,0.284,0.591,0.591,0,0.621,0 +0.667,0.311,0.311,0,0,0,0.65,0.347,0.717,0.717,0,0.775,0 +0.667,0.315,0.315,0,0,0,0.7,0.375,0.705,0.705,0,0.335,0.186 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.297 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.186 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.112 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0743 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.297 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.274 +1,0.183,0.183,0.25,0.4,0,0,0.391,0.572,0.572,0.536,0,0 +1,0.192,0.192,0,0.4,0,0,0.33,0.579,0.579,0.531,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0.558,0,0.0372 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0.655,0,0.112 +1,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.186 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.294 +0.667,0.315,0.315,0,0,0.733,0,0.375,0.705,0.705,0,0.384,0.192 +0.667,0.343,0.343,0,0,0.95,0,0.384,0.73,0.73,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0.517,0.449,0.755,0.755,0,0,0.149 +0.667,0.548,0.548,0,0,0,0.833,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.0951 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.492 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0.25,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0.283,0,0,0,0.391,0.572,0.572,0,0,0.162 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0827 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.148 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.149 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.186 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.186 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.419 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.149 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0744 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.162 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0928 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.149 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.307,0.307,0.5,0,0,0,0.503,0.604,0.604,0,0,0.284 +0.667,0.43,0.43,0.0167,0,0,0,0.729,0.717,0.717,0,0,0.124 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.464 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0458 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.45,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0.05,0,0,0,0.374,0.543,0.543,0,0,0.228 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.258 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.142 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.149 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.223 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.372 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.112 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.226 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.158 +1,0.442,0.442,0.95,0,0,0,0.64,0.658,0.658,0,0,0.0372 +1,0.183,0.183,0.583,0,0,0,0.555,0.608,0.608,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.122 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.438 +0.667,0.181,0.181,0.25,0,0,0,0.392,0.574,0.574,0,0,0.166 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.518 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.19 +0.667,0.328,0.328,0.2,0,0,0,0.311,0.696,0.696,0,0,0.252 +0.667,0.316,0.316,0.567,0,0,0,0.321,0.709,0.709,0,0,0.173 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0743 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.335 +0.333,0.322,0.322,0.25,0,0,0,0.468,0.644,0.644,0,0,0.112 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0372 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.207 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.192 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.303 +0.333,0.193,0.193,0.383,0,0,0,0.28,0.581,0.581,0,0,0.154 +0.333,0.189,0.189,0.117,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0.117,0,0.289,0.587,0.587,0,0.22,0.0372 +0.333,0.178,0.178,0,0,0.383,0.0833,0.284,0.593,0.593,0,0.494,0.186 +0.333,0.177,0.177,0,0,0,0.167,0.303,0.593,0.593,0,0.453,0.0372 +0.333,0.178,0.178,0.25,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.112 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0743 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0372 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.149 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.297 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.149 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.313,0.313,0.883,0,0,0,0.527,0.683,0.683,0,0,0.297 +0.667,0.33,0.33,0.383,0,0,0,0.405,0.696,0.696,0,0,0.114 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0372 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0372 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.112 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0743 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.294 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.318 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.284 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.438 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0372 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.139 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.247 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.549 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.288 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0743 +0.667,0.307,0.307,0,0.6,0,0,0.311,0.721,0.721,0.839,0,0.223 +0.333,0.0495,0.0495,0,0.45,0,0,0.258,0.465,0.465,0.0965,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.143,0,0.223 +0.333,0.0495,0.0495,0.2,0.783,0,0,0.258,0.465,0.465,0.594,0,0.223 +0.667,0.322,0.322,0.3,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0743 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0743 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0867 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.26 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.195 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.354 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.349 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0692 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.227 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.125 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.186 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.149 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0743 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.223 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.108 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.158 +0.333,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.309 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.306 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.223 +0.667,0.313,0.313,0.5,0,0,0,0.527,0.683,0.683,0,0,0.149 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.511 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.417 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.372 +0.667,0.316,0.316,0.25,0,0,0,0.321,0.709,0.709,0,0,0.112 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0372 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.219 +0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.0743 +0.667,0.466,0.466,0.2,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0.05,0,0,0,0.677,0.822,0.822,0,0,0.149 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.0743 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.231 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.186 +0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.2,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0.567,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.168 +0.667,0.307,0.307,0,0,0.25,0,0.377,0.709,0.709,0,0.219,0.296 +0.667,0.322,0.322,0,0,0,0.65,0.386,0.734,0.734,0,0.722,0.116 +0.667,0.367,0.367,0,0,0,0.917,0.452,0.759,0.759,0,0.569,0.284 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.424,0.107 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.318,0.0743 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.149 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.187 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.188 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0511 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.291 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.275 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.281 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.335 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.0743 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.112 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0489 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.463 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0466 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0847 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.187 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0.383,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.667,0.307,0.307,0.117,0,0,0,0.311,0.721,0.721,0,0,0.112 +0.667,0.305,0.305,0.25,0,0,0,0.349,0.721,0.721,0,0,0.186 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.112 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0372 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.0743 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.297 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.112 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0743 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0829,0.0829,0.817,0,0,0,0.341,0.518,0.518,0,0,0.112 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.352 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.236 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.124 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0743 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.67,0.67,0.05,0,0,0,0.715,0.784,0.784,0,0,0.112 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0172 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.186 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0743 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.0743 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.223 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.149 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0.35,0.433,0,0.303,0.593,0.593,0.503,0.373,0.112 +0.333,0.178,0.178,0,0.433,0.0667,0.25,0.317,0.587,0.587,0,0.472,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.569,0.0372 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0.112 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0372 +0.667,0.595,0.595,0.45,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0.05,0,0,0,0.715,0.784,0.784,0,0,0.112 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0372 +0.667,0.501,0.501,0,0,0.25,0,0.734,0.721,0.721,0,0.0627,0.348 +1,0.442,0.442,0,0,0,0.65,0.64,0.658,0.658,0,0,0.318 +1,0.0495,0.0495,0,0,0,0.667,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.38 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.202 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.389 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.452 +1,0.337,0.337,0.2,0,0,0,0.302,0.696,0.696,0,0,0.377 +0.667,0.328,0.328,0.3,0,0,0,0.311,0.696,0.696,0,0,0.149 +0.333,0.183,0.183,0.2,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.667,0.307,0.307,0.567,0,0,0,0.311,0.721,0.721,0,0,0.0372 +0.667,0.305,0.305,0.2,0,0,0,0.349,0.721,0.721,0,0,0.0372 +0.333,0.178,0.178,0.3,0,0,0,0.317,0.587,0.587,0,0,0.297 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.112 +0.333,0.258,0.258,0.767,0,0,0,0.421,0.637,0.637,0,0,0.399 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0992 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.171 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.173 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0.25,0,0,0,0.49,0.621,0.621,0,0,0.149 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.254 +0.333,0.189,0.189,0.2,0,0,0,0.284,0.581,0.581,0,0,0.0743 +0.333,0.183,0.183,1,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.333,0.178,0.178,1,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0.0372 +0.333,0.178,0.178,0.133,0,0,0,0.317,0.587,0.587,0,0,0.112 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0372 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.294 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.387 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.185 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.404 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.302 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.3,0,0,0,0.374,0.543,0.543,0,0,0.118 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.111 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.124 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.149 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.186 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.26 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.112 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.26 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.223 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.116 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.223 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.112 +0.667,0.322,0.322,0.25,0,0,0,0.386,0.734,0.734,0,0,0.0372 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.223 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.223 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0743 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.147,0,0.0743 +0.667,0.625,0.625,0,0.783,0,0,0.753,0.746,0.746,0.401,0,0.0743 +0.667,0.501,0.501,0,0.267,0,0,0.734,0.721,0.721,0,0,0.0372 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.157 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.107 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.306 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.105 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.57 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.424 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.383 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.185 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.0743 +0.333,0.36,0.36,0.767,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0823 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.213 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.244 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.151 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.112 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.368 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.225 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.124 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0.1,0,0,0.258,0.465,0.465,0.306,0,0.186 +1,0.526,0.526,0,0.95,0,0,0.549,0.906,0.906,0.724,0,0.0372 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.49,0,0.0743 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0743 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.112 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.412 +0.667,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0513,0.0513,0.25,0,0,0,0.327,0.511,0.511,0,0,0.201 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.195 +1,0.351,0.351,0,0,0.25,0,0.606,0.698,0.698,0,0.398,0.347 +1,0.444,0.444,0,0,0,0.65,0.662,0.792,0.792,0,0.534,0.0718 +0.333,0.19,0.19,0,0,0,0.667,0.331,0.581,0.581,0,0.728,0.112 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.748,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.338,0.0372 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.616,0.0743 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.714,0.0852 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.578,0.0743 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.433,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.217 +0.333,0.258,0.258,0.3,0,0,0,0.421,0.637,0.637,0,0,0.223 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.0743 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.165 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.537 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0867 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0978 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.454 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.161 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.273 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.228 +0.333,0.178,0.178,0.2,0.6,0.183,0,0.284,0.593,0.593,0.848,0.295,0.112 +0.667,0.305,0.305,0.05,0.183,0.0667,0.25,0.349,0.721,0.721,0,0.599,0.0767 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.208 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.149 +0.667,0.367,0.367,0.45,0,0,0,0.452,0.759,0.759,0,0,0.112 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0.0372 +0.667,0.595,0.595,0.0833,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.46 +0.667,0.625,0.625,0,0,0.25,0,0.753,0.746,0.746,0,0.0841,0.0372 +1,0.727,0.727,0,0,0,0.65,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0.917,0.831,0.755,0.755,0,0,0.295 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.389 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.108 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.328 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.683,0,0.258,0.465,0.465,0,0.462,0.0743 +0.333,0.186,0.186,0,0,1,0,0.322,0.6,0.6,0,0.737,0.26 +0.333,0.208,0.208,0,0,0.0833,0.25,0.355,0.612,0.612,0,0.576,0 +0.333,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0.378,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0372 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0743 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.305 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.284 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.234 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.48 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.1 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.249 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.372 +0.333,0.186,0.186,0.25,0,0,0,0.322,0.6,0.6,0,0,0.112 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0.5,0,0.421,0.637,0.637,0,0.687,0.0372 +0.333,0.322,0.322,0,0,0,0.25,0.468,0.644,0.644,0,0.453,0.483 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0.474,0.297 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0.336,0.149 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0.43,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0525 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.258 +1,0.099,0.099,0.5,0,0.367,0,0.461,0.595,0.595,0,0.353,0.0642 +1,0.066,0.066,0,0,0.383,0.0833,0.433,0.57,0.57,0,0.656,0 +1,0.0495,0.0495,0,0,0,1,0.346,0.511,0.511,0,0.131,0 +1,0.0495,0.0495,0,0,0,0.483,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0.383,0,0,0,0.341,0.518,0.518,0,0,0.223 +1,0.15,0.15,0.117,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.183 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.329 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.109 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.0965,0,0.0743 +0.667,0.466,0.466,0,0.783,0,0,0.584,0.809,0.809,0.764,0,0 +0.667,0.595,0.595,0,0.267,0,0,0.677,0.822,0.822,0,0,0.112 +0.333,0.36,0.36,0.633,0,0,0,0.486,0.625,0.625,0,0,0.169 +1,0.913,0.913,0.383,0,0,0,1,0.887,0.887,0,0,0.215 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.197 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.206 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.133 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0516 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.281 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.174 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.536 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.138 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.37 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.428 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.646 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.187 +0.667,0.186,0.186,0.383,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0.667,0.208,0.208,0.117,0,0,0,0.355,0.612,0.612,0,0.164,0.0372 +0.667,0.466,0.466,0,0,0.25,0.0833,0.584,0.809,0.809,0,0.37,0.0372 +0.667,0.595,0.595,0,0,0,0.167,0.677,0.822,0.822,0,0,0.112 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.1,0,0 +0.667,0.625,0.625,0,0.783,0,0,0.753,0.746,0.746,0.822,0,0.0372 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0.59,0,0.186 +0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0.772,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.536,0.208,0 +0.667,0.0743,0.0743,0,0,0.567,0,0.36,0.53,0.53,0,0.494,0.0372 +0.667,0.0578,0.0578,0,0,0,0.783,0.346,0.518,0.518,0,0.344,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0.778,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0.528,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.28 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.149 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.223 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.26 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0743 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.186 +1,0.246,0.246,0.5,0,0,0,0.449,0.562,0.562,0,0,0.0372 +1,0.116,0.116,0,0,0.183,0,0.407,0.537,0.537,0,0.265,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0.35,0,0,0.258,0.465,0.465,0.163,0,0.147 +1,0.313,0.313,0,0.7,0,0,0.527,0.683,0.683,0,0,0.16 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.112 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.186 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0.25,0,0,0,0.377,0.709,0.709,0,0,0.196 +0.667,0.322,0.322,0,0.6,0,0,0.386,0.734,0.734,0.842,0,0.0743 +0.667,0.367,0.367,0,0.183,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.149 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.112 +0.667,0.67,0.67,0,0.1,0,0,0.715,0.784,0.784,0.312,0,0.0372 +1,0.913,0.913,0,0.95,0,0,1,0.887,0.887,0.601,0,0.0376 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0683 +1,0.15,0.15,0.45,0,0,0,0.374,0.543,0.543,0,0,0.159 +1,0.181,0.181,0.317,0,0,0,0.392,0.574,0.574,0,0,0.145 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.556 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.231 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.418 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.109 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.26 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0372 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.16 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.195 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.226 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.238 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.29 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.223 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.113 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0743 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.477 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.36 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.328 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.411 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.546 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.295 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.534 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.385 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.128,0,0.0372 +1,0.426,0.426,0,0.9,0,0,0.278,0.656,0.656,0.573,0,0.0372 +0.667,0.292,0.292,0,0.117,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.149 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.149 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.202 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.407 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.339 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.446 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0.233,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.0743 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0941 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.304 +0.667,0.312,0.312,0.333,0,0,0,0.264,0.582,0.582,0,0,0.0884 +0.667,0.3,0.3,0.15,0,0,0,0.271,0.592,0.592,0,0,0.132 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.153 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.584 +0.333,0.17,0.17,0,0.233,0,0,0.287,0.529,0.529,0.583,0,0.124 +0.667,0.298,0.298,0,0.533,0,0,0.323,0.612,0.612,0.692,0,0.26 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.43,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.331,0.331,0.0833,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.635,0.635,0.4,0,0,0,0.613,0.622,0.622,0,0,0.15 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0743 +0.667,0.185,0.185,0.0833,0,0,0,0.257,0.524,0.524,0,0,0.163 +0.667,0.312,0.312,0.15,0,0,0,0.264,0.582,0.582,0,0,0.0721 +1,0.426,0.426,0.483,0,0,0,0.278,0.656,0.656,0,0,0.217 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0546 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.364 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.26 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0372 +1,0.326,0.326,0.0833,0,0,0,0.375,0.632,0.632,0,0,0.292 +1,0.395,0.395,0.633,0,0,0,0.479,0.672,0.672,0,0,0.193 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.149 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.149 +0.667,0.635,0.635,0,0.733,0,0,0.613,0.622,0.622,0.774,0,0.262 +0.667,0.555,0.555,0,0.0333,0,0,0.598,0.602,0.602,0,0,0.0773 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.335 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.252 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.116 +0.333,0.177,0.177,0.967,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.149 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.138 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.583 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.336 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.159 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.113 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.145 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.315 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.274 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.169,0.169,0.75,0,0,0,0.276,0.534,0.534,0,0,0.0372 +1,0.41,0.41,0.217,0,0,0,0.345,0.656,0.656,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0743 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.186 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.313 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.266 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.494 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.401 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.239 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0706 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.187 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.137 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.26 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.254 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.194 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.172 +0.333,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.176,0.0743 +0.667,0.289,0.289,0.233,0,0.25,0.217,0.294,0.602,0.602,0,0.619,0.0743 +1,0.41,0.41,0,0,0,1,0.345,0.656,0.656,0,0.638,0.48 +1,0.422,0.422,0,0,0,0.333,0.356,0.686,0.686,0,0.615,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.437,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.463,0.186 +0.667,0.507,0.507,0.25,0,0,0,0.553,0.682,0.682,0,0.00917,0 +0.667,0.613,0.613,0.233,0,0,0,0.583,0.652,0.652,0.148,0,0.223 +0.667,0.635,0.635,0,0.9,0,0,0.613,0.622,0.622,0.538,0,0.112 +0.667,0.555,0.555,0,0.117,0,0,0.598,0.602,0.602,0,0,0.0743 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0654 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0.483,0,0.233,0,0.331,0.494,0.494,0,0.411,0 +0.667,0.305,0.305,0,0,0,0.967,0.435,0.572,0.572,0,0.339,0.32 +0.667,0.318,0.318,0,0,0,0.583,0.338,0.582,0.582,0,0.106,0.174 +0.333,0.185,0.185,0,0,0.233,0,0.257,0.524,0.524,0,0.489,0.334 +0.333,0.181,0.181,0,0,0,0.25,0.261,0.524,0.524,0,0.56,0.0743 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.537,0.149 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.664,0.0743 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.567,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.131,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.343 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.112 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.186 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.149 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.149 +0.333,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.117 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0.483,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.278,0 +0.333,0.181,0.181,0,0,1,0,0.261,0.524,0.524,0,0.384,0.0372 +0.333,0.175,0.175,0,0,0,0.467,0.265,0.529,0.529,0,0.339,0 +0.333,0.171,0.171,0,0,0,0.05,0.261,0.534,0.534,0,0.347,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.174,0.174,0.233,0,0,0,0.29,0.539,0.539,0,0,0.297 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0.15,0,0,0.553,0.682,0.682,0.393,0,0.112 +0.333,0.331,0.331,0,0.35,0,0,0.42,0.559,0.559,0.382,0,0.149 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.125 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.301 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0858 +0.667,0.185,0.185,0.333,0,0,0,0.257,0.524,0.524,0,0,0.255 +0.333,0.181,0.181,0.15,0,0,0,0.261,0.524,0.524,0,0,0.0168 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.224 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0496 +0.333,0.169,0.169,0.0833,0.233,0,0,0.276,0.534,0.534,0.419,0,0.305 +0.667,0.17,0.17,0.4,0.533,0,0,0.287,0.529,0.529,0.165,0,0.0743 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.112 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.26 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.149 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.176 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.667,0.635,0.635,0.333,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.555,0.555,0.15,0,0,0,0.598,0.602,0.602,0,0,0.07 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.171 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.248 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.154 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.279 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.316 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.302 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.248 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.14 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.552 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.174,0.174,0.4,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.38 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0897 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.186 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0743 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0372 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.149 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.196 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.408 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.193 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.311 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.26 +0.667,0.395,0.395,0.717,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.613,0.613,0,0,0.233,0,0.583,0.652,0.652,0,0.318,0.0372 +0.667,0.635,0.635,0,0,0.75,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.555,0.555,0,0,0,0.717,0.598,0.602,0.602,0,0,0.0372 +0.667,0.2,0.2,0,0,0,0.317,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0983 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.145 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.383 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.614 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.141 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.169 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.272 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.313 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.131 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.227 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.226 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.219 +1,0.895,0.895,0.967,0,0,0,0.745,0.745,0.745,0,0,0.309 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.175 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.713 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0.233,0,0,0,0.305,0.464,0.464,0,0,0.132 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.28 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.115 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.312,0.312,0.483,0,0,0,0.264,0.582,0.582,0,0,0.26 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.149 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.19 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.456 +0.333,0.17,0.17,0.233,0,0,0,0.287,0.529,0.529,0,0,0.148 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.297 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.1 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.278,0.278,0,0.4,0,0,0.405,0.574,0.574,0.599,0,0 +0.333,0.331,0.331,0,0.367,0,0,0.42,0.559,0.559,0.139,0,0.112 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.406 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.312 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.108 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.162 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.249 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.215 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.112 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.158,0,0 +0.333,0.171,0.171,0,0.9,0,0,0.261,0.534,0.534,0.473,0,0.223 +0.333,0.169,0.169,0.233,0.117,0,0,0.276,0.534,0.534,0,0,0.112 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.112 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0743 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.279 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.259 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.158 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.313 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0934 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.232 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.223 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0.483,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.308 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.372 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.149 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.125 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.223 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.238 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.148 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.249 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.07 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.0372 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.149 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0743 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.128 +0.333,0.188,0.188,0.333,0,0,0,0.316,0.549,0.549,0,0,0.233 +0.667,0.395,0.395,0.15,0,0,0,0.479,0.672,0.672,0,0,0.511 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.409 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.635,0.635,0,0.233,0.483,0,0.613,0.622,0.622,0.356,0.427,0.372 +1,0.807,0.807,0,0.783,0,0.8,0.768,0.671,0.671,0.607,0,0.268 +1,0.5,0.5,0,0,0,0.233,0.656,0.596,0.596,1,0,0.142 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.406,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0954 +1,0.318,0.318,0,0,0.567,0,0.338,0.582,0.582,0,0.0612,0.1 +0.667,0.321,0.321,0,0,0.167,0.3,0.257,0.582,0.582,0,0,0.168 +0.333,0.181,0.181,0,0,0,1,0.261,0.524,0.524,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0.25,0.258,0.465,0.465,0,0,0.186 +0.333,0.171,0.171,0,0,0.0667,0,0.261,0.534,0.534,0,0.0489,0.0372 +0.333,0.169,0.169,0,0,0.417,0.05,0.276,0.534,0.534,0,0.55,0.0372 +0.333,0.17,0.17,0,0,0,0.2,0.287,0.529,0.529,0,0.404,0.195 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.555,0.312 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.569,0.431 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.609,0.0776 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.3,0.332 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.283,0.505 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.297 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0743 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.274 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0983 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.283 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.126 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0633 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.297 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.326,0.326,0.5,0,0,0,0.375,0.632,0.632,0,0,0.328 +0.333,0.222,0.222,0.467,0,0,0,0.368,0.569,0.569,0,0,0.0372 +0.333,0.278,0.278,0.75,0,0,0,0.405,0.574,0.574,0,0,0.112 +0.667,0.613,0.613,0.217,0,0,0,0.583,0.652,0.652,0,0,0.297 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.157 +0.333,0.177,0.177,0.233,0,0,0,0.346,0.519,0.519,0,0,0.118 +0.333,0.184,0.184,0.717,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0743 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.112 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.181 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.387 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.333,0.188,0.188,0.483,0,0,0,0.316,0.549,0.549,0,0,0.335 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0372 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.149 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.361 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.305,0.464,0.464,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.28 +0.667,0.318,0.318,0.483,0,0,0,0.338,0.582,0.582,0,0,0.252 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0531 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.223 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0372 +0.667,0.395,0.395,0.483,0,0,0,0.479,0.672,0.672,0,0,0.149 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0743 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.112 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.41 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0969 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.319 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.306 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.206 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.372 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.16 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.171 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.12 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.122,0,0.347 +0.667,0.395,0.395,0,0.9,0,0,0.479,0.672,0.672,0.751,0,0.571 +0.667,0.507,0.507,0,0.117,0,0,0.553,0.682,0.682,0.72,0,0.0744 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.475,0,0.0372 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.724,0,0.223 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0.724,0,0 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.288,0,0.13 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.332 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0855 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0.233,0,0,0,0.405,0.523,0.523,0,0,0.266 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.264 +1,0.318,0.318,0,0.15,0,0,0.338,0.582,0.582,0.419,0,0.0925 +1,0.456,0.456,0,0.35,0,0,0.256,0.641,0.641,0.57,0,0.096 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.162 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0.117,0,0.186 +0.667,0.289,0.289,0,0.9,0,0,0.294,0.602,0.602,0.577,0,0.186 +0.667,0.29,0.29,0,0.117,0,0,0.316,0.592,0.592,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.149 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.149 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.25 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0738 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.255 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.257 +1,0.35,0.35,0.233,0,0,0,0.524,0.553,0.553,0,0,0.149 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.112 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.0372 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.181 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.157 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0.258,0,0 +0.333,0.169,0.169,0,0.983,0,0,0.276,0.534,0.534,0.455,0,0.112 +0.333,0.17,0.17,0.233,0.0333,0,0,0.287,0.529,0.529,0.885,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0.18,0,0.0372 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.0743 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.223 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.149 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.26 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.0372 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.131 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.427 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.323 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.237 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.127 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.485 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.19 +1,0.567,0.567,0.333,0,0,0,0.59,0.775,0.775,0,0,0.186 +0.667,0.507,0.507,0.383,0,0,0,0.553,0.682,0.682,0,0,0.296 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.335 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0712 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.16 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.016 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0.483,0,0,0,0.346,0.519,0.519,0,0,0.0832 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.112 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.186 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0.733,0,0.29,0.539,0.539,0,0.457,0 +0.667,0.326,0.326,0,0,0,0.467,0.375,0.632,0.632,0,0.445,0.0372 +0.667,0.395,0.395,0,0.4,0,0.05,0.479,0.672,0.672,0.737,0.0352,0.297 +0.667,0.507,0.507,0.233,0.617,0,0,0.553,0.682,0.682,0.777,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.282,0,0.26 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.26 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0.483,0,0.305,0.474,0.474,0,0.462,0.17 +1,0.147,0.147,0,0,0,0.717,0.331,0.494,0.494,0,0.483,0.473 +0.667,0.305,0.305,0,0,0,0.317,0.435,0.572,0.572,0,0.595,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0.304,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.347,0.26 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.102 +0.667,0.292,0.292,0,0,0.233,0,0.264,0.602,0.602,0,0.488,0.0743 +0.333,0.169,0.169,0,0,0,0.517,0.276,0.534,0.534,0,0.815,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.445,0.26 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.186 +0.667,0.395,0.395,0.233,0.4,0,0,0.479,0.672,0.672,0.473,0,0.166 +0.667,0.278,0.278,0,0.367,0,0,0.405,0.574,0.574,0.0909,0,0.462 +1,0.895,0.895,0,0,0.483,0,0.745,0.745,0.745,0,0.206,0.419 +1,0.928,0.928,0,0,0,0.717,0.79,0.701,0.701,0,0,0.314 +1,0.555,0.555,0,0,0,0.05,0.598,0.602,0.602,0,0,0.075 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.119 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0858 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0846 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.149 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.112 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.276 +0.667,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.202 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0,0.181 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.368 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0648 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.051,0.051,0.483,0,0,0,0.294,0.469,0.469,0,0,0.318 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.138 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.326,0.326,0.5,0,0,0,0.375,0.632,0.632,0,0,0.327 +0.667,0.395,0.395,0.217,0,0,0,0.479,0.672,0.672,0,0,0.0372 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0743 +1,0.895,0.895,0.233,0,0,0,0.745,0.745,0.745,0,0,0.0372 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.149 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.309 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.131 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.0893 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.195 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.112 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.149 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.26 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.112 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.26 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.231 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.195 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.356 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0.333,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.321,0.321,0.15,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0372 +1,0.426,0.426,0,0,0.233,0,0.278,0.656,0.656,0,0.479,0.254 +0.333,0.171,0.171,0,0,0,0.517,0.261,0.534,0.534,0,0.312,0.112 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.317,0.372 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.0887,0.223 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.223 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.415 +0.333,0.331,0.331,0.233,0,0,0,0.42,0.559,0.559,0,0,0.338 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.326 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.247 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.063 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.44 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0978 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0729 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +1,0.274,0.274,0.467,0,0,0,0.374,0.63,0.63,0,0,0.223 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.112 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0743 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.26 +1,0.783,0.783,0,0.2,0,0,0.787,0.698,0.698,0.451,0,0 +1,0.88,0.88,0,0.783,0,0,0.765,0.668,0.668,0.759,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.79,0,0.478 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0.618,0,0.236 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.453,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0.5,0,0,0,0.331,0.493,0.493,0,0,0.158 +1,0.417,0.417,0.2,0,0,0,0.521,0.623,0.623,0,0,0.41 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.167 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.19 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.215 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.159,0.159,0,0,0.25,0,0.275,0.533,0.533,0,0.401,0.0743 +0.333,0.159,0.159,0,0,0,0.7,0.286,0.528,0.528,0,0.277,0 +0.333,0.159,0.159,0,0,0,0.783,0.29,0.538,0.538,0,0.416,0.0651 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0.401,0.227 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0.763,0.104 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0.739,0.329 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.595,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.453,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.381 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.534 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.172 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.261 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.199 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.246 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.637 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.112 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.112 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.114 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.174 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.254 +0.667,0.295,0.295,0,0,0.233,0,0.433,0.571,0.571,0,0.242,0.363 +0.667,0.301,0.301,0,0,0.533,0,0.337,0.581,0.581,0,0.546,0.0969 +1,0.424,0.424,0,0,0,0.233,0.255,0.638,0.638,0,0.159,0.243 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.112 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.186 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.0743 +0.333,0.194,0.194,0,0,0.733,0,0.405,0.572,0.572,0,0.648,0.112 +0.333,0.239,0.239,0,0,0.55,0,0.419,0.558,0.558,0,0.419,0.112 +0.333,0.294,0.294,0,0,0,0.917,0.434,0.543,0.543,0,0.0749,0.339 +0.667,0.603,0.603,0.25,0,0,0.317,0.596,0.6,0.6,0,0,0.234 +1,0.415,0.415,0.45,0,0,0,0.522,0.551,0.551,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.172 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.183 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0852 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0835 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0864 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.138 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.24 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.164,0.164,0.233,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.667,0.271,0.271,0.467,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0932 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.248 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.479 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.517 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0743 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0645 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.206 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.182 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.149 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0372 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.297 +1,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0372 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0372 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.159 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.428 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.298 +0.333,0.17,0.17,0.467,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0.05,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.417,0,0,0,0.368,0.568,0.568,0,0,0.0743 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.223 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.362 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.188 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.432 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.115 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.354 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.281,0,0.151 +0.667,0.299,0.299,0,0.733,0,0,0.256,0.581,0.581,0.353,0,0.112 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.245 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.248 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.297 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.186 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0372 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.149 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.223 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.297 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0.517,0,0.596,0.6,0.6,0,0.428,0 +0.667,0.415,0.415,0,0,0,0.483,0.522,0.551,0.551,0,0.391,0.0743 +1,0.183,0.183,0,0,0,0.75,0.455,0.511,0.511,0,0.119,0 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.116 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.102 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.238 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0.5,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0.2,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.149 +0.667,0.339,0.339,0,0.4,0,0,0.551,0.68,0.68,0.562,0,0.385 +0.667,0.429,0.429,0,0.583,0,0,0.581,0.65,0.65,0.226,0,0.283 +0.667,0.538,0.538,0.233,0,0,0,0.61,0.62,0.62,0,0,0.477 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0659 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.262 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.182 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0858 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0743 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.16,0.16,0.467,0,0.233,0,0.26,0.533,0.533,0,0.211,0.112 +0.667,0.269,0.269,0,0,0.0167,0.45,0.293,0.6,0.6,0,0.226,0.112 +0.667,0.268,0.268,0,0,0,0.533,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.223 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.194,0.194,0.7,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.376 +0.667,0.415,0.415,0.5,0,0,0,0.522,0.551,0.551,0,0,0.384 +1,0.116,0.116,0.2,0,0,0,0.357,0.488,0.488,0,0,0.186 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.22 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.349 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.45 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.202 +1,0.394,0.394,0.233,0,0,0,0.277,0.653,0.653,0,0,0.243 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.186 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.112 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0794 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.149 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.186 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.186 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0372 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +1,0.295,0.295,0.25,0,0,0,0.433,0.571,0.571,0,0,0.0543 +0.667,0.301,0.301,0.45,0,0,0,0.337,0.581,0.581,0,0,0.168 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.252 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.117 +1,0.394,0.394,0.233,0.4,0,0,0.277,0.653,0.653,0.484,0,0.201 +0.667,0.271,0.271,0,0.583,0,0,0.263,0.6,0.6,0.727,0,0.194 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.338,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.269,0.269,0.467,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.484,0.484,0.233,0,0,0,0.698,0.787,0.787,0,0,0.112 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.357 +0.667,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.186 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.252 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.2 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.213 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.297 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.186 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.26 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.297 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.103 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.499 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.204 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.44 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.217 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.178 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0.05,0,0,0,0.297,0.523,0.523,0,0,0.0788 +1,0.299,0.299,0.183,0,0,0,0.256,0.581,0.581,0,0,0.216 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.292 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.706 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.192 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.197 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.223 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743 +0.333,0.17,0.17,0.55,0,0,0,0.368,0.568,0.568,0,0,0.149 +0.333,0.194,0.194,0.383,0,0,0,0.405,0.572,0.572,0,0,0.186 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.112 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.112 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.137 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.39 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.251 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.163 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.333 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.26 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.409 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.372 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0372 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.223 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.106 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.11,0.11,0.233,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.201 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.231 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0496 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.335 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.186 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.339,0.339,0.75,0,0,0,0.551,0.68,0.68,0,0,0.149 +0.667,0.429,0.429,0.417,0,0,0,0.581,0.65,0.65,0,0,0.0743 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0743 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.112 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.194 +1,0.295,0.295,0.2,0,0,0,0.433,0.571,0.571,0,0,0.339 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.118 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0.4,0,0,0.286,0.528,0.528,0.506,0,0.0743 +0.333,0.159,0.159,0,0.583,0,0,0.29,0.538,0.538,0.135,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.147 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.193 +0.333,0.194,0.194,0.467,0,0.733,0,0.405,0.572,0.572,0,0.485,0.0743 +1,0.619,0.619,0,0,0.0333,0.433,0.742,0.742,0.742,0,0.728,0.149 +0.667,0.538,0.538,0,0,0,0.55,0.61,0.62,0.62,0,0.704,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0.585,0.0743 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.758,0.299 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.661,0.0721 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0.791,0.0372 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0.382,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0.511,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.512,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.33,0.33,0.233,0,0,0,0.477,0.549,0.549,0,0,0.202 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.351 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.104 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.096 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.267 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0863 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.109,0,0.0372 +0.333,0.159,0.159,0,0.733,0,0,0.286,0.528,0.528,0.362,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.14 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.2 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.273 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.112 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.173 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0983 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.16,0.16,0.467,0,0,0,0.26,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.186 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.199 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.187 +1,0.412,0.412,0,0,0.483,0,0.587,0.772,0.772,0,0.106,0.377 +0.667,0.339,0.339,0,0,0.0333,0.433,0.551,0.68,0.68,0,0,0.264 +0.667,0.429,0.429,0,0,0,0.3,0.581,0.65,0.65,0,0,0.533 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.682 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.22 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.223 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.112 +0.667,0.164,0.164,0,0.4,0,0,0.264,0.528,0.528,0.34,0,0.149 +0.667,0.271,0.271,0.467,0.333,0,0,0.263,0.6,0.6,0,0,0.171 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.28 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0788 +0.667,0.269,0.269,0.233,0,0,0,0.322,0.61,0.61,0,0,0.295 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.112 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.149 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.186 +0.667,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0.119,0,0.112 +0.667,0.603,0.603,0,0.733,0,0,0.596,0.6,0.6,0.529,0,0.534 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0166 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.149 +0.667,0.291,0.291,0.233,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.26 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.112 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0.283,0,0.297,0.523,0.523,0,0.191,0.362 +1,0.299,0.299,0,0,0.233,0.233,0.256,0.581,0.581,0,0.344,0.143 +0.333,0.0495,0.0495,0,0,0,0.5,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.147 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.295 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.164 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.154 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743 +0.667,0.291,0.291,0.05,0,0,0,0.477,0.67,0.67,0,0,0.112 +0.667,0.339,0.339,0.417,0,0,0,0.551,0.68,0.68,0,0,0.146 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.223 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.304 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.312 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.184 +1,0.0743,0.0743,0,0.4,0,0,0.32,0.483,0.483,0.614,0,0.0372 +1,0.0578,0.0578,0,0.333,0,0,0.308,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.226 +0.667,0.143,0.143,0,0,0.733,0,0.331,0.493,0.493,0,0.593,0.159 +0.667,0.172,0.172,0,0,0.3,0.167,0.345,0.518,0.518,0,0.796,0 +0.667,0.301,0.301,0,0,0,1,0.337,0.581,0.581,0,0.328,0.0743 +0.667,0.299,0.299,0,0,0,0.317,0.256,0.581,0.581,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0.233,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.186 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.112 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0372 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0372 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.256 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.113 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.226 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0703 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.211 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.2 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0.233,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.112 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.286 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.155 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.223 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0743 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.223 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.112 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.226 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.131 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.309 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.223 +0.333,0.17,0.17,0.5,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0.2,0,0,0,0.264,0.528,0.528,0,0,0.223 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.186 +0.667,0.339,0.339,0.5,0,0,0,0.551,0.68,0.68,0,0,0.112 +0.667,0.429,0.429,0.433,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.339 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.127 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.238 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.28 +0.667,0.172,0.172,0.233,0,0,0,0.345,0.518,0.518,0,0,0.0566 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.106 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.223 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.169 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.258 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0528 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.143,0.143,0.467,0,0,0,0.331,0.493,0.493,0,0,0.149 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0743 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.266 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.107 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0372 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.0372 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0.16,0,0 +0.667,0.429,0.429,0,0.9,0,0,0.581,0.65,0.65,0.675,0,0.0743 +0.667,0.538,0.538,0,0.0833,0,0,0.61,0.62,0.62,0,0,0.453 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.483 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.173 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.242 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.101 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.399 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.116 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0782 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.632 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.451 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.291 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.189 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.309 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.296 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.091 +1,0.172,0.172,0.3,0,0,0,0.345,0.518,0.518,0,0,0.186 +1,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.167 +0.667,0.299,0.299,0.817,0.45,0,0,0.256,0.581,0.581,0.737,0,0.0372 +0.667,0.291,0.291,0,0.0333,0,0,0.263,0.581,0.581,0.317,0,0.177 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.376 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.611 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.401 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.418 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0546 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.26 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.296 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.223 +0.667,0.232,0.232,0,0.45,0,0,0.39,0.508,0.508,0.588,0,0.0372 +1,0.116,0.116,0,0.533,0,0,0.357,0.488,0.488,0.599,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0.737,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0.167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0.25,0.15,0,0,0.404,0.521,0.521,0.449,0,0.0372 +0.667,0.172,0.172,0.217,0.583,0,0,0.345,0.518,0.518,0.657,0,0.0743 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.442,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0743 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0372 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.28 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.231 +0.667,0.27,0.27,0.717,0,0,0,0.264,0.582,0.582,0,0,0.14 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0.233,0,0,0,0.261,0.534,0.534,0,0,0.358 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.21 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.298 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0.15,0,0,0.479,0.672,0.672,0.362,0,0.0743 +0.333,0.173,0.173,0,0.567,0,0,0.405,0.574,0.574,0.659,0,0.186 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.112 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.126 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.155 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.35 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0624 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.435 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.157 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.375 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.395 +0.667,0.16,0.16,0.467,0.4,0,0,0.261,0.524,0.524,0.534,0,0.0372 +0.667,0.259,0.259,0,0.317,0,0,0.271,0.592,0.592,0.597,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0.581,0,0.0743 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.106 +0.667,0.249,0.249,0.467,0,0,0,0.316,0.592,0.592,0,0,0.485 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.134 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.112 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0372 +0.667,0.296,0.296,0.5,0,0,0,0.553,0.682,0.682,0,0,0.284 +0.667,0.365,0.365,1,0,0,0,0.583,0.652,0.652,0,0,0.186 +0.667,0.464,0.464,0.9,0,0,0,0.613,0.622,0.622,0,0,0.26 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0372 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.243 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0753 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.303 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.661 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0507 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.112 +0.333,0.16,0.16,0,0.15,0,0,0.261,0.524,0.524,0.386,0,0.297 +0.333,0.154,0.154,0,0.567,0,0,0.265,0.529,0.529,0.319,0,0.223 +0.333,0.15,0.15,0,0,0.25,0,0.261,0.534,0.534,0,0.167,0.112 +0.333,0.149,0.149,0,0,0,0.733,0.276,0.534,0.534,0,0,0.112 +0.333,0.149,0.149,0.5,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.667,0.249,0.249,0.7,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.437 +0.667,0.264,0.264,0.233,0,0,0,0.479,0.672,0.672,0,0,0.208 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.251 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,1,0,0.233,0,0.435,0.572,0.572,0,0.309,0.0969 +1,0.404,0.404,1,0,1,0,0.378,0.641,0.641,0,0.206,0.537 +0.667,0.278,0.278,0.383,0,0.283,0.183,0.257,0.582,0.582,0,0.11,0.134 +0.333,0.16,0.16,0.467,0,0,0.8,0.261,0.524,0.524,0,0,0.297 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0743 +1,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0372 +1,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.247 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.186 +0.667,0.464,0.464,0.467,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.277 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0832 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.398 +1,0.286,0.286,0.233,0,0,0,0.338,0.582,0.582,0,0,0.184 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0372 +0.333,0.154,0.154,0.233,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0.483,0,0.287,0.529,0.529,0,0.339,0.0372 +0.333,0.149,0.149,0,0,0.533,0,0.29,0.539,0.539,0,0,0.112 +0.667,0.252,0.252,0,0,0,0.933,0.375,0.632,0.632,0,0,0.0372 +0.667,0.264,0.264,0,0,0,0.55,0.479,0.672,0.672,0,0,0.149 +0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.315 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.186 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.15 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.109 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.163 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.149,0.149,0.233,0,0,0,0.287,0.529,0.529,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.112 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.257 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.26 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0.717,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.087 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.19 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.277 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.229 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.241 +0.333,0.16,0.16,0.467,0,0,0,0.261,0.524,0.524,0,0,0.252 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.223 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.186 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.149 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +0.333,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.174 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0818 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.548 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.101 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.309 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.268 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.26 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0743 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.143 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.122 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.38 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.241 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.234 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.149 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.223 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.335 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0743 +0.667,0.296,0.296,0.717,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.121 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.245 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.431 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0738 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.195 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.779 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.26 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.667,0.464,0.464,0.467,0,0,0,0.613,0.622,0.622,0,0,0.212 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0743 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.111 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.143 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.134,0,0.0835 +1,0.0578,0.0578,0,0.9,0,0,0.309,0.474,0.474,0.751,0,0 +1,0.0495,0.0495,0,0.0667,0,0,0.309,0.469,0.469,0,0,0.0928 +1,0.0495,0.0495,0.5,0,0,0,0.305,0.464,0.464,0,0,0.0931 +1,0.0495,0.0495,0.45,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.286,0.286,0.467,0,0,0,0.338,0.582,0.582,0,0,0.159 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.089 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.106,0 +0.333,0.149,0.149,0,0,0.5,0,0.29,0.539,0.539,0,0,0 +1,0.353,0.353,0.467,0,0,0.95,0.434,0.715,0.715,0,0,0.149 +1,0.371,0.371,0,0.4,0,0.533,0.59,0.775,0.775,0.516,0.138,0.149 +0.667,0.296,0.296,0,0.0833,0.5,0,0.553,0.682,0.682,0,0.365,0.186 +0.667,0.365,0.365,0,0,0,0.95,0.583,0.652,0.652,0,0.638,0.0743 +1,0.671,0.671,0,0,0,0.0333,0.79,0.701,0.701,0,0.642,0.45 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0.454,0.186 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.222,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.125 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0925 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.159 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.333,0.149,0.149,0,0,0.5,0,0.29,0.539,0.539,0,0.739,0 +0.667,0.252,0.252,0,0,0,0.7,0.375,0.632,0.632,0,0.44,0.186 +0.667,0.264,0.264,0,0,0,0.0333,0.479,0.672,0.672,0,0.176,0.112 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.661,0.26 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.221,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.223 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0837 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0.217,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.304 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.23 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.152 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.299 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.335 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0899 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.42 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.335 +0.667,0.464,0.464,0,0.4,0,0,0.613,0.622,0.622,0.662,0,0.149 +0.667,0.549,0.549,0,0.567,0,0,0.598,0.602,0.602,0.36,0,0.0372 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0942 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.07 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.249 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0639 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.146 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.489 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.149 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.112 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.186 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.127 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.112 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.286 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.596 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.017 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.376 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.315 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.123 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0.4,0,0,0.276,0.534,0.534,0.722,0,0 +0.333,0.149,0.149,0,0.317,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0743 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.442 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.55 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.335 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.172 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.301 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0712 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.176 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.26 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.215 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.183 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.167 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.255 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.374 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.107 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0578 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.269 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.216 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.096 +0.333,0.15,0.15,0,0.65,0,0,0.261,0.534,0.534,0.631,0,0 +0.333,0.149,0.149,0,0.0667,0.233,0,0.276,0.534,0.534,0.514,0.213,0.149 +0.333,0.149,0.149,0,0,0.0167,0.233,0.287,0.529,0.529,0,0.45,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.494,0.149 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.65,0.149 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.167,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.186 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.186 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.186 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +1,0.284,0.284,1,0,0,0,0.435,0.572,0.572,0,0,0.199 +0.667,0.286,0.286,0.433,0,0,0,0.338,0.582,0.582,0,0,0.127 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.111 +0.667,0.27,0.27,0.717,0,0,0,0.264,0.582,0.582,0,0,0.637 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.499 +0.667,0.251,0.251,0.233,0,0,0,0.264,0.602,0.602,0,0,0.442 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.106 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.263 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.363 +0.333,0.151,0.151,0.233,0,0,0,0.316,0.549,0.549,0,0,0.149 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.149 +0.333,0.173,0.173,0,0,0.733,0,0.405,0.574,0.574,0,0.393,0.328 +0.667,0.365,0.365,0,0,0.0167,0.45,0.583,0.652,0.652,0,0,0.112 +1,0.671,0.671,0,0,0,0.783,0.79,0.701,0.701,0,0,0.0743 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.515 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.212 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.147 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.372 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.157 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.225 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.409 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.186 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.149 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.105 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.0371 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0.52 +1,0.353,0.353,0.233,0,0,0,0.434,0.715,0.715,0,0,0.339 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.243 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.458 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.378 +1,0.582,0.582,0.467,0,0,0,0.656,0.596,0.596,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.149 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.08 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.167,0.167,0.95,0,0,0,0.346,0.519,0.519,0,0,0.593 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0.467,0,0,0,0.276,0.534,0.534,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.223 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.112 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.576 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.0683 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.275 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.139 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.309 +0.333,0.164,0.164,0.233,0,0,0,0.257,0.524,0.524,0,0,0.256 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.149 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.186 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.281 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.286 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.166 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.101 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.247 +0.667,0.278,0.278,0.467,0,0,0,0.257,0.582,0.582,0,0,0.203 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0372 +0.667,0.296,0.296,0,0.4,0,0,0.553,0.682,0.682,0.705,0,0.149 +0.667,0.365,0.365,0,0.567,0,0,0.583,0.652,0.652,0.6,0,0.268 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0.276,0,0.112 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.532 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0.233,0,0.346,0.519,0.519,0,0.379,0 +0.667,0.168,0.168,0,0,0.0167,0.233,0.298,0.524,0.524,0,0.576,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.199 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.148 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.297 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.211 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.293 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.196 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.186 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.227,0.227,0,0,0.483,0,0.391,0.509,0.509,0,0.246,0.0372 +1,0.183,0.183,0,0,0.533,0,0.457,0.513,0.513,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0.483,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.75,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.284,0.284,0.45,0,0,0,0.435,0.572,0.572,0,0,0.157 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.21 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.333,0.149,0.149,0,0,0.25,0,0.276,0.534,0.534,0,0.404,0.0372 +0.667,0.249,0.249,0.25,0,0,0.7,0.316,0.592,0.592,0,0.505,0.0372 +0.667,0.249,0.249,0.217,0,0,0.0333,0.323,0.612,0.612,0,0.572,0.112 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.696,0.112 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.375,0.0372 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.141,0 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.112 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.26 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.112 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.89 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.348 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0.65,0,0,0.375,0.632,0.632,0.547,0,0.223 +0.667,0.264,0.264,0,0.317,0,0,0.479,0.672,0.672,0,0,0.388 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.297 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.335 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.223 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.181 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.306 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.278 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.438 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.112 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.26 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0743 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.0372 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.157 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.146 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.152 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.364 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.446 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.263 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.442 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.667,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0.4,0,0,0.479,0.672,0.672,0.64,0,0 +0.667,0.296,0.296,0,0.317,0,0,0.553,0.682,0.682,0.291,0,0.186 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.101 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.136 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.28 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.253 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.148 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.2 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.215 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.377 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.388 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.297 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.149 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.111 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.126 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.308 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.343 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.172 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.242 +0.667,0.286,0.286,0.233,0,0,0,0.338,0.582,0.582,0,0,0.128 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.386 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.417 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.412 +0.667,0.251,0.251,0.233,0,0,0,0.264,0.602,0.602,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.297 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.296,0.296,0.367,0,0,0,0.553,0.682,0.682,0,0,0.186 +0.667,0.365,0.365,0.233,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.149 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.153 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.113 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0.128,0,0.168 +0.333,0.168,0.168,0,0.9,0,0,0.298,0.524,0.524,0.681,0,0 +0.333,0.164,0.164,0,0.0667,0,0,0.257,0.524,0.524,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.418 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.194 +0.333,0.15,0.15,0.233,0,0,0,0.261,0.534,0.534,0,0,0.16 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.149,0.149,0.233,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0372 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.349 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.223 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.149 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.226 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.252 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.733,0,0.258,0.465,0.465,0,0.502,0 +0.667,0.0495,0.0495,0,0,0.0167,0.233,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.164 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0611 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.213,0,0.0372 +0.333,0.153,0.153,0,0.7,0,0,0.246,0.488,0.488,0.0965,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.223 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.112 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.147,0,0.223 +0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.432,0,0.0743 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.333,0.0495,0.0495,0,0.65,0,0,0.258,0.465,0.465,0.555,0,0.0743 +0.667,0.116,0.116,0,0.283,0,0,0.326,0.459,0.459,0,0,0.223 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.163,0.163,0.433,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.149 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.167 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.155 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.109 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.195 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.539 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.355 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.446 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0372 +0.333,0.189,0.189,0.233,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.334 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.15 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.115 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.235,0.235,0.25,0,0,0,0.259,0.528,0.528,0,0,0.149 +0.667,0.235,0.235,0.45,0,0,0,0.277,0.519,0.519,0,0,0.112 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0743 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.112 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.459 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.132 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.144 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.128 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0805 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.084 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.201 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.145 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.264 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.163,0.163,0.25,0,0,0,0.317,0.484,0.484,0,0,0.322 +0.667,0.274,0.274,0.45,0,0,0,0.296,0.511,0.511,0,0,0.319 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.209 +0,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0743 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0372 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.168 +0.667,0.275,0.275,0,0.65,0,0,0.385,0.496,0.496,0.787,0,0.0743 +1,0.219,0.219,0,0.283,0,0,0.354,0.476,0.476,0.662,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.374 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0.4,0,0,0.296,0.511,0.511,0.603,0,0 +0.667,0.263,0.263,0,0.533,0,0,0.228,0.511,0.511,0.108,0,0.213 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0372 +0.333,0.147,0.147,0.5,0,0,0,0.249,0.492,0.492,0,0,0.186 +0.333,0.143,0.143,0.2,0,0,0,0.246,0.496,0.496,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.112 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.149 +0.667,0.273,0.273,0.467,0,0,0,0.475,0.594,0.594,0,0,0.0743 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.186 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.383 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0.186 +1,0.136,0.136,0.883,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.256,0.256,0.5,0,0,0,0.234,0.511,0.511,0,0.106,0 +0.333,0.147,0.147,0.2,0,0.75,0,0.249,0.492,0.492,0,0.612,0 +0.333,0.143,0.143,0,0,0,0.7,0.246,0.496,0.496,0,0.384,0 +0.667,0.235,0.235,0,0,0,0.0167,0.259,0.528,0.528,0,0.373,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.508,0.26 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.502,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0.823,0.186 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0.463,0.223 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.52,0.186 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.329,0.112 +0.667,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0,0,0.0743 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.335 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.319 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.106 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.339 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.214 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0743 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.149 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.186 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.118 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.112 +0.333,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0.325 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.186 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.199 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.331 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.125 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.0372 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.26 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.368 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.41 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.171 +0.667,0.413,0.413,0,0.65,0,0,0.525,0.544,0.544,0.649,0,0.0743 +0.667,0.501,0.501,0.75,0.283,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.219,0.219,0.183,0,0,0,0.354,0.476,0.476,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0694 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.112 +1,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.26 +0.333,0.144,0.144,0.467,0,0,0,0.292,0.509,0.509,0,0,0.372 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.112 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0.174,0,0.112 +0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.57,0,0.136 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0.779,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0.683,0,0.186 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.385 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.295 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.0875 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.127,0 +0,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.459,0.0743 +0.333,0.143,0.143,0.233,0,0,0.95,0.246,0.496,0.496,0,0.631,0 +0.333,0.142,0.142,0,0.15,0,0.25,0.258,0.496,0.496,0.443,0.323,0 +0.667,0.235,0.235,0,0.783,0,0,0.277,0.519,0.519,0.111,0,0.287 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.51 +0.667,0.144,0.144,0,0,0.233,0,0.292,0.509,0.509,0,0.237,0.483 +0.667,0.247,0.247,0,0,0.517,0,0.413,0.585,0.585,0,0.44,0.112 +0.667,0.273,0.273,0,0,0,0.95,0.475,0.594,0.594,0,0,0.282 +0.667,0.328,0.328,0,0,0,0.25,0.5,0.569,0.569,0,0,0.249 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.259 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.349 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.071 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.501 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.18 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.139,0,0.0372 +0.333,0.153,0.153,0,0.7,0,0,0.246,0.488,0.488,0.685,0,0.0372 +0.333,0.147,0.147,0.7,0,0,0,0.249,0.492,0.492,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.149 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0743 +0.333,0.161,0.161,0,0,0.233,0,0.366,0.53,0.53,0,0.263,0.112 +0.333,0.189,0.189,0,0,0.0167,0.45,0.379,0.517,0.517,0,0.771,0.409 +0.333,0.231,0.231,0,0,0,1,0.391,0.505,0.505,0,0.101,0.47 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.445 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.409 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0.233,0,0.352,0.461,0.461,0,0.232,0.163 +0.667,0.277,0.277,0,0,0.517,0,0.376,0.503,0.503,0,0.255,0.274 +0.667,0.274,0.274,0,0.4,0,0.233,0.296,0.511,0.511,0.506,0,0.124 +0.333,0.156,0.156,0,0.533,0,0,0.243,0.488,0.488,0,0,0.0372 +0.333,0.153,0.153,0,0.4,0,0,0.246,0.488,0.488,0.777,0,0.0372 +0.667,0.245,0.245,0,0.3,0,0,0.24,0.519,0.519,0,0,0.0372 +0.667,0.237,0.237,0.5,0,0,0,0.234,0.528,0.528,0,0,0.0743 +0.667,0.235,0.235,0.2,0,0,0,0.259,0.528,0.528,0,0,0.124 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.205 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.223 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.148,0.148,0,0,0.233,0,0.336,0.525,0.525,0,0.136,0.409 +0.667,0.273,0.273,0,0,0.767,0,0.475,0.594,0.594,0,0.572,0.0372 +0.667,0.328,0.328,0,0,0,0.7,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0.267,0.525,0.544,0.544,0,0,0.346 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.149 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.19 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.458 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.0697 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.23 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.363 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0764 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0.467,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.365 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.301 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.149 +0.667,0.328,0.328,0,0.65,0,0,0.5,0.569,0.569,0.735,0,0.186 +0.667,0.413,0.413,0,0.283,0,0,0.525,0.544,0.544,0,0,0.111 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0372 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0372 +0.333,0.148,0.148,0.5,0,0,0,0.336,0.525,0.525,0,0,0.112 +0.667,0.273,0.273,0.683,0,0,0,0.475,0.594,0.594,0,0,0.112 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.135 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.231 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.411 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.147 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.135 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.201 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0372 +0.667,0.237,0.237,0.467,0,0,0,0.234,0.528,0.528,0,0,0.297 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.179 +0.667,0.235,0.235,0,0,0.25,0,0.277,0.519,0.519,0,0.269,0.481 +0.667,0.235,0.235,0,0,0.233,0.7,0.284,0.536,0.536,0,0.445,0.316 +0.333,0.144,0.144,0,0,0.0167,0.467,0.292,0.509,0.509,0,0.274,0 +0.333,0.148,0.148,0.233,0,0,1,0.336,0.525,0.525,0,0,0.197 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.328,0.328,0.7,0,0,0,0.5,0.569,0.569,0,0,0.149 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +0.333,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.223 +0.333,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.253 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0.233,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.23 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.193 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.141 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.26 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0743 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.0743 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0743 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.233 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.463 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.199 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.182 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.47 +0.667,0.235,0.235,0,0,0.233,0,0.277,0.519,0.519,0,0.339,0.112 +0.667,0.235,0.235,0,0,0.517,0,0.284,0.536,0.536,0,0.0627,0.112 +0.667,0.238,0.238,0,0,0,0.95,0.327,0.552,0.552,0,0,0.0372 +0.333,0.148,0.148,0,0,0,0.25,0.336,0.525,0.525,0,0,0.0743 +0.667,0.273,0.273,0.25,0,0,0,0.475,0.594,0.594,0,0,0.186 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.231,0.231,1,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.333,0.275,0.275,0.117,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.121 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.116 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.114 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0.0697 +0.667,0.162,0.162,0.183,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0.233,0,0.228,0.511,0.511,0,0.237,0.11 +0.667,0.256,0.256,0,0,1,0,0.234,0.511,0.511,0,0.335,0.387 +0.333,0.147,0.147,0,0,0.0333,0.433,0.249,0.492,0.492,0,0,0.149 +0.333,0.143,0.143,0,0,0,0.533,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.246 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.363 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.186 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0372 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.149 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0.25,0,0,0,0.305,0.463,0.463,0,0,0.189 +0.667,0.163,0.163,0.217,0,0,0,0.317,0.484,0.484,0,0,0.316 +0.667,0.274,0.274,0.233,0,0,0,0.296,0.511,0.511,0,0,0.432 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.254 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0905 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.335 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.0743 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0743 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.23 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0983 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.163 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.126 +0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.543 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.552 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.223 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.13 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.168 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.0516 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0992 +0.667,0.162,0.162,0.467,0,0,0,0.277,0.488,0.488,0,0,0.163 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.106,0,0.0372 +0.667,0.256,0.256,0,0.7,0,0,0.234,0.511,0.511,0.349,0,0.155 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.667,0.235,0.235,0,0,0.25,0,0.277,0.519,0.519,0,0.453,0.178 +1,0.328,0.328,0,0,0,0.7,0.297,0.571,0.571,0,0,0 +0.667,0.238,0.238,0,0,0,0.0167,0.327,0.552,0.552,0,0,0.0372 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.186 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.348 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.395 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.112 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.483 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0.15,0,0,0.246,0.496,0.496,0.451,0,0.0372 +0.667,0.235,0.235,0,0.783,0,0,0.259,0.528,0.528,0.544,0,0.149 +0.333,0.142,0.142,0,0,0.25,0,0.268,0.492,0.492,0,0.55,0.0372 +0.333,0.142,0.142,0,0,0,0.95,0.271,0.501,0.501,0,0.659,0.149 +0.333,0.144,0.144,0,0,0,0.0167,0.292,0.509,0.509,0,0.489,0.335 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.167,0.447 +1,0.384,0.384,0.467,0,0,0,0.584,0.658,0.658,0,0,0.0727 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0.4,0,0,0.525,0.544,0.544,0.61,0,0.297 +0.667,0.501,0.501,0,0.0667,0,0,0.512,0.528,0.528,0.722,0,0.0372 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0.579,0,0.3 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.104 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.124 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.116 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.425 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.241 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.223 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.297 +1,0.726,0.726,0.233,0,0,0,0.639,0.559,0.559,0,0,0.223 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.165 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.124 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.126 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.432 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.265 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.161,0,0.186 +0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.566,0,0.0743 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.333,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0743 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.119 +1,0.0768,0.0768,0.467,0,0,0,0.283,0.447,0.447,0,0,0.0881 +1,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.186 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0372 +0.333,0.142,0.142,0.933,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.569 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.351 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.319 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.114 +1,0.277,0.277,0.467,0,0,0,0.376,0.503,0.503,0,0,0.228 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0.207 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.513 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.102 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.223 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.667,0.238,0.238,0.233,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.149 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0743 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.26 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.112 +0.667,0.116,0.116,0.5,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0743,0.0743,0.2,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.264 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.208 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.153 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.25 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.129 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.223 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0372 +0.333,0.142,0.142,0.25,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.238,0.238,0.217,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.0372 +0.667,0.273,0.273,0.467,0,0,0,0.475,0.594,0.594,0,0,0.186 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.112 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.225 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.587 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.339 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.53 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.282 +0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0.134 +0.333,0.143,0.143,0.5,0,0,0,0.246,0.496,0.496,0,0,0.0671 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.206 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0.0743 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.141 +0.667,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.137 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.108 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.329 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.35 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.71 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.52 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0773 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.405 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.118 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.149 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.149 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.185 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +1,0.274,0.274,0.5,0,0,0,0.296,0.511,0.511,0,0,0.178 +0.667,0.263,0.263,0.2,0.15,0,0,0.228,0.511,0.511,0.37,0,0.0372 +0.667,0.256,0.256,0,0.783,0,0,0.234,0.511,0.511,0.476,0,0.0743 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.335 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.26 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0743 +0.667,0.328,0.328,0.233,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0743 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.141 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.102 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.112 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.229 +0.333,0.0495,0.0495,0,0,0.0667,0,0.258,0.465,0.465,0,0.242,0 +0.333,0.15,0.15,0,0,0.183,0.283,0.245,0.487,0.487,0,0.537,0.112 +0.333,0.145,0.145,0.233,0,0,0.867,0.248,0.491,0.491,0,0.489,0.112 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.379,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.379,0.0372 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0743 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.0743 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.186 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0743 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.175 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.339 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.339 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0.25,0,0.245,0.495,0.495,0,0.222,0.112 +0.333,0.14,0.14,0,0,0,0.917,0.258,0.495,0.495,0,0.529,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.495,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.784,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.789,0.0743 +0.667,0.242,0.242,0,0.15,0,0,0.411,0.582,0.582,0.433,0.431,0.387 +0.667,0.268,0.268,0,0.3,0,0,0.472,0.591,0.591,0.494,0.45,0.223 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.583,0.274,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.0972 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0721 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.336 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0708 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.234,0 +0.667,0.22,0.22,0.483,0,0.283,0.183,0.35,0.459,0.459,0,0.531,0.0589 +0.667,0.274,0.274,0.217,0,0,0.267,0.374,0.5,0.5,0.104,0.119,0.132 +0.667,0.27,0.27,0,0.9,0,0,0.294,0.508,0.508,0.712,0,0 +0.333,0.154,0.154,0,0.0167,0,0,0.242,0.487,0.487,0.818,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0.792,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0.15,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.333,0.146,0.146,0,0.4,0,0,0.334,0.524,0.524,0.631,0,0.112 +0.667,0.268,0.268,0,0.283,0,0,0.472,0.591,0.591,0.635,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.629,0,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.788,0,0.232 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.62,0,0.149 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0.469,0,0.149 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.398 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0823 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.426 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.206,0 +0.333,0.154,0.154,0,0,0.517,0,0.242,0.487,0.487,0,0.266,0 +0.333,0.15,0.15,0,0,0,0.217,0.245,0.487,0.487,0,0.399,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.385,0.0372 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.531,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.45,0.0372 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.535,0.219 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.726,0.288 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.474,0.0372 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.335 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0372 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0372 +0.667,0.41,0.41,0.233,0,0,0,0.521,0.541,0.541,0,0,0.0372 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.112 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.0762 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0942 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.435 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.371 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.255 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0.204,0,0.211 +0.333,0.141,0.141,0,0.45,0,0,0.245,0.495,0.495,0.777,0,0.0743 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.112 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.269 +0.333,0.14,0.14,0.233,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.297 +0.333,0.187,0.187,0.233,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.112 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0743 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.047 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.182 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.224 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.217 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0743 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.149 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.186 +0.333,0.146,0.146,0.25,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.667,0.268,0.268,0.217,0,0,0,0.472,0.591,0.591,0,0,0.286 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.393 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0759 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.441 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0.25,0.0333,0.304,0.462,0.462,0,0.795,0.324 +1,0.274,0.274,0,0,0,0.417,0.374,0.5,0.5,0,0,0.199 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.171 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.673 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.197 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0718 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.583,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0.583,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.141,0.141,0,0,0.25,0,0.291,0.507,0.507,0,0.131,0 +0.667,0.146,0.146,0,0,0,0.217,0.334,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.187,0.187,0,0,0.317,0,0.377,0.516,0.516,0,0.265,0.0743 +0.667,0.41,0.41,0,0,0.2,0.267,0.521,0.541,0.541,0,0,0.149 +0.667,0.496,0.496,0,0,0,0.183,0.509,0.525,0.525,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.186 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.233 +1,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0.15,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.193 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.123 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.141 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.137 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.26 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.392 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.296 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.158 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.315 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0.933,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0.483,0,0.316,0.483,0.483,0,0.303,0 +0.667,0.16,0.16,0.233,0,0.0333,0.433,0.276,0.487,0.487,0,0,0.0372 +0.667,0.258,0.258,0,0,0,0.483,0.227,0.508,0.508,0,0,0.297 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0372 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.558 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0.5,0,0,0,0.325,0.549,0.549,0,0,0.0372 +0.667,0.242,0.242,0.433,0,0,0,0.411,0.582,0.582,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.186 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.112 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.263 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.115 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.162 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.283 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.375 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.14,0.14,0.433,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0.165,0,0.112 +0.667,0.268,0.268,0,0.683,0,0,0.472,0.591,0.591,0.703,0,0.501 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.373,0,0.245 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.156,0,0.223 +1,0.554,0.554,0,0.683,0,0,0.543,0.493,0.493,0.434,0,0.129 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0.7,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.112 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.205 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.149 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.223 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.223 +0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.483 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0372 +0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0887 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.119 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.121 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.112 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0.25,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0.45,0,0,0,0.27,0.499,0.499,0,0,0.52 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.223 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.274 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.108 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.268 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.2 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0.5,0,0,0,0.35,0.459,0.459,0,0,0.142 +0.333,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0.467,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0.233,0,0.27,0.499,0.499,0,0.0795,0.265 +0.667,0.233,0.233,0,0,0.0167,0.45,0.325,0.549,0.549,0,0,0.1 +0.333,0.146,0.146,0.5,0,0,0.933,0.334,0.524,0.524,0,0,0.0743 +0.667,0.268,0.268,0.2,0.4,0,0,0.472,0.591,0.591,0.519,0,0.0372 +0.333,0.187,0.187,0,0.283,0,0,0.377,0.516,0.516,0.209,0,0.26 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.335 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.263 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.194 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.349 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0951 +0.333,0.145,0.145,0,0,0.317,0,0.248,0.491,0.491,0,0.11,0.363 +0.333,0.141,0.141,0,0,0.983,0,0.245,0.495,0.495,0,0.304,0 +0.667,0.23,0.23,0,0,0,0.483,0.258,0.525,0.525,0,0.463,0 +0.333,0.14,0.14,0.0833,0,0,0.9,0.267,0.491,0.491,0,0.489,0.186 +0.333,0.14,0.14,0.85,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.233,0,0,0,0.291,0.507,0.507,0,0,0.223 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.112 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.297 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0372 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.317,0,0.258,0.465,0.465,0,0.297,0 +0.667,0.16,0.16,0,0,0.717,0,0.276,0.487,0.487,0,0.11,0 +0.333,0.154,0.154,0,0,0,0.75,0.242,0.487,0.487,0,0,0.0639 +0.667,0.25,0.25,0,0,0,0.633,0.233,0.508,0.508,0,0,0.277 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.123 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.186 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.297 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.112 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.333,0.146,0.146,0.0833,0,0,0,0.334,0.524,0.524,0,0,0.149 +0.667,0.268,0.268,0.15,0,0,0,0.472,0.591,0.591,0,0,0.0372 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.342 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.234 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.25 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.284 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0759 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.251 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.173 +1,0.386,0.386,0.467,0,0,0,0.432,0.518,0.518,0,0,0.434 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.441 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.184 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.176 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.149 +0.667,0.141,0.141,0,0.15,0,0,0.245,0.495,0.495,0.42,0,0 +0.667,0.14,0.14,0,0.533,0,0,0.258,0.495,0.495,0.628,0,0.0372 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0.592,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.811,0,0 +1,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.703,0,0.0743 +0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.171 +0.667,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.19 +0.667,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.235 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0327 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.207 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.362 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.223 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.186 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.26 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.26 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0372 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.57 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.174 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.17 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.422 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.503 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.34 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.142 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.129 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.186 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.149 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.149 +0.667,0.242,0.242,0.467,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.268,0.268,0,0.4,0,0,0.472,0.591,0.591,0.707,0,0.409 +0.667,0.324,0.324,0,0.517,0,0,0.497,0.566,0.566,0.56,0,0.0372 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.403 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.163 +1,0.386,0.386,0,0,0.517,0,0.432,0.518,0.518,0,0.537,0.363 +0.667,0.27,0.27,0,0,0,0.683,0.294,0.508,0.508,0,0.309,0.116 +0.667,0.258,0.258,0.75,0,0,0.467,0.227,0.508,0.508,0,0.683,0.277 +0.667,0.25,0.25,0.183,0,0,0,0.233,0.508,0.508,0,0.404,0.0762 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.489,0.0743 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.443,0.0743 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.595,0.0372 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.783,0.372 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.641,0.0743 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.0979,0.213 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.667,0.268,0.268,0.233,0,0,0,0.472,0.591,0.591,0,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.186 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.254 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.31 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.175 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.228 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0.233,0,0,0,0.276,0.487,0.487,0,0,0.112 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.112 +0.667,0.25,0.25,0.933,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0.233,0,0,0,0.239,0.517,0.517,0,0,0.297 +0.667,0.232,0.232,0.5,0,0,0,0.233,0.525,0.525,0,0,0.112 +0.333,0.14,0.14,0.667,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0.233,0,0.267,0.491,0.491,0,0.419,0 +0.667,0.23,0.23,0,0,0.283,0.183,0.282,0.533,0.533,0,0,0.0743 +0.667,0.233,0.233,0,0,0,0.0333,0.325,0.549,0.549,0,0,0.0372 +0.333,0.146,0.146,0.5,0,0,0,0.334,0.524,0.524,0,0,0.112 +0.667,0.268,0.268,0.9,0,0,0,0.472,0.591,0.591,0,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0372 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.333,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.265 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.16,0.16,0.15,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.112 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.223 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.234 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.113 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.0743 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.149 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.29 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.106 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.196 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.345 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.08 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0881 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.667,0.23,0.23,0,0,0.317,0,0.258,0.525,0.525,0,0.229,0 +1,0.32,0.32,0,0,0.467,0,0.285,0.542,0.542,0,0.509,0 +1,0.321,0.321,0,0,0,0.917,0.294,0.567,0.567,0,0.758,0.0372 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.668,0.112 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.194,0.0743 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.297 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.403 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.112 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0743 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.211 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.181 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.229 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.233,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.26 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.372 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.26 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0697 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.112 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0.467,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0.65,0,0,0.291,0.507,0.507,0.51,0,0.112 +0.333,0.146,0.146,0,0.0333,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.181 +0.667,0.324,0.324,0,0,0.517,0,0.497,0.566,0.566,0,0.206,0.335 +0.667,0.41,0.41,0,0,0,0.217,0.521,0.541,0.541,0,0.56,0.223 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.404,0 +1,0.386,0.386,0.233,0,0,0,0.448,0.484,0.484,0,0,0.111 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0.25,0,0,0,0.304,0.462,0.462,0.113,0,0 +1,0.274,0.274,0.217,0.683,0,0,0.374,0.5,0.5,0.794,0,0.171 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0.497 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0549 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.223 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0.517,0,0.258,0.465,0.465,0,0.59,0 +0.333,0.14,0.14,0,0,0,0.45,0.27,0.499,0.499,0,0.731,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.523,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.563,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.186 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.22 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.284 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.391 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.371 +0.667,0.27,0.27,0,0.4,0,0,0.294,0.508,0.508,0.755,0,0.104 +0.667,0.258,0.258,0,0.283,0,0,0.227,0.508,0.508,0.547,0,0.0951 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.176,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.372 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.223 +0.333,0.14,0.14,0.7,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0743 +0.333,0.141,0.141,0.7,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0.124,0,0.24 +1,0.461,0.461,0,0.683,0,0,0.616,0.616,0.616,0.8,0,0.213 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.798,0,0.149 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0.13,0,0.0743 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.07 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.205 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.112 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.146 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.264 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.186 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.513 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0837 +0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.0931 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.359 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.135 +0.667,0.258,0.258,0.85,0,0.0667,0,0.227,0.508,0.508,0,0.211,0.238 +0.667,0.25,0.25,0,0,0.183,0.283,0.233,0.508,0.508,0,0.732,0.249 +0.667,0.24,0.24,0,0,0,0.633,0.239,0.517,0.517,0,1,0.24 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.0505,0.324 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.444 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.228 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.223 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.149 +0.667,0.268,0.268,0.0833,0,0,0,0.472,0.591,0.591,0,0,0 +0.333,0.187,0.187,0.15,0,0,0,0.377,0.516,0.516,0,0,0.0743 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.358 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0743 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0.25,0,0.258,0.465,0.465,0,0.419,0 +1,0.27,0.27,0.0833,0,0,0.533,0.294,0.508,0.508,0,0.486,0.26 +1,0.362,0.362,0.617,0,0,0.85,0.212,0.53,0.53,0,0,0.204 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0.85,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.297 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.335 +0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0,0,0.112 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.186 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0978 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.355 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.119 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.147 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.486 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.266 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.193 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.296 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.339 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.112 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.333,0.146,0.146,0,0,0.233,0,0.334,0.524,0.524,0,0.199,0 +0.667,0.268,0.268,0.233,0,0.283,0.183,0.472,0.591,0.591,0.0965,0.596,0.112 +0.667,0.324,0.324,0,0.9,0,0.733,0.497,0.566,0.566,0.716,0.291,0.168 +0.667,0.41,0.41,0,0.0167,0.25,0.2,0.521,0.541,0.541,0,0.682,0.257 +0.667,0.496,0.496,0,0,0,0.25,0.509,0.525,0.525,0,0.234,0.0743 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.277 +1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.102 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0.25,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0.45,0,0,0,0.258,0.525,0.525,0,0,0.112 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.149 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0372 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.496,0.496,0,0.65,0,0,0.509,0.525,0.525,0.772,0,0.0372 +0.667,0.386,0.386,0,0.0333,0,0,0.448,0.484,0.484,0.117,0,0.34 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0.167 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.277,0.277,0.233,0.4,0,0,0.374,0.5,0.5,0.74,0,0.112 +0.667,0.274,0.274,0,0.517,0,0,0.294,0.508,0.508,0,0,0.449 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.327 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0.95,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0.15,0,0,0.27,0.499,0.499,0.419,0,0.257 +0.667,0.239,0.239,0,0.3,0,0,0.325,0.549,0.549,0.737,0,0.361 +0.667,0.252,0.252,0,0,0.233,0,0.411,0.582,0.582,0.0603,0.382,0.224 +0.667,0.289,0.289,0,0,0.0167,0.45,0.472,0.591,0.591,0,0.0489,0.112 +0.667,0.362,0.362,0,0,0,0.45,0.497,0.566,0.566,0,0,0.149 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.297 +0.333,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.124 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0785 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.362 +1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0.198 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0372 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.156,0,0.0372 +0.667,0.252,0.252,0.75,0.683,0,0,0.411,0.582,0.582,0.755,0,0 +0.667,0.289,0.289,0.2,0,0,0,0.472,0.591,0.591,0.683,0,0.26 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.644,0,0.149 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.223 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.112 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0743 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0.127 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0829 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.166 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0314 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0776 +0.667,0.252,0.252,0.233,0.4,0,0,0.411,0.582,0.582,0.701,0,0 +1,0.408,0.408,0,0.517,0,0,0.58,0.653,0.653,0,0,0.102 +0.667,0.362,0.362,0.467,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.295 +0.333,0.296,0.296,0,0.65,0,0,0.383,0.495,0.495,0.651,0,0.349 +1,0.397,0.397,0,0.267,0,0,0.448,0.484,0.484,0.202,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0372 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.112 +1,0.277,0.277,0.717,0,0.233,0,0.374,0.5,0.5,0,0.459,0.186 +1,0.274,0.274,0.5,0,1,0,0.294,0.508,0.508,0,0.538,0.218 +0.667,0.263,0.263,0.933,0,0.267,0.2,0.227,0.508,0.508,0,0.463,0.0743 +0.667,0.256,0.256,0,0,0,0.0167,0.233,0.508,0.508,0,0.599,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.379,0.413 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.665,0.26 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0.602,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.546,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.532,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.691,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0.651,0.0372 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.543 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.141 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.286 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.277,0.277,0.467,0,0,0,0.374,0.5,0.5,0,0,0.177 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.269 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.0963 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.223 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0372 +1,0.353,0.353,0.5,0,0,0,0.488,0.641,0.641,0,0,0.26 +1,0.408,0.408,0.45,0.15,0,0,0.58,0.653,0.653,0.436,0,0.26 +1,0.518,0.518,0,0.767,0,0,0.616,0.616,0.616,0.596,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.573,0.255,0.207 +1,0.788,0.788,0,0,0.983,0,0.635,0.555,0.555,0.147,0.709,0.225 +1,0.571,0.571,0,0,0.267,0.2,0.543,0.493,0.493,0,0,0.102 +1,0.116,0.116,0,0,0,0.25,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0998 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.393 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.149 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.223 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.216 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.17 +0.333,0.142,0.142,0,0.15,0,0,0.267,0.491,0.491,0.403,0,0.0169 +0.333,0.143,0.143,0,0.767,0,0,0.27,0.499,0.499,0.204,0,0 +0.333,0.144,0.144,0.25,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0.217,0.4,0,0,0.411,0.582,0.582,0.622,0,0.223 +0.667,0.289,0.289,0,0.283,0,0,0.472,0.591,0.591,0.688,0,0.0743 +0.333,0.206,0.206,0.467,0,0,0,0.377,0.516,0.516,0,0,0.297 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.112 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0372 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.11 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0.95,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.0372 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.142,0.142,0,0,0.25,0,0.267,0.491,0.491,0,0.333,0.26 +0.333,0.143,0.143,0,0,0,0.45,0.27,0.499,0.499,0,0.428,0.0743 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.719,0.0743 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.528,0.0372 +0.667,0.289,0.289,0.95,0,0,0,0.472,0.591,0.591,0,0,0.0372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.297 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.513 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.126 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.113 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.146 +0.333,0.0495,0.0495,0,0,0.733,0,0.258,0.465,0.465,0,0.971,0 +0.667,0.156,0.156,0,0,0.767,0,0.242,0.487,0.487,0,0.419,0 +0.667,0.153,0.153,0,0,0,0.667,0.245,0.487,0.487,0,0.317,0.0743 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.0557 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.112 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.0671 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.165,0,0 +1,0.408,0.408,0,0.9,0,0,0.58,0.653,0.653,0.635,0,0.223 +0.667,0.362,0.362,0,0.0167,0,0,0.497,0.566,0.566,0.38,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.26 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.233,0,0,0,0.304,0.462,0.462,0,0,0.158 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.162,0.162,0.233,0,0,0,0.276,0.487,0.487,0,0,0.16 +0.333,0.156,0.156,0,0,0.483,0,0.242,0.487,0.487,0,0.165,0.174 +0.333,0.153,0.153,0,0,0.0167,0.45,0.245,0.487,0.487,0,0.717,0.335 +0.333,0.147,0.147,0,0,0,0.9,0.248,0.491,0.491,0,0.821,0.186 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.546,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.265,0.0372 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.841,0.112 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.667,0.144,0.144,0.95,0,0,0,0.291,0.507,0.507,0,0,0.335 +0.667,0.252,0.252,0,0,0.25,0,0.411,0.582,0.582,0,0.538,0 +0.667,0.289,0.289,0,0,0,0.95,0.472,0.591,0.591,0,0.581,0.149 +0.667,0.362,0.362,0,0,0,0.633,0.497,0.566,0.566,0,0.538,0.0372 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0.381,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.573,0 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0.281,0 +0.667,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0881 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.207 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.185 +0.667,0.274,0.274,0.717,0,0,0,0.294,0.508,0.508,0,0,0.118 +0.667,0.263,0.263,0.233,0,0,0,0.227,0.508,0.508,0,0,0.36 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.326 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0776 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.386 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.174 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.365 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.804 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.372 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.352 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.146 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.169 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.227 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.149 +0.667,0.235,0.235,1,0,0.233,0,0.276,0.517,0.517,0,0.339,0.149 +0.667,0.236,0.236,0.433,0,0.517,0,0.282,0.533,0.533,0,0.485,0 +0.667,0.144,0.144,0,0,0,0.95,0.291,0.507,0.507,0,0.45,0.0743 +0.667,0.252,0.252,0,0,0,0.167,0.411,0.582,0.582,0,0.459,0.0743 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.185,0.0372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.256,0.256,0,0.4,0,0,0.39,0.503,0.503,0.638,0,0.0743 +0.667,0.542,0.542,0,0.517,0,0,0.509,0.525,0.525,0.601,0,0.0372 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0.529,0,0.186 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.186 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.163,0.163,0.233,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.112 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.0887,0 +0.333,0.143,0.143,0,0,0.25,0.2,0.245,0.495,0.495,0,0,0.112 +0.667,0.142,0.142,0,0,0,0.7,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.149 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.0372 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.473 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.293 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.142 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0907 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.185 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.198 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.236 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.149 +0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0.446 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.149 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.504 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.0372 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.227 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.147,0.147,0.233,0,0,0,0.248,0.491,0.491,0,0,0.149 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.149 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0743 +0.667,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.0743 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0.467,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.128 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.223 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.206 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.0604 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.142 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.268 +0.667,0.252,0.252,0.467,0,0,0,0.411,0.582,0.582,0,0,0.0441 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.286 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0372 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.149 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.337 +1,0.397,0.397,0.233,0,0,0,0.448,0.484,0.484,0,0,0.308 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.016 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.346 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.0794 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.161 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.121 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.149 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.555 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.281 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.149 +0.333,0.169,0.169,0.233,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.196 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.601 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0534 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.142,0.142,0.217,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0957 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.161,0,0.112 +0.667,0.289,0.289,0,0.683,0,0,0.472,0.591,0.591,0.614,0,0.112 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.118 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.198 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.105 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.297 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.164 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.23 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.147,0.147,0.233,0,0,0,0.248,0.491,0.491,0,0,0.141 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.121 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.186 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.409 +0.333,0.169,0.169,0,0.65,0,0,0.365,0.528,0.528,0.837,0,0.35 +0.667,0.362,0.362,0.717,0.267,0,0,0.497,0.566,0.566,0.111,0,0.458 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.171 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.404 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.26 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.0914 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.669 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.138 +0.667,0.256,0.256,0.467,0,0,0,0.233,0.508,0.508,0,0,0.315 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.26 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.186 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.107 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.186 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.18 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.102 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.405 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.299 +0.667,0.163,0.163,0.5,0.15,0,0,0.316,0.483,0.483,0.353,0,0.226 +0.333,0.162,0.162,0.217,0.533,0,0,0.276,0.487,0.487,0.506,0,0.0743 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0.675,0,0 +0.333,0.153,0.153,0,0,0.25,0,0.245,0.487,0.487,0.733,0.566,0.0743 +0.333,0.147,0.147,0,0,0,0.45,0.248,0.491,0.491,0,0.472,0.0372 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.343,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.187 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.333,0.151,0.151,0.233,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0372 +1,0.518,0.518,0,0.4,0,0,0.616,0.616,0.616,0.59,0,0.186 +0.667,0.256,0.256,0,0.517,0,0,0.39,0.503,0.503,0.124,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.167,0,0 +1,0.05,0.05,0,0.9,0,0,0.273,0.442,0.442,0.536,0,0.0881 +1,0.104,0.104,0,0.0167,0.233,0,0.307,0.426,0.426,0.351,0.304,0.499 +0.667,0.136,0.136,0,0,0.517,0,0.304,0.462,0.462,0,0.78,0 +1,0.39,0.39,0,0,0,0.95,0.432,0.518,0.518,0,0.697,0.222 +1,0.387,0.387,0,0,0,0.4,0.313,0.53,0.53,0,0.43,0.0906 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.414,0.0776 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.396,0.223 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.497,0.0372 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.558,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.375,0.0743 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.318,0.236 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.7,0.149 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.41,0.0372 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0.709,0.223 +0.667,0.289,0.289,0.467,0,0,0,0.472,0.591,0.591,0,0.687,0.149 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0.19,0.142 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.153 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0743 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.132 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.15 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0372 +0.667,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.26 +0.667,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.2 +0.667,0.462,0.462,0,0,0.733,0,0.521,0.541,0.541,0,0.128,0.159 +0.667,0.296,0.296,0,0,0.0167,0.45,0.383,0.495,0.495,0,0,0.335 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.223 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.149 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116 +1,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0743 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.223 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.289,0.289,0,0.45,0.483,0,0.472,0.591,0.591,0.77,0.407,0.223 +0.333,0.206,0.206,0,0,0.267,0.2,0.377,0.516,0.516,0.113,0.596,0 +0.333,0.256,0.256,0,0,0,0.467,0.39,0.503,0.503,0,0.324,0.0372 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0.847,0.223 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0.343,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0.467,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.409 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0.467,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.141,0,0.159 +0.667,0.289,0.289,0,0.683,0,0,0.472,0.591,0.591,0.675,0,0.0699 +0.667,0.362,0.362,0,0,0.233,0,0.497,0.566,0.566,0,0.242,0.0743 +0.667,0.462,0.462,0,0,0.0167,0.45,0.521,0.541,0.541,0,0.396,0 +0.667,0.542,0.542,0,0,0,0.667,0.509,0.525,0.525,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.185 +0.667,0.245,0.245,0.233,0,0,0,0.239,0.517,0.517,0,0,0.17 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0.75,0,0,0,0.276,0.517,0.517,0,0,0.223 +0.667,0.236,0.236,0.45,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.41 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.38 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.202 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.272 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.206,0 +1,0.277,0.277,0,0,0.267,0.2,0.374,0.5,0.5,0,0.794,0.0712 +0.667,0.162,0.162,0,0,0,0.917,0.276,0.487,0.487,0,0.00459,0.104 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.258 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.29 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.282 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.223 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.116 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.186 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.242 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0715 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0919 +0.667,0.277,0.277,0.467,0,0,0,0.374,0.5,0.5,0,0,0.209 +0.667,0.274,0.274,0,0.45,0,0,0.294,0.508,0.508,0.558,0,0.219 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0.672,0,0 +0.667,0.256,0.256,0.5,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,1,0,0,0,0.239,0.517,0.517,0,0,0.0743 +0.333,0.143,0.143,0.417,0,0,0,0.245,0.495,0.495,0,0,0.149 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.186 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.397,0.397,0.233,0,0,0,0.448,0.484,0.484,0,0,0.149 +1,0.183,0.183,0,0.45,0,0,0.393,0.451,0.451,0.404,0,0.186 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.153 +1,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0.201 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.119 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.37 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.151 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0.25,0,0,0,0.325,0.549,0.549,0,0,0.52 +1,0.353,0.353,0.217,0,0,0,0.488,0.641,0.641,0,0,0.149 +0.667,0.289,0.289,0.467,0,0,0,0.472,0.591,0.591,0,0,0.112 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.372 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.149 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.375 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.508 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0992 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0814 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0.217,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0.717,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.186 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0743 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.472 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.496 +0.667,0.136,0.136,0.467,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0372 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.303,0 +0.333,0.143,0.143,0,0,0.0167,0.45,0.245,0.495,0.495,0,0.576,0.186 +0.333,0.142,0.142,0.467,0,0,0.667,0.258,0.495,0.495,0,0.72,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.202,0.207 +0.667,0.236,0.236,0,0,0.25,0,0.282,0.533,0.533,0,0.569,0 +0.667,0.239,0.239,0,0,0,0.45,0.325,0.549,0.549,0,0.416,0 +1,0.353,0.353,0.467,0.4,0,0,0.488,0.641,0.641,0.69,0,0.112 +0.667,0.289,0.289,0,0.517,0,0,0.472,0.591,0.591,0.148,0,0.0372 +0.667,0.362,0.362,0,0.217,0,0,0.497,0.566,0.566,0.583,0,0.223 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.223,0.223,0.233,0,0,0,0.353,0.475,0.475,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.257 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.409 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.252,0.252,0,0.65,0,0,0.411,0.582,0.582,0.536,0,0.149 +1,0.408,0.408,0,0.267,0,0,0.58,0.653,0.653,0.666,0,0.599 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.138 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.239 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0721 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.398 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.325 +0.667,0.27,0.27,0.417,0,0,0,0.234,0.511,0.511,0,0,0.485 +0.667,0.259,0.259,0.3,0,0,0,0.24,0.519,0.519,0,0,0.112 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.314 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.175 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.222 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.113 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.372 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.112 +0.667,0.454,0.454,0,0.567,0,0,0.5,0.569,0.569,0.631,0,0.582 +1,0.806,0.806,0,0.367,0,0,0.658,0.583,0.583,0,0,0.199 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.299 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0675 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0.0667,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.182 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.117 +0.667,0.168,0.168,0.233,0,0,0,0.277,0.488,0.488,0,0.0138,0 +0.667,0.278,0.278,0,0,0.75,0,0.228,0.511,0.511,0,0.748,0.149 +0.667,0.27,0.27,0,0,0,0.45,0.234,0.511,0.511,0,0.425,0.26 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0.687,0.186 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.416,0.0743 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.436,0.0743 +0.667,0.249,0.249,0.167,0,0,0,0.277,0.519,0.519,0,0.257,0 +0.667,0.251,0.251,0.317,0,0,0,0.284,0.536,0.536,0,0.492,0.26 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.514,0.223 +0.667,0.286,0.286,0.717,0,0,0,0.413,0.585,0.585,0,0.0749,0.0372 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.135 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.214 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.208 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.169 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.262 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.296 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0372 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.0864 +1,0.228,0.228,0.483,0,0,0,0.352,0.461,0.461,0,0,0.0896 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.177 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.413 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.355 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0372 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0372 +0.667,0.249,0.249,0,0,0.233,0,0.259,0.528,0.528,0,0.318,0.0743 +0.333,0.149,0.149,0,0,0.267,0.2,0.268,0.492,0.492,0,0.171,0 +0.667,0.251,0.251,0,0,0.233,0.0167,0.284,0.536,0.536,0,0.234,0.112 +0.667,0.259,0.259,0,0,0.0167,0.45,0.327,0.552,0.552,0,0.696,0.149 +0.667,0.286,0.286,0,0,0,0.467,0.413,0.585,0.585,0,0,0.0743 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.448 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.308 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.283 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.223 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.314,0.42,0.42,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.107,0.107,0.467,0,0,0,0.308,0.428,0.428,0,0,0.308 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.269 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.0697 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.241 +0.667,0.278,0.278,0.483,0,0,0,0.228,0.511,0.511,0,0,0.104 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.186 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.112 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0743 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.186 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0743 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.186 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.126 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.147 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221 +0.667,0.164,0.164,0.233,0,0,0,0.243,0.488,0.488,0,0,0.405 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.196 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.27 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.223 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.545 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0587 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.149 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.421 +0.667,0.284,0.284,0,0,0.233,0,0.376,0.503,0.503,0,0.193,0.0511 +0.333,0.168,0.168,0,0,0.517,0,0.277,0.488,0.488,0,0.349,0 +0.333,0.164,0.164,0,0,0,0.917,0.243,0.488,0.488,0,0.379,0.112 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0.642,0.297 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0.541,0.112 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0.497,0.335 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.781,0.0372 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.216,0.0743 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.642,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.485,0.0372 +0.667,0.286,0.286,0.967,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0372 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.333,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0743 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.143 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.38 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.295 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0689 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.156 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0619 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.271 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.258 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.415 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.26 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.112 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.168,0.168,0.967,0.4,0,0,0.336,0.525,0.525,0.558,0,0.26 +0.667,0.351,0.351,0,0.0667,0,0,0.475,0.594,0.594,0.436,0,0.0743 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.112 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.14 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.087 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.255 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.282 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0.417,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0.0667,0,0,0,0.268,0.492,0.492,0,0,0.112 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0743 +0.667,0.154,0.154,0.417,0,0,0,0.292,0.509,0.509,0,0,0.0743 +1,0.404,0.404,0.0667,0,0,0,0.491,0.646,0.646,0,0,0.112 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.372 +1,0.656,0.656,0,0.0667,0,0,0.621,0.621,0.621,0.26,0,0.141 +0.667,0.554,0.554,0,0.867,0,0,0.525,0.544,0.544,0.495,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0743 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0863 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.0173 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.113 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.749 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.261 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.192 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.185 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.461 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0.249 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.321 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.274 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.421 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0776 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.104 +0.333,0.2,0.2,0.233,0,0,0,0.366,0.53,0.53,0,0,0.186 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.213 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0.467,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0.5,0,0,0,0.305,0.463,0.463,0,0,0.149 +0.667,0.167,0.167,0.217,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.104 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.328 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.186 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.364 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.223 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.421 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.155 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.228,0.228,1,0,0,0,0.352,0.461,0.461,0,0,0.137 +1,0.284,0.284,0.65,0,0,0,0.376,0.503,0.503,0,0,0.206 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.245 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.295 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.259 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.415 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0,0.0495,0.0495,0.233,0,0.233,0,0.258,0.465,0.465,0,0.42,0.0372 +0.333,0.154,0.154,0.717,0,0.783,0,0.292,0.509,0.509,0,0.517,0 +0.667,0.286,0.286,0,0,0,0.683,0.413,0.585,0.585,0,0.466,0 +0.667,0.351,0.351,0,0,0,0.233,0.475,0.594,0.594,0,0.638,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0429 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.224 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0743 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.178,0,0.0743 +0.667,0.351,0.351,0,0.7,0,0,0.475,0.594,0.594,0.403,0,0.0372 +0.333,0.252,0.252,0,0.4,0,0,0.379,0.517,0.517,0.746,0,0.186 +0.667,0.554,0.554,0,0.3,0,0,0.525,0.544,0.544,0.106,0,0.112 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.149 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.204 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.231 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.26 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.533 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.368 +0.333,0.164,0.164,0,0.4,0,0,0.243,0.488,0.488,0.692,0,0.141 +0.333,0.16,0.16,0,0.533,0,0,0.246,0.488,0.488,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.205 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.273 +0.333,0.149,0.149,0,0,0.233,0,0.258,0.496,0.496,0,0.272,0.53 +0,0.0495,0.0495,0,0,0.783,0,0.258,0.465,0.465,0,0.414,0.0372 +0.333,0.15,0.15,0,0,0,0.683,0.271,0.501,0.501,0,0.436,0 +0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0372 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0372 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.192 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0527 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.106 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0.279 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0.25,0,0,0,0.277,0.488,0.488,0,0,0.183 +0.667,0.278,0.278,0.233,0,0,0,0.228,0.511,0.511,0,0,0.0881 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.175 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.228 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.341 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.372 +0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.234 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0.65,0,0.277,0.488,0.488,0,0.67,0 +1,0.164,0.164,0,0,0.617,0,0.243,0.488,0.488,0,0.544,0 +1,0.16,0.16,0,0,0,0.683,0.246,0.488,0.488,0,0.317,0.0372 +1,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0.164,0.0743 +1,0.251,0.251,0,0,0.25,0,0.234,0.528,0.528,0,0.323,0.223 +0.667,0.149,0.149,0,0,0,0.617,0.258,0.496,0.496,0,0.774,0.378 +1,0.349,0.349,0,0,0,0.767,0.287,0.546,0.546,0,0.361,0.295 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.451 +1,0.363,0.363,0.233,0,0,0,0.361,0.596,0.596,0,0,0.454 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.179 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0.128,0.0743 +0.667,0.554,0.554,0,0,0.25,0.117,0.525,0.544,0.544,0,0.549,0.0372 +0.667,0.584,0.584,0,0,0,0.8,0.512,0.528,0.528,0,0.722,0.186 +0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.661,0.0372 +0.667,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.229,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.112 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.64 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.479 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.333,0.149,0.149,0.167,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.667,0.251,0.251,0.317,0,0,0,0.284,0.536,0.536,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.186 +0.333,0.2,0.2,0.483,0,0,0,0.366,0.53,0.53,0,0,0.112 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.297 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.12 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.344,0.25 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0741 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0887 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.144 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.101,0 +0.667,0.16,0.16,0,0,0.983,0,0.246,0.488,0.488,0,0.44,0.262 +0.667,0.154,0.154,0.483,0,0.0333,0.433,0.249,0.492,0.492,0,0,0.172 +0.667,0.15,0.15,0,0,0,0.0167,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0.15,0,0,0.258,0.496,0.496,0.417,0,0 +0.667,0.149,0.149,0,0.783,0,0,0.268,0.492,0.492,0.393,0.295,0.0372 +0.667,0.251,0.251,0,0,0.5,0,0.284,0.536,0.536,0,0.555,0.335 +0.667,0.259,0.259,0,0,0,0.95,0.327,0.552,0.552,0,0.414,0.186 +0.667,0.286,0.286,0,0,0,0.2,0.413,0.585,0.585,0.182,0.509,0.0743 +0.667,0.351,0.351,0,0.7,0,0,0.475,0.594,0.594,0.391,0.361,0.223 +0.667,0.454,0.454,0,0.65,0,0,0.5,0.569,0.569,0.677,0,0 +0.667,0.554,0.554,0.483,0.05,0,0,0.525,0.544,0.544,0,0,0.335 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0743 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.331 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.223 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.287,0 +0.667,0.15,0.15,0,0,0.75,0,0.271,0.501,0.501,0,0.0612,0.223 +0.667,0.154,0.154,0,0,0,0.217,0.292,0.509,0.509,0,0,0.149 +0.667,0.168,0.168,0.233,0,0,0,0.336,0.525,0.525,0,0,0.149 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.324 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.102 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0743 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.149 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0743 +0.333,0.2,0.2,0.483,0,0,0,0.366,0.53,0.53,0,0,0.128 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.229 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.206 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0934 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0808 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.173 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.109 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.296 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.286 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.313 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.274 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.437 +0.667,0.15,0.15,0.233,0,0,0,0.271,0.501,0.501,0,0,0.296 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0372 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.319 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.317 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.318 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.08 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.262 +0.667,0.0781,0.0781,0.25,0,0,0,0.283,0.447,0.447,0,0,0 +0.333,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.14 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0372 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.152 +0.333,0.15,0.15,0.233,0,0,0,0.271,0.501,0.501,0,0,0.235 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0372 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.112 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.112 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0817 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.119 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.186 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.149 +0.333,0.15,0.15,0.417,0,0,0,0.271,0.501,0.501,0,0,0.0743 +0.333,0.154,0.154,0.55,0,0,0,0.292,0.509,0.509,0,0,0.297 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0743 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.413 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.153 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0835 +1,0.139,0.139,0.417,0,0,0,0.305,0.463,0.463,0,0,0.138 +0.667,0.167,0.167,0.3,0,0,0,0.317,0.484,0.484,0,0,0.472 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.112 +0.667,0.16,0.16,0.233,0,0,0,0.246,0.488,0.488,0,0,0.112 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.186 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0372 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0648 +0.667,0.286,0.286,0.167,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0.55,0.317,0,0,0.475,0.594,0.594,0.407,0,0.0372 +1,0.454,0.454,0,0.383,0,0,0.5,0.569,0.569,0.231,0,0.149 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.232 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.321 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.152 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0465 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.132 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.297 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.0352,0.26 +0.333,0.149,0.149,0,0,0.75,0,0.268,0.492,0.492,0,0.503,0 +0.333,0.15,0.15,0,0,0,0.7,0.271,0.501,0.501,0,0.572,0.186 +0.333,0.154,0.154,0,0,0,0.45,0.292,0.509,0.509,0.113,0.0703,0.0372 +0.333,0.168,0.168,0,0.467,0,0,0.336,0.525,0.525,0.59,0,0.122 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.332 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.163 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.214 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.0762 +1,0.0503,0.0503,0.233,0,0,0,0.274,0.443,0.443,0,0,0.096 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.532 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.253 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.235 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0743 +0.333,0.164,0.164,0,0.15,0,0,0.243,0.488,0.488,0.363,0,0.409 +0.333,0.16,0.16,0,0.55,0,0,0.246,0.488,0.488,0.268,0,0.112 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.236 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0775 +0.667,0.286,0.286,0.25,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.667,0.351,0.351,0.95,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0.233,0,0,0,0.5,0.569,0.569,0,0,0.0743 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.322 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0942 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.0837 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.168 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.26 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0.25,0,0,0,0.292,0.509,0.509,0,0,0.112 +0.667,0.286,0.286,0.233,0,0,0,0.413,0.585,0.585,0.171,0,0.112 +1,0.501,0.501,0,0.9,0,0,0.584,0.658,0.658,0.811,0,0.203 +0.667,0.454,0.454,0,0.0333,0,0,0.5,0.569,0.569,0.664,0,0.0743 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0.731,0,0.0743 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.247 +0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.125 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0.483,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.149 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.372 +0.333,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0.149 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.166 +0.667,0.286,0.286,0,0.65,0,0,0.413,0.585,0.585,0.414,0,0 +0.667,0.351,0.351,0,0.433,0,0,0.475,0.594,0.594,0.423,0,0 +0.667,0.454,0.454,0,0.783,0,0,0.5,0.569,0.569,0.258,0,0.186 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0372 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0604 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.191 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0372 +0.333,0.154,0.154,0,0.65,0.25,0,0.249,0.492,0.492,0.972,0.317,0.0743 +0.333,0.15,0.15,0,0.283,0,0.683,0.246,0.496,0.496,0,0.274,0.0372 +0.333,0.149,0.149,0.967,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.0743 +1,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.43 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.26 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.444 +0.333,0.302,0.302,0,0.15,0,0,0.391,0.505,0.505,0.419,0,0.0814 +0.667,0.584,0.584,0,0.55,0,0,0.512,0.528,0.528,0.124,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0802 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.196 +1,0.284,0.284,0.667,0,0,0,0.376,0.503,0.503,0,0,0.127 +1,0.286,0.286,0.05,0,0.25,0,0.296,0.511,0.511,0,0.479,0 +0.667,0.278,0.278,0,0,0,0.45,0.228,0.511,0.511,0,0.543,0.112 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.625,0.0743 +0.667,0.259,0.259,0,0.567,0,0,0.24,0.519,0.519,0.738,0,0.112 +0.667,0.251,0.251,0,0.133,0,0,0.234,0.528,0.528,0.145,0,0.0372 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.186 +1,0.349,0.349,0.233,0,0,0,0.287,0.546,0.546,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.615 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.454,0.454,1,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0.267,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.239 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0508 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0825 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.444 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.217 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.553 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.196 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.379 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0832 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.124 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0657,0 +1,0.236,0.236,0.75,0,0.233,0.217,0.404,0.522,0.522,0,0.709,0.0729 +1,0.295,0.295,0,0,0,0.0167,0.433,0.571,0.571,0,0.372,0.181 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0.281,0.257 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.0917,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.186 +0.333,0.159,0.159,0,0.65,0,0,0.275,0.533,0.533,0.694,0,0 +0.333,0.159,0.159,0,0.333,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.325 +1,0.417,0.417,0,0,0.7,0,0.433,0.713,0.713,0,0.269,0.384 +1,0.501,0.501,0.25,0,0,0.5,0.588,0.773,0.773,0,0,0.112 +0.667,0.453,0.453,0,0,0,0.45,0.552,0.68,0.68,0,0,0.186 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0743 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.123 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0958 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0496 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.115 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0743 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0372 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.424 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.117 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.158 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.259 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.191 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.283 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.596 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.261 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.176 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.293 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0372 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.112 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.149 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0372 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.246 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.133 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.157 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.047 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.509 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.355 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.054 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.326 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.226 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.149 +0.333,0.159,0.159,0.75,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.0372 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.26 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0372 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.18 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.367 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.12 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.171 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.112 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.16 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.381 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.303 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.335 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.0372 +0.667,0.335,0.335,0.25,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0984 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.223 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0.733,0,0.309,0.469,0.469,0,0.344,0 +1,0.0495,0.0495,0,0,0.2,0.267,0.305,0.464,0.464,0,0.344,0 +1,0.0495,0.0495,0,0,0,0.917,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.22 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.376 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.186 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.351 +0.667,0.291,0.291,0.25,0,0.483,0,0.263,0.581,0.581,0,0.344,0.0938 +0.667,0.279,0.279,0,0,0.7,0,0.271,0.591,0.591,0,0.454,0 +0.333,0.16,0.16,0,0,0,0.767,0.261,0.533,0.533,0,0.466,0.0743 +0.333,0.159,0.159,0,0,0,0.183,0.275,0.533,0.533,0,0.763,0.112 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.431,0.186 +0.667,0.162,0.162,0.75,0,0,0,0.29,0.538,0.538,0,0.827,0 +1,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.149 +0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0,0,0.52 +0.667,0.569,0.569,0.75,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.149 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.363 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.128 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0496 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.16 +1,0.301,0.301,0.5,0,0,0,0.337,0.581,0.581,0,0,0.385 +1,0.424,0.424,0.25,0,0,0,0.255,0.639,0.639,0,0,0.346 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.146 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.186 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.149 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0372 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.905,0.905,0.5,0,0,0,0.788,0.698,0.698,0,0,0.335 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.245 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.187 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0797 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0983 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.234 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.26 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0372 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.297 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.207 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.38 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.217 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +0.667,0.143,0.143,0.25,0,0,0,0.331,0.493,0.493,0,0,0.29 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0907 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.499 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0.426 +0.667,0.291,0.291,0.75,0,0,0,0.263,0.581,0.581,0,0,0.47 +0.333,0.164,0.164,0.75,0,0,0,0.264,0.528,0.528,0,0,0.249 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.186 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0926 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.293 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.403 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.26 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.236 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.286 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0.25,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0.111,0,0.137 +0.333,0.175,0.175,0,0.733,0,0,0.298,0.523,0.523,0.698,0,0.151 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0.857,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.116 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.388 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0406 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.439 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.382 +0.333,0.172,0.172,0.5,0,0,0,0.316,0.548,0.548,0,0,0.136 +0.667,0.35,0.35,0.75,0,0,0,0.478,0.67,0.67,0,0,0.186 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0743 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.298 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.423 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0907 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.245 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.172,0.172,0,0,0.233,0,0.316,0.548,0.548,0,0.0917,0 +0.333,0.2,0.2,0,0,0.467,0,0.368,0.568,0.568,0,0,0.135 +0.333,0.251,0.251,0,0,0,1,0.405,0.573,0.573,0,0,0.212 +0.333,0.309,0.309,0,0,0,0.183,0.42,0.558,0.558,0,0,0.409 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.149 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.112 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.145 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.124 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0372 +0.333,0.164,0.164,0,0,0.233,0,0.264,0.528,0.528,0,0.339,0 +0.333,0.16,0.16,0,0,0.7,0,0.261,0.533,0.533,0,0.63,0 +0.333,0.159,0.159,0,0,0,0.767,0.275,0.533,0.533,0,0.583,0.186 +0.333,0.159,0.159,0,0,0,0.417,0.286,0.528,0.528,0,0.693,0.0372 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.44,0.26 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.349,0.26 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.229,0.112 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.26 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0411 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.169,0,0 +1,0.175,0.175,0.5,0.733,0,0,0.298,0.523,0.523,0.744,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.192 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.136 +0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0,0.143 +0.333,0.16,0.16,1,0,0,0,0.261,0.533,0.533,0,0,0.112 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.101 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.084 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.186 +0.333,0.309,0.309,0.75,0,0,0,0.42,0.558,0.558,0,0,0.112 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.18 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.264 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.105 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.361 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.121 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.347 +0.333,0.17,0.17,0.5,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.269,0.269,0.25,0,0,0,0.293,0.601,0.601,0,0,0.112 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.149 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.223 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0743 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.246 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.389 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.488 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.687 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.197 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.5,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.459 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.318 +0.667,0.175,0.175,0,0.4,0,0,0.298,0.523,0.523,0.635,0,0.0372 +0.667,0.299,0.299,0,0.583,0,0,0.256,0.581,0.581,0.408,0,0 +0.667,0.291,0.291,0,0.65,0.233,0,0.263,0.581,0.581,0.635,0.627,0.0743 +1,0.394,0.394,0.75,0.333,0,0.95,0.277,0.654,0.654,0.221,0.534,0 +1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0.353,0 +1,0.269,0.269,0,0.15,0,0,0.293,0.601,0.601,0.458,0.246,0 +1,0.269,0.269,0,0.583,0,0,0.315,0.591,0.591,0.124,0,0.105 +0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.26 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0743 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.397 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.158 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.265 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.135 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.19 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.42 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0624 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.207 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.283 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0743 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.43 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.213 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.26 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.223 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.297 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0954 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.2,0.2,0,0,0.233,0,0.368,0.568,0.568,0,0.563,0.0372 +0.667,0.453,0.453,0,0,0,0.7,0.552,0.68,0.68,0,0.0841,0.149 +0.667,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.0372 +0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.384 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.216 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.424 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.333,0.172,0.172,0.25,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.0743 +1,0.655,0.655,0.5,0.4,0,0,0.699,0.788,0.788,0.718,0.133,0.0743 +1,0.829,0.829,0,0.583,0.467,0,0.743,0.743,0.743,0.605,0.459,0.436 +1,0.905,0.905,0,0,0,0.7,0.788,0.698,0.698,0.178,0.401,0.201 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.717,0.229 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.596,0.0743 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.572,0.149 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0.494,0.0372 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0.349,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.084 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0372 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0.5,0,0.467,0,0.346,0.518,0.518,0,0.639,0.26 +1,0.301,0.301,0,0,0,0.467,0.337,0.581,0.581,0,0.844,0.0743 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0.543,0 +0.333,0.17,0.17,0.25,0,0,0,0.261,0.523,0.523,0,0.774,0.186 +0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0.493,0.0372 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0.365,0.409 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0.7,0,0.258,0.465,0.465,0,0.534,0 +0.333,0.309,0.309,0,0,0,0.233,0.42,0.558,0.558,0,0.361,0 +0.333,0.335,0.335,0.25,0,0,0,0.434,0.543,0.543,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.2 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.352 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.162 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.268 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.223 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.122,0,0.252 +1,0.829,0.829,0,0.733,0,0,0.743,0.743,0.743,0.557,0,0.307 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.447 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0743 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.318 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.289 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.75,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.149 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0372 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.372 +0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0,0,0.26 +0.667,0.569,0.569,0.5,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.203,0.0372 +1,0.116,0.116,0,0,0.233,0.233,0.357,0.489,0.489,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0.95,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0966 +0.667,0.279,0.279,0.25,0,0,0,0.271,0.591,0.591,0,0,0.254 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.223 +0.333,0.172,0.172,0,0.65,0,0,0.316,0.548,0.548,0.742,0,0 +0.667,0.35,0.35,0,0.0833,0,0,0.478,0.67,0.67,0.738,0,0.269 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.677,0,0.418 +0.667,0.569,0.569,0.5,0,0,0,0.581,0.65,0.65,0.72,0,0.149 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.705,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.101,0.105 +1,0.301,0.301,0.5,0,0.233,0.217,0.337,0.581,0.581,0,0,0.258 +1,0.299,0.299,0,0,0,0.0167,0.256,0.581,0.581,0,0,0.385 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.194 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0.75,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0.75,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112 +0.667,0.569,0.569,0,0.15,0,0,0.581,0.65,0.65,0.38,0,0.149 +0.667,0.62,0.62,0,0.733,0,0,0.611,0.621,0.621,0.573,0,0.166 +0.667,0.564,0.564,0,0.0833,0,0,0.596,0.601,0.601,0.28,0,0.518 +0.667,0.356,0.356,0.25,0,0,0,0.522,0.551,0.551,0,0,0.24 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.119 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.173 +0.333,0.0495,0.0495,0,0.15,0,0,0.258,0.465,0.465,0.375,0,0 +0.333,0.174,0.174,0,0.833,0,0,0.257,0.523,0.523,0.562,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0.679,0,0.297 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.584,0,0.0743 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0.703,0,0.112 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0.733,0,0.0372 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0.434,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0.635,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0.67,0,0.186 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.186 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.112 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0372 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.162 +1,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.0837 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.667,0.17,0.17,0.5,0,0,0,0.261,0.523,0.523,0,0,0.26 +0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0,0.149 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.112 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0.112 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0.149 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.186 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.186 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.0743,0.0743,0.5,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0.25,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.246 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.118 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.269 +0.333,0.16,0.16,0.25,0,0,0,0.261,0.533,0.533,0,0,0.211 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.155 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.227 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.442 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.146 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.149 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.149 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.114 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0905 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.379 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.137 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.164,0.164,0.75,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.75,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.667,0.274,0.274,0.5,0,0.233,0,0.323,0.611,0.611,0,0.225,0.112 +0.667,0.294,0.294,0,0,0,0.467,0.374,0.631,0.631,0,0.55,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.0372 +0.667,0.453,0.453,0.5,0,0,0,0.552,0.68,0.68,0.147,0,0.0372 +0.667,0.569,0.569,0,0.733,0,0,0.581,0.65,0.65,0.794,0,0.0743 +0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.0743 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.0372 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.546 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.103 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0986 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.186 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.349 +0.667,0.279,0.279,0.25,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.667,0.274,0.274,0,0,0.233,0,0.323,0.611,0.611,0,0.469,0.0743 +1,0.294,0.294,0,0,0,0.7,0.374,0.631,0.631,0,0.378,0.181 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.502,0.0743 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.106,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.0372 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.261 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.087 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.383 +0.667,0.279,0.279,0,0.4,0,0,0.271,0.591,0.591,0.503,0,0.23 +0.333,0.16,0.16,0,0.583,0,0,0.261,0.533,0.533,0.282,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0372 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.223 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372 +0.667,0.564,0.564,0,0.4,0,0,0.596,0.601,0.601,0.698,0,0.446 +0.667,0.356,0.356,0,0.583,0,0,0.522,0.551,0.551,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.075 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0743 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.196 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.284 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.233 +0.667,0.271,0.271,0,0,0.233,0,0.263,0.601,0.601,0,0.291,0.451 +0.667,0.269,0.269,0,0,0.7,0,0.293,0.601,0.601,0,0.242,0.376 +0.667,0.269,0.269,0.5,0,0,0.767,0.315,0.591,0.591,0,0,0.0788 +0.333,0.162,0.162,0,0,0,0.183,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.372 +1,0.501,0.501,0.25,0,0,0,0.588,0.773,0.773,0,0,0.0743 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.26 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +1,0.821,0.821,0,0.4,0,0,0.765,0.669,0.669,0.623,0,0.149 +1,0.356,0.356,0,0.0833,0,0,0.522,0.551,0.551,0.497,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0.818,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0.271,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0743 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.26 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0.617,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0.75,0,0,0,0.367,0.567,0.567,0,0,0.373 +1,0.946,0.946,0,0.267,0,0,0.697,0.785,0.785,0.484,0,0.0372 +0.667,0.339,0.339,0,0.517,0,0,0.419,0.557,0.557,0.135,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.263 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.21 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.175,0.175,0.617,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.647,0.647,0,0.517,0,0,0.55,0.679,0.679,0.594,0,0 +0.667,0.629,0.629,0,0.533,0,0,0.58,0.649,0.649,0.302,0,0.0372 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.186 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0888 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.532 +1,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0.0963 +0.667,0.184,0.184,0.133,0,0,0,0.297,0.523,0.523,0,0,0.163 +0.667,0.185,0.185,0.5,0,0,0,0.257,0.523,0.523,0,0,0.316 +0.333,0.181,0.181,0.0333,0,0,0,0.26,0.523,0.523,0,0,0.347 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.147 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.165 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.276 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.112 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.223 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.587,0 +1,0.051,0.051,0,0,0,0.967,0.293,0.468,0.468,0,0.644,0 +1,0.0816,0.0816,0,0,0,0.0667,0.305,0.473,0.473,0,0.569,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0.434,0.137 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0.584,0.107 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0.437,0.233 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0.72,0.235 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.218 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0372 +0.667,0.171,0.171,0.267,0,0,0,0.26,0.532,0.532,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.251 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.112 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.168 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.592 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.179 +0.333,0.348,0.348,0.267,0,0,0,0.404,0.572,0.572,0,0,0.186 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0 +0.333,0.282,0.282,0,0.25,0,0,0.434,0.542,0.542,0.844,0,0 +0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0.301,0,0.297 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.225 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0663 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.184,0.184,0,0,0.35,0,0.297,0.523,0.523,0,0.303,0.112 +1,0.321,0.321,0,0,0.583,0,0.255,0.58,0.58,0,0.887,0 +1,0.312,0.312,0,0,0,0.883,0.263,0.58,0.58,0,0.644,0 +0.667,0.175,0.175,0,0,0,0.15,0.264,0.528,0.528,0,0.528,0.112 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.624,0.223 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.402,0 +0.667,0.173,0.173,0,0.267,0,0,0.286,0.528,0.528,0.44,0,0.15 +0.667,0.338,0.338,0,0.517,0,0,0.322,0.609,0.609,0.527,0,0.0747 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0.267,0,0,0,0.477,0.669,0.669,0,0,0.112 +0.667,0.647,0.647,0.367,0.25,0,0,0.55,0.679,0.679,0.649,0.0489,0.0743 +0.667,0.629,0.629,0.167,0,0.467,0,0.58,0.649,0.649,0,0.234,0 +0.667,0.515,0.515,0,0,0,0.85,0.609,0.619,0.619,0,0,0.149 +0.667,0.394,0.394,0,0,0,0.7,0.595,0.6,0.6,0,0,0.0743 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0785 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0138,0 +0.333,0.0495,0.0495,0,0,0.233,0.0833,0.258,0.465,0.465,0,0.454,0 +0.333,0.185,0.185,0,0,0,0.95,0.257,0.523,0.523,0,0.434,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.401,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.446,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.289,0.191 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0743 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0,0.0167,0,0,0.316,0.547,0.547,0.263,0,0.297 +0.333,0.301,0.301,0,0.767,0,0,0.367,0.567,0.567,0.579,0,0.0743 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.0743 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.483 +0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.112 +0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.105 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.229 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.163 +1,0.0816,0.0816,0,0,0.233,0,0.305,0.473,0.473,0,0.445,0.0814 +1,0.245,0.245,0,0,0,0.583,0.403,0.521,0.521,0,0,0.108 +1,0.177,0.177,0,0,0,0.7,0.345,0.518,0.518,0,0,0.118 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0743 +0.333,0.185,0.185,0.117,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0.7,0,0,0,0.26,0.523,0.523,0,0,0.223 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0743 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.139 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.341 +1,0.804,0.804,0.267,0.0167,0,0,0.586,0.77,0.77,0.243,0,0.248 +0.333,0.348,0.348,0,0.233,0,0,0.404,0.572,0.572,0.291,0,0.112 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.223 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0372 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.281 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0323 +1,0.0816,0.0816,0.367,0,0,0,0.305,0.473,0.473,0,0,0.147 +1,0.245,0.245,0.167,0,0,0,0.403,0.521,0.521,0,0,0.0712 +0.667,0.177,0.177,0.117,0,0,0,0.345,0.518,0.518,0,0,0.131 +0.333,0.184,0.184,0.7,0.267,0.233,0,0.297,0.523,0.523,0.447,0.316,0.153 +0.333,0.185,0.185,0,0.783,0,0.583,0.257,0.523,0.523,0.236,0.18,0.0372 +0.333,0.181,0.181,0,0,0,0.967,0.26,0.523,0.523,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.171,0.171,0,0.0167,0,0,0.26,0.532,0.532,0.36,0,0.223 +0.333,0.169,0.169,0,0.5,0,0,0.275,0.532,0.532,0.892,0,0.0743 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.27 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.147 +0.667,0.647,0.647,0.533,0,0,0,0.55,0.679,0.679,0,0,1 +0.667,0.629,0.629,0,0.517,0,0,0.58,0.649,0.649,0.718,0,0.236 +0.667,0.515,0.515,0,0.533,0,0,0.609,0.619,0.619,0.171,0,0.166 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.137 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.17 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.109 +1,0.177,0.177,0,0,0.233,0,0.345,0.518,0.518,0,0.291,0 +1,0.184,0.184,0,0,0,0.25,0.297,0.523,0.523,0,0,0.0743 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.112 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.055,0 +0.333,0.348,0.348,0,0,0.467,0,0.404,0.572,0.572,0,0.332,0.149 +0.333,0.339,0.339,0,0,0,0.85,0.419,0.557,0.557,0,0,0.186 +0.333,0.282,0.282,0,0,0,0.433,0.434,0.542,0.542,0,0,0.149 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743 +0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0619 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.177,0.177,0.583,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.174 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.179 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.429 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.264 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0.4,0,0,0.258,0.465,0.465,0.584,0,0.0743 +0.333,0.194,0.194,0,0.383,0,0,0.29,0.537,0.537,0.113,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0372 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.186 +0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.129 +0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.149 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.169 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0539 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.161 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0864 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.263 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.262 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0887 +0.667,0.647,0.647,0.25,0,0,0,0.55,0.679,0.679,0,0,0.169 +0.667,0.629,0.629,0.567,0,0,0,0.58,0.649,0.649,0,0,0.174 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.279 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0743 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.335 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.163 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0922 +0.667,0.184,0.184,0.117,0,0,0,0.297,0.523,0.523,0,0,0.184 +0.667,0.321,0.321,0.15,0,0,0,0.255,0.58,0.58,0,0,0.0743 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0372 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.558 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0372 +0.667,0.173,0.173,0,0,0.233,0,0.286,0.528,0.528,0,0.00917,0.0372 +0.667,0.194,0.194,0,0,0,0.583,0.29,0.537,0.537,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0.183,0.258,0.465,0.465,0,0,0.0743 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.112 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.446 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.305,0.305,0,0.267,0,0,0.432,0.57,0.57,0.343,0,0.18 +1,0.452,0.452,0,0.517,0,0,0.376,0.637,0.637,0.26,0,0.0662 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.149 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0829 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0743 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.335 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.223 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.222 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.134 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0743 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.253 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.223 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.186 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.117,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0.417,0,0,0,0.316,0.547,0.547,0,0,0.0372 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.297 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.23 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.489 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.257 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.468 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.189 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0691 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.494 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.492 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.112 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.186 +0.667,0.338,0.338,0.267,0,0,0,0.322,0.609,0.609,0,0,0.112 +0.667,0.425,0.425,0,0,0.233,0,0.373,0.629,0.629,0,0.44,0.112 +0.667,0.553,0.553,0,0,0,0.833,0.477,0.669,0.669,0,0.599,0.112 +0.667,0.647,0.647,0,0,0,0.717,0.55,0.679,0.679,0,0.466,0.112 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0.43,0.333 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0.407,0 +0.667,0.394,0.394,0,0,0.233,0,0.595,0.6,0.6,0,0.356,0.244 +1,0.493,0.493,0,0,0,0.833,0.652,0.593,0.593,0,0.563,0.08 +1,0.249,0.249,0,0,0,0.2,0.553,0.533,0.533,0,0.538,0.0978 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.227 +1,0.066,0.066,0,0,0,0,0.359,0.481,0.481,0,0,0.118 +1,0.0495,0.0495,0,0,0,0,0.359,0.471,0.471,0,0,0.121 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.204 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.21 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.172 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.16 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.258 +0.667,0.3,0.3,0.967,0.0167,0,0,0.27,0.59,0.59,0.321,0,0.104 +0.667,0.292,0.292,0,0.767,0,0,0.263,0.6,0.6,0.612,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.186 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.149 +0.333,0.237,0.237,0.117,0,0,0,0.316,0.547,0.547,0,0,0.149 +0.333,0.301,0.301,0.7,0,0,0,0.367,0.567,0.567,0,0,0.149 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.0743 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.104 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.207 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.372 +0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.314 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0986 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.253 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.203 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.195 +0.667,0.171,0.171,0.267,0,0,0,0.26,0.532,0.532,0,0,0.119 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.225 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.195 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.149 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.186 +1,0.553,0.553,0,0.4,0.233,0,0.477,0.669,0.669,0.577,0.462,0.394 +0.667,0.647,0.647,0,0.383,0.467,0,0.55,0.679,0.679,0.338,0.206,0.0743 +0.667,0.629,0.629,0,0,0,0.25,0.58,0.649,0.649,0,0,0.0372 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.201 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.147 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.427 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0817 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0.372 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.335 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0743 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.223 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.13 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0344 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.12 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.186 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.667,0.171,0.171,0.617,0,0,0,0.26,0.532,0.532,0,0,0.384 +0.333,0.169,0.169,0.2,0,0,0,0.275,0.532,0.532,0,0,0.127 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0.117,0,0,0,0.322,0.609,0.609,0,0,0.0743 +0.667,0.425,0.425,0.417,0,0,0,0.373,0.629,0.629,0,0,0.0743 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.223 +0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.188 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.218 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.106 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0.167,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.186 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.26 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0684 +0.667,0.553,0.553,0.117,0,0,0,0.477,0.669,0.669,0,0,0.18 +0.667,0.647,0.647,0.15,0.267,0,0,0.55,0.679,0.679,0.479,0,0.112 +0.667,0.629,0.629,0,0.783,0,0,0.58,0.649,0.649,0.623,0,0.149 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0.44,0,0 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0.751,0,0.112 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0.712,0,0.0743 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0.315,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0.517,0,0,0.26,0.523,0.523,0.571,0,0.0743 +0.333,0.175,0.175,0,0.267,0,0,0.264,0.528,0.528,0.0983,0,0.26 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.335 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.186 +0.333,0.301,0.301,0.617,0,0.6,0,0.367,0.567,0.567,0,0.616,0.0372 +0.667,0.647,0.647,1,0,0.567,0,0.55,0.679,0.679,0,0.274,0.149 +0.667,0.629,0.629,1,0,0,0.9,0.58,0.649,0.649,0,0,0 +0.333,0.282,0.282,0.4,0,0,0.383,0.434,0.542,0.542,0,0,0.186 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0.15,0,0,0,0.345,0.518,0.518,0,0,0.0372 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.0528,0.0372 +0.333,0.185,0.185,0,0,0.467,0,0.257,0.523,0.523,0,0.565,0.142 +0.333,0.181,0.181,0,0,0,0.85,0.26,0.523,0.523,0,0.636,0 +0.333,0.175,0.175,0,0,0,0.95,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.239 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0.367,0,0,0,0.367,0.567,0.567,0,0,0.0372 +0.333,0.348,0.348,0.167,0,0,0,0.404,0.572,0.572,0,0,0 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.372 +1,0.566,0.566,0,0,0.233,0,0.763,0.667,0.667,0,0.286,0.112 +1,0.345,0.345,0,0.0167,0,0.583,0.521,0.55,0.55,0.223,0.63,0.0372 +1,0.116,0.116,0,0.767,0,0.883,0.356,0.488,0.488,0.456,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0.533,0,0,0,0.308,0.468,0.468,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0.117,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0.15,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.171 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.322 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.409 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.149 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.26 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.242 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.551 +0.667,0.629,0.629,0.117,0,0,0,0.58,0.649,0.649,0,0,0.112 +0.667,0.515,0.515,0.417,0,0,0,0.609,0.619,0.619,0,0,0.0372 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.112 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372 +1,0.116,0.116,0,0,0,0.0833,0.356,0.488,0.488,0,0,0.266 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0.0983,0,0 +1,0.177,0.177,1,0.9,0,0,0.345,0.518,0.518,0.66,0,0 +0.667,0.184,0.184,0.133,0.15,0,0,0.297,0.523,0.523,0.575,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.731,0,0.0928 +0.667,0.181,0.181,0.5,0,0,0,0.26,0.523,0.523,0,0,0.283 +0.667,0.3,0.3,0.0333,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0372 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0743 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0743 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.372 +0.667,0.553,0.553,0,0,0.233,0,0.477,0.669,0.669,0,0.138,0.112 +0.667,0.647,0.647,0,0,0,0.467,0.55,0.679,0.679,0,0.411,0.149 +0.667,0.629,0.629,0,0,0,0.817,0.58,0.649,0.649,0,0.63,0.149 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0.131,0.256 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0746 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.149 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.488 +0.667,0.301,0.301,0.25,0,0,0,0.367,0.567,0.567,0,0,0.532 +1,0.647,0.647,0.0167,0,0,0,0.55,0.679,0.679,0,0,0.267 +1,0.919,0.919,0,0,0.483,0,0.741,0.741,0.741,0,0.479,0 +1,0.747,0.747,0,0,0.217,0.25,0.785,0.696,0.696,0,0,0.112 +1,0.566,0.566,0,0,0,0.267,0.763,0.667,0.667,0,0,0.26 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0.617,0,0,0,0.305,0.473,0.473,0,0,0.147 +1,0.245,0.245,0.2,0,0,0,0.403,0.521,0.521,0,0,0.0601 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0743 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.352 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0.117,0,0,0,0.292,0.6,0.6,0,0,0.0743 +1,0.297,0.297,0.15,0,0,0,0.314,0.59,0.59,0,0,0.0372 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.26 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0743 +0.667,0.348,0.348,0,0.0167,0,0,0.404,0.572,0.572,0.321,0,0.112 +0.667,0.339,0.339,0,1,0,0,0.419,0.557,0.557,0.516,0,0.0372 +0.333,0.0495,0.0495,0,0.0333,0,0,0.258,0.465,0.465,0,0,0.451 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.203 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0.117,0,0,0,0.403,0.521,0.521,0,0,0.225 +1,0.433,0.433,0.267,0,0,0,0.52,0.622,0.622,0,0,0.286 +0.333,0.184,0.184,0.15,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0.35,0,0.257,0.523,0.523,0,0.396,0.0372 +0.333,0.181,0.181,0,0,0.583,0,0.26,0.523,0.523,0,0.474,0.149 +0.333,0.175,0.175,0,0,0,0.25,0.264,0.528,0.528,0,0.677,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.543,0.372 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.568,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.508,0 +0.667,0.338,0.338,0.267,0,0,0,0.322,0.609,0.609,0,0.213,0.0372 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.551,0.186 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.542,0.149 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0.581,0.186 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0.537,0 +0.333,0.282,0.282,0.617,0,0,0,0.434,0.542,0.542,0,0.673,0.0372 +0.333,0.222,0.222,1,0,0,0,0.426,0.532,0.532,0,0.365,0.152 +0.667,0.197,0.197,0.3,0,0,0,0.389,0.508,0.508,0,0.11,0.0372 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0893 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0372 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0372 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.397 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.251 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.223 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.223 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.112 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.112 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0372 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.112 +0.667,0.629,0.629,0,0,0.1,0,0.58,0.649,0.649,0,0.171,0 +0.667,0.515,0.515,0,0,0.367,0.1,0.609,0.619,0.619,0,0.22,0.0372 +0.667,0.394,0.394,0,0,0,1,0.595,0.6,0.6,0,0,0 +0.667,0.0495,0.0495,0,0,0,0.45,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,0.417,0,0,0,0.337,0.58,0.58,0,0,0.109 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.112 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.149 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0372 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.142 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.374 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0.7,0.517,0,0,0.432,0.57,0.57,0.646,0,0.143 +0.667,0.318,0.318,0,0.533,0,0,0.337,0.58,0.58,0,0,0.293 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.26 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.194,0.194,0.267,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.333,0.301,0.301,0.267,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.186 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.201 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.177 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.363 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.2 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.297 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.149 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.402 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0372 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.188 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.137 +0.333,0.253,0.253,0,0,0.483,0,0.354,0.61,0.61,0,0.335,0 +0.333,0.323,0.323,0,0,0,0.467,0.419,0.635,0.635,0,0.572,0.0372 +0.333,0.366,0.366,0,0,0,1,0.465,0.641,0.641,0,0.94,0.112 +0.333,0.344,0.344,0,0,0,1,0.484,0.622,0.622,0,0.534,0 +0.333,0.277,0.277,0,0,0,0.567,0.503,0.604,0.604,0,0.26,0.112 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.089 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0907 +1,0.313,0.313,0,0.4,0,0,0.524,0.68,0.68,0.523,0,0.18 +0.667,0.33,0.33,0,0.683,0,0,0.403,0.692,0.692,0,0,0.346 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.0616 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.288 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.3 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.269 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0455 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.355 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.346 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.213 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.335 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0.135 +1,0.869,0.869,0.583,0,0,0,0.741,0.974,0.974,0,0,0.183 +1,1,1,0.3,0,0,0,0.881,0.993,0.993,0,0,0.112 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.372 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.149 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.186 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.149 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0414 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.248 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.125 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.112 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.186 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.683,0.683,0.4,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.207 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.186 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.112 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.181 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0823 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.253 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.105 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.182,0.182,0.5,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.204,0.204,0.05,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,1,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.112 +0.667,0.683,0.683,0.817,0,0,0,0.673,0.817,0.817,0,0,0.298 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.111 +0.667,0.504,0.504,0,0.4,0,0,0.748,0.742,0.742,0.43,0,0.623 +1,0.218,0.218,0,0.417,0,0,0.493,0.591,0.591,0.258,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.156 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.289 +0.667,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.185 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.235 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0.15,0,0.35 +0.333,0.183,0.183,0,0.9,0,0,0.288,0.585,0.585,0.562,0,0.149 +0.333,0.178,0.178,0,0.183,0.733,0,0.284,0.591,0.591,0.839,0.394,0 +0.333,0.177,0.177,0,0,0,0.467,0.302,0.591,0.591,0,0.794,0.112 +0.333,0.182,0.182,0,0,0,1,0.316,0.585,0.585,0,0.22,0.112 +0.667,0.359,0.359,0,0,0,0.183,0.384,0.73,0.73,0,0.471,0.0372 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.375,0.0372 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.471,0.0743 +0.667,0.683,0.683,0.267,0,0,0,0.673,0.817,0.817,0,0.564,0.0372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0743 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.161 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0937 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.355 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.166 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.6 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.233 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.366 +0.667,0.307,0.307,0.267,0,0,0,0.31,0.717,0.717,0,0,0.0759 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.149 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.149 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0743 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.18 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.258 +1,0.116,0.116,0.5,0,0,0,0.422,0.567,0.567,0,0,0.429 +0.667,0.251,0.251,0.617,0,0,0,0.487,0.617,0.617,0,0,0.0811 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.0372 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.355 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.167 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0743 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.112 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.112 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.24 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0.55,0,0,0,0.33,0.579,0.579,0,0,0.0743 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.223 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0372 +0.667,0.307,0.307,0.55,0,0,0,0.31,0.717,0.717,0,0,0.0372 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +1,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.223 +1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0743 +1,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.112 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.112 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0372 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.444,0.444,0.25,0,0,0,0.657,0.787,0.787,0,0,0.249 +0.667,0.33,0.33,0.0167,0,0,0,0.403,0.692,0.692,0,0,0.118 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0743 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.252 +0.333,0.204,0.204,0.75,0,0,0,0.321,0.597,0.597,0,0,0.177 +0.667,0.457,0.457,0.0833,0,0,0,0.449,0.755,0.755,0,0,0.208 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.223 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.399 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.295 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.26 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.161 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.256 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0.126 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.162 +0.333,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.168 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.299 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0.4,0,0,0.284,0.591,0.591,0.551,0,0 +0.333,0.177,0.177,0,0.417,0,0,0.302,0.591,0.591,0.549,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.653,0,0.0743 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.555,0,0.129 +0.667,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.297 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.112 +1,1,1,0,0.15,0,0,0.881,0.993,0.993,0.415,0,0.223 +1,0.933,0.933,0,0.667,0,0,0.937,0.937,0.937,0.5,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.297 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.172 +0.667,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.231 +0.667,0.313,0.313,0.267,0,0,0,0.524,0.68,0.68,0,0,0.0546 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.139 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.357 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0743 +0.667,0.316,0.316,0,0.4,0,0,0.319,0.705,0.705,0.686,0,0 +0.667,0.307,0.307,0.5,0.417,0,0,0.31,0.717,0.717,0.224,0,0.0372 +0.667,0.305,0.305,0.617,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0372 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.149 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0743 +1,0.869,0.869,0.75,0,0,0,0.741,0.974,0.974,0,0,0.0372 +1,1,1,0.367,0,0,0,0.881,0.993,0.993,0,0,0.112 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.158,0,0.0372 +0.667,0.504,0.504,0,0.533,0,0,0.748,0.742,0.742,0.807,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.33 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.294 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.142 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0743 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0.5,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0.05,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0372 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0743 +0.667,0.596,0.596,0,0.4,0,0,0.58,0.805,0.805,0.668,0,0.149 +0.667,0.683,0.683,0,0.417,0,0,0.673,0.817,0.817,0,0,0.297 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.0891,0,0.372 +0.667,0.504,0.504,0,0.817,0,0,0.748,0.742,0.742,0.814,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.288,0,0.112 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0743 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.307 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0832 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.147 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.139 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.325 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.272 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.298 +0.667,0.328,0.328,0,0.65,0,0,0.31,0.692,0.692,0.675,0,0.35 +0.667,0.316,0.316,0,0.167,0,0,0.319,0.705,0.705,0.636,0,0.14 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.226 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.102 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.13,0,0 +0.667,0.359,0.359,0,0.9,0,0,0.384,0.73,0.73,0.475,0,0.112 +0.333,0.253,0.253,0.5,0.717,0,0,0.354,0.61,0.61,0.67,0,0.244 +1,0.869,0.869,0.05,0,0,0,0.741,0.974,0.974,0.536,0,0.223 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.822,0,0.372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.158,0,0.112 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.149 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0931 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.203 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.199 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.138 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.316 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.382 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.151 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.212,0,0.0372 +0.667,0.253,0.253,0,0.817,0,0,0.354,0.61,0.61,0.609,0,0 +1,0.596,0.596,0.833,0,0,0,0.58,0.805,0.805,0,0,0.339 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.344,0.344,0.25,0,0,0,0.484,0.622,0.622,0,0.0657,0.335 +0.333,0.277,0.277,0.3,0,0.733,0,0.503,0.604,0.604,0,0.731,0.258 +0.667,0.386,0.386,0,0,0,0.717,0.729,0.717,0.717,0,0.0917,0 +0.667,0.342,0.342,0,0,0,0.933,0.636,0.655,0.655,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.279 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.154 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0967 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.213 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.286 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.195 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.351 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.429 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0.267,0.65,0,0,0.302,0.591,0.591,0.744,0,0.0743 +0.333,0.182,0.182,0,0.433,0,0,0.316,0.585,0.585,0.792,0,0.0743 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.667,0.596,0.596,0.55,0,0,0,0.58,0.805,0.805,0,0,0.0372 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.149 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.149 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0836 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.367 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.455 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.273 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.375 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0743 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.112 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.223 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0513,0.0513,0.25,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0.0167,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.288 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.196 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.439 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.263 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0.132,0,0.344 +0.667,0.305,0.305,0,0.9,0,0,0.347,0.717,0.717,0.707,0.102,0.371 +0.667,0.314,0.314,0,0.183,0.233,0.217,0.375,0.705,0.705,0.479,0.635,0.198 +0.667,0.359,0.359,0,0,0,0.883,0.384,0.73,0.73,0,0.37,0.0743 +0.667,0.457,0.457,0.267,0,0,0,0.449,0.755,0.755,0,0.823,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.0917,0.569 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.532 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.115 +0.667,0.504,0.504,0.267,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.167 +1,0.15,0.15,0.5,0,0,0,0.372,0.541,0.541,0,0,0.78 +1,0.444,0.444,0.05,0,0,0,0.657,0.787,0.787,0,0,0.264 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.435 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.112 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.223 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.283 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.405 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.234 +0.667,0.638,0.638,0,0.65,0,0,0.711,0.78,0.78,0.707,0,0.112 +0.667,0.504,0.504,0,0.433,0,0,0.748,0.742,0.742,0,0,0.149 +0.667,0.386,0.386,0,0,0.233,0,0.729,0.717,0.717,0,0.22,0.0372 +1,0.342,0.342,0,0.4,0,0.467,0.636,0.655,0.655,0.646,0.128,0.232 +1,0.183,0.183,0,0.683,0,1,0.552,0.605,0.605,0.503,0,0.0372 +1,0.099,0.099,0,0,0,0.183,0.459,0.592,0.592,0.412,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0,0.153 +1,0.0495,0.0495,0,0,0,0,0.422,0.542,0.542,0,0,0.0811 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0.833,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.136 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.265 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.253 +0.667,0.359,0.359,0,0.4,0,0,0.384,0.73,0.73,0.555,0,0.335 +0.667,0.457,0.457,0,0.683,0,0,0.449,0.755,0.755,0.288,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.335 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.638,0.638,0,0,0.483,0,0.711,0.78,0.78,0,0.399,0.0372 +0.667,0.504,0.504,0,0,0,0.717,0.748,0.742,0.742,0,0,0.194 +0.667,0.218,0.218,0,0,0,0.667,0.493,0.591,0.591,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0899 +0.667,0.328,0.328,0.55,0,0,0,0.31,0.692,0.692,0,0,0.0829 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.329 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.205 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.258 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.318 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.149 +0.333,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.0372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0732 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.302 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.117 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.412 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.276 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.112 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.162 +0.667,0.305,0.305,0.55,0,0,0,0.347,0.717,0.717,0,0,0.153 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.333,0.204,0.204,0.5,0,0,0,0.321,0.597,0.597,0,0,0.26 +0.333,0.253,0.253,0.05,0,0,0,0.354,0.61,0.61,0,0,0.112 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.112 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.16,0,0.186 +0.667,0.638,0.638,0,0.9,0,0,0.711,0.78,0.78,0.187,0,0.0372 +0.667,0.504,0.504,0,0.183,0,0,0.748,0.742,0.742,0,0,0.223 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0372 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0937 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.174 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.357 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0743 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.335 +1,0.359,0.359,0.267,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.0372 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.26 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.223 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.186 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.333,0.15,0.15,0,0,0.233,0,0.372,0.541,0.541,0,0.225,0.532 +0.333,0.181,0.181,0,0,0.25,0.217,0.391,0.572,0.572,0,0.332,0 +0.667,0.19,0.19,0,0,0,1,0.33,0.579,0.579,0,0.463,0.0797 +0.667,0.337,0.337,0,0,0,0.167,0.3,0.692,0.692,0,0.524,0.117 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.524,0.328 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0.766,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0.635,0.149 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.223 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.638,0.638,0,0.4,0,0,0.711,0.78,0.78,0.494,0,0.112 +0.667,0.504,0.504,0,0.417,0,0,0.748,0.742,0.742,0.757,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.2,0,0.0743 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.144 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.229 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.204,0.204,0.0167,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.22 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.373 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.336 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.25 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.543 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.173 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.301 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.132 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.595 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.183,0.183,0.25,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0.186 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.112 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.204,0.204,0.25,0,0.233,0,0.321,0.597,0.597,0,0.122,0.149 +0.667,0.457,0.457,1,0,0.25,0.217,0.449,0.755,0.755,0,0.524,0.0372 +0.667,0.596,0.596,0.433,0,0,0.05,0.58,0.805,0.805,0,0.564,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.149 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.112 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.186 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.229 +1,0.444,0.444,0.267,0,0,0,0.657,0.787,0.787,0,0,0.469 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.342 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.516 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.214 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.178,0.178,0.267,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.667,0.359,0.359,0,0,0.483,0,0.384,0.73,0.73,0,0.258,0.0372 +0.667,0.457,0.457,0,0,0,0.467,0.449,0.755,0.755,0,0.295,0.149 +0.667,0.596,0.596,0,0,0,0.35,0.58,0.805,0.805,0,0,0.112 +0.667,0.683,0.683,0,0.4,0,0,0.673,0.817,0.817,0.562,0,0 +0.667,0.638,0.638,0,0.683,0,0,0.711,0.78,0.78,0.603,0,0.0372 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0.724,0,0.223 +0.667,0.386,0.386,0.75,0,0,0,0.729,0.717,0.717,0,0,0.278 +1,0.342,0.342,0.367,0,0,0,0.636,0.655,0.655,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.214 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.131 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.27 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0337 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.667,0.204,0.204,0.5,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.186 +0.667,0.596,0.596,0.183,0,0,0,0.58,0.805,0.805,0,0,0.223 +1,1,1,0,0.533,0,0,0.881,0.993,0.993,0.77,0,0.0743 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.319 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.163 +0.667,0.386,0.386,0.25,0,0,0,0.729,0.717,0.717,0,0,0.0475 +1,0.488,0.488,0.0167,0,0,0,0.825,0.749,0.749,0,0,0.223 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0767 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0925 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.279 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.225 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.149 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.192 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.158 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.297 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.26 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.287 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.166 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.165 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0743 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.149 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.112 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.479 +0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0.165 +0.667,0.596,0.596,0.05,0,0,0,0.58,0.805,0.805,0,0,0.0372 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.112 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.26 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.378 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.16 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 diff --git a/tasks.rb b/tasks.rb index a0db5be231..fd3f81a757 100644 --- a/tasks.rb +++ b/tasks.rb @@ -51,7 +51,7 @@ def create_hpxmls # Re-generate stochastic schedule CSV? csv_path = json_input['schedules_filepaths'].to_s.split(',').map(&:strip).find { |fp| fp.include? 'occupancy-stochastic' } - if (not csv_path.nil?) && (not schedules_regenerated.include? csv_path) + if (not csv_path.nil?) && ((not schedules_regenerated.include? csv_path) || hpxml_filename.include?('two-buildings')) sch_args = { 'hpxml_path' => hpxml_path, 'output_csv_path' => csv_path, 'hpxml_output_path' => hpxml_path, diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index f6de40ff8c..e4a5908463 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3396,7 +3396,7 @@ }, "sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml": { "parent_hpxml": "sample_files/base.xml", - "hpxml_path_in": "workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml", + "hpxml_path_in": "workflow/sample_files/base.xml", "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" }, "sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml": { From ec6519a385c4ae117ea3f8dae105ac94cc1086e5 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 21 Sep 2023 20:36:13 -0700 Subject: [PATCH 18/33] Add comment about deleting extra SchedulesFilePath. [ci skip] --- tasks.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.rb b/tasks.rb index fd3f81a757..29a5475b19 100644 --- a/tasks.rb +++ b/tasks.rb @@ -237,6 +237,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.buildings[0].clothes_dryers[0].delete end + # Need to assign schedules_filepaths in BuildResidentialHPXML to trigger running BuildResidentialScheduleFile if ['base-schedules-detailed-occupancy-stochastic-two-buildings.xml'].include? hpxml_file hpxml.buildings[-1].header.schedules_filepaths.delete_at(0) end From c407654cd5e4d480c3d81a4c9ea887e20049e281 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 25 Sep 2023 08:55:10 -0700 Subject: [PATCH 19/33] Clean up. --- BuildResidentialHPXML/measure.xml | 6 +++--- BuildResidentialHPXML/tests/build_residential_hpxml_test.rb | 2 +- workflow/tests/hpxml_translator_test.rb | 3 --- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 195b2b5b84..37b42acb98 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 931ab526-b43f-4d64-b4ee-c9dded85e947 - 2023-09-21T22:18:05Z + da31d918-5a3b-4626-ae1d-34d0e357c2b7 + 2023-09-25T15:54:54Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6768,7 +6768,7 @@ build_residential_hpxml_test.rb rb test - CBB03BE6 + A7CDB8B5 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index c69b17e038..3869289530 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -10,7 +10,7 @@ class BuildResidentialHPXMLTest < Minitest::Test def setup @output_path = File.join(File.dirname(__FILE__), 'extra_files') - @model_save = true # true helpful for debugging, i.e., can render osm in 3D + @model_save = false # true helpful for debugging, i.e., can render osm in 3D end def teardown diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index 93e00451b3..1c029c350b 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -414,9 +414,6 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, t if unit_multiplier > 1 command += ' -b ALL' end - if xml.include? 'base-two-buildings.xml' - command += ' -b ALL' - end success = system(command) if unit_multiplier > 1 From 0b604eb8f71edc1e198a1ed373f4b9f3acd7d0e1 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 26 Sep 2023 08:13:35 -0700 Subject: [PATCH 20/33] Revert comment. [ci skip] --- BuildResidentialHPXML/measure.xml | 34 +++++++++++++++++++++++++++++-- tasks.rb | 2 +- 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 37b42acb98..e09b3f4625 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - da31d918-5a3b-4626-ae1d-34d0e357c2b7 - 2023-09-25T15:54:54Z + 6eab1893-0c6f-44cf-bdae-b99bd24a52b2 + 2023-09-26T15:13:01Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6770,5 +6770,35 @@ test A7CDB8B5 + + extra_files/base-mf - Copy.xml + xml + test + 6D95BC4C + + + extra_files/base-mf.osm + osm + test + 14D51025 + + + extra_files/base-mf.xml + xml + test + 6D95BC4C + + + extra_files/base-mf2.osm + osm + test + 42AFD933 + + + extra_files/base-mf2.xml + xml + test + 84960610 + diff --git a/tasks.rb b/tasks.rb index 29a5475b19..e80f91e4e1 100644 --- a/tasks.rb +++ b/tasks.rb @@ -102,7 +102,7 @@ def create_hpxmls Dir["#{workflow_dir}/#{dir}/*.xml"].each do |hpxml| next if abs_hpxml_files.include? File.absolute_path(hpxml) - # puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}" + puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}" end end end From e8c49e0f85918c9f2605ca6891d1f0fa94aa80f3 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 26 Sep 2023 10:03:38 -0600 Subject: [PATCH 21/33] Remove need for base-two-buildings files and call BuildResidentialScheduleFile once for each building unit. --- BuildResidentialHPXML/measure.xml | 16 +- BuildResidentialScheduleFile/measure.rb | 2 +- BuildResidentialScheduleFile/measure.xml | 8 +- .../build_residential_schedule_file_test.rb | 8 + HPXMLtoOpenStudio/measure.xml | 10 +- .../schedule_files/occupancy-stochastic_3.csv | 8761 +++++++++++++++++ tasks.rb | 61 +- workflow/hpxml_inputs.json | 11 +- ...e-multiple-buildings-varied-occupancy.xml} | 551 +- .../sample_files/base-multiple-buildings.xml | 5 - workflow/sample_files/base-two-buildings.xml | 1077 -- workflow/tests/hpxml_translator_test.rb | 1 - 12 files changed, 9356 insertions(+), 1155 deletions(-) create mode 100644 HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv rename workflow/sample_files/{base-schedules-detailed-occupancy-stochastic-two-buildings.xml => base-multiple-buildings-varied-occupancy.xml} (67%) delete mode 100644 workflow/sample_files/base-two-buildings.xml diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 37b42acb98..969cfca452 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - da31d918-5a3b-4626-ae1d-34d0e357c2b7 - 2023-09-25T15:54:54Z + e0dff417-6e62-4139-921e-2fc21d33dbe1 + 2023-09-26T15:57:24Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6770,5 +6770,17 @@ test A7CDB8B5 + + extra_files/base-sfa.xml + xml + test + 5FF0A591 + + + extra_files/base-sfd.xml + xml + test + AF7637CF + diff --git a/BuildResidentialScheduleFile/measure.rb b/BuildResidentialScheduleFile/measure.rb index fd6ce317a1..ac78972ca8 100644 --- a/BuildResidentialScheduleFile/measure.rb +++ b/BuildResidentialScheduleFile/measure.rb @@ -147,7 +147,7 @@ def run(model, runner, user_arguments) # output csv path args[:output_csv_path] = "#{filename}.csv" - args[:output_csv_path] = "#{filename}_#{i + 1}.csv" if i > 0 + args[:output_csv_path] = "#{filename}_#{i + 1}.csv" if i > 0 && args[:building_id].get == 'ALL' # create the schedules success = create_schedules(runner, hpxml, hpxml_bldg, epw_file, args) diff --git a/BuildResidentialScheduleFile/measure.xml b/BuildResidentialScheduleFile/measure.xml index 24484d7ae3..0fc237fbb8 100644 --- a/BuildResidentialScheduleFile/measure.xml +++ b/BuildResidentialScheduleFile/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_schedule_file f770b2db-1a9f-4e99-99a7-7f3161a594b1 - 32b707ca-3229-4912-b64f-f7d0163bc552 - 2023-09-20T21:59:04Z + 4df0dccd-e630-451d-a8e0-64993295342f + 2023-09-26T16:03:10Z 03F02484 BuildResidentialScheduleFile Schedule File Builder @@ -102,7 +102,7 @@ measure.rb rb script - A2133951 + DA57F7ED README.md @@ -900,7 +900,7 @@ build_residential_schedule_file_test.rb rb test - 32332B7A + 1FD91AEB diff --git a/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb b/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb index 9e611c1a13..2f602e8565 100644 --- a/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +++ b/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb @@ -298,6 +298,8 @@ def test_multiple_buildings output_path: @tmp_schedule_file_path) if hpxml_bldg.building_id == 'MyBuilding' + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic.csv') assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) @@ -313,6 +315,8 @@ def test_multiple_buildings assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) elsif hpxml_bldg.building_id == 'MyBuilding_2' + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) @@ -328,6 +332,8 @@ def test_multiple_buildings assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) elsif hpxml_bldg.building_id == 'MyBuilding_3' + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_3.csv') assert_in_epsilon(6045, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) @@ -370,6 +376,8 @@ def test_multiple_buildings_id year: 2007, output_path: @tmp_schedule_file_path) + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic.csv') assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 19b3648454..a04d8aec6f 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - f1e20484-307f-441f-8da7-6999b39c7a87 - 2023-09-22T03:18:34Z + f3074b49-5f0d-4ec6-8c4c-99b22e56f860 + 2023-09-26T15:57:29Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -372,6 +372,12 @@ resource 7E648862 + + schedule_files/occupancy-stochastic_3.csv + csv + resource + 4DCFB9A0 + schedule_files/setpoints-10-mins.csv csv diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv new file mode 100644 index 0000000000..b1f417b09b --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258 +1,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.19 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.185 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.139 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.324 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.185 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.741 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.359,0.359,0.25,0,0,0,0.465,0.641,0.641,0,0,0.185 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.139 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.121 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.718 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.441 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0.299 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0926 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.231 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509 +0.333,0.196,0.196,0.25,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0.42,0,0 +1,0.991,0.991,0,0.667,0,0,0.937,0.937,0.937,0.37,0,0.278 +1,0.823,0.823,0.25,0,0.0638,0,0.993,0.88,0.88,0,0,0.183 +1,0.43,0.43,0,0,0.234,0.317,0.729,0.717,0.717,0,0.397,0.139 +1,0.0495,0.0495,0,0,0,0.5,0.258,0.465,0.465,0,0.0467,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.146 +0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.121 +0.667,0.183,0.183,0,0,0.553,0.0667,0.391,0.572,0.572,0,0.168,0 +0.667,0.334,0.334,0,0,0,1,0.403,0.692,0.692,0,0.197,0 +0.333,0.196,0.196,0,0,0,0.0167,0.279,0.579,0.579,0,0,0.232 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.407 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0.298,0,0.673,0.817,0.817,0,0,0.231 +0.667,0.677,0.677,0,0,0,0.817,0.711,0.78,0.78,0.447,0.504,0 +0.667,0.565,0.565,0,0.667,0,0,0.748,0.742,0.742,0.571,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.139 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.509 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.127 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0663 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.224 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.123 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.484 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.164 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.324 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.185 +0.667,0.299,0.299,0.517,0,0,0,0.419,0.635,0.635,0,0,0.0926 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.139 +1,0.677,0.677,0,0.0833,0,0,0.711,0.78,0.78,0.598,0,0 +1,0.823,0.823,0,0.25,0,0,0.993,0.88,0.88,0.711,0,0.278 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0.11,0,0.0463 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0682 +1,0.117,0.117,0.117,0,0,0,0.422,0.567,0.567,0,0,0.172 +1,0.253,0.253,0.65,0.0833,0,0,0.487,0.617,0.617,0.65,0,0.103 +0.667,0.183,0.183,0,0.583,0,0,0.391,0.572,0.572,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.278 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.333,0.234,0.234,0.25,0,0,0,0.354,0.61,0.61,0,0,0.0926 +1,0.798,0.798,0,0,0.298,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0.567,0.881,0.993,0.993,0,0.224,0.0463 +1,0.991,0.991,0,0,0,0.517,0.937,0.937,0.937,0,0.0816,0 +1,0.565,0.565,0.367,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.43,0.43,0.4,0,0,0,0.729,0.717,0.717,0,0,0.24 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.343,0.343,0.0333,0,0,0,0.3,0.692,0.692,0,0,0.162 +0.667,0.334,0.334,0.217,0,0,0,0.31,0.692,0.692,0,0,0.0349 +0.667,0.322,0.322,0.25,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.231 +1,0.315,0.315,0,0,0.277,0,0.375,0.705,0.705,0,0,0 +1,0.343,0.343,0,0,0.0213,0.267,0.384,0.73,0.73,0,0.359,0.139 +1,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0.111,0.278 +1,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.278 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.185 +1,0.991,0.991,0,0.292,0,0,0.937,0.937,0.937,0.774,0,0.0926 +1,0.823,0.823,0,0.375,0,0,0.993,0.88,0.88,0,0,0.231 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.231 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.0463 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.433 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.508 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.236 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.481 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.424 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.338 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.139 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.139 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0463 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.156,0,0.0926 +0.667,0.565,0.565,0,0.604,0,0,0.748,0.742,0.742,0.826,0,0.0463 +1,0.621,0.621,0,0.0625,0,0,0.965,0.843,0.843,0.0808,0,0.373 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.287 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0902 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.117 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.247 +1,0.355,0.355,0.25,0,0,0,0.601,0.693,0.693,0.465,0,0.13 +1,0.449,0.449,0,1,0,0,0.657,0.787,0.787,0.542,0,0.509 +1,0.477,0.477,0,0,0.298,0,0.475,0.806,0.806,0.474,0,0.427 +1,0.49,0.49,0,0,0,0.817,0.322,0.806,0.806,0,0.521,0.333 +0.667,0.334,0.334,0,0,0,0.267,0.31,0.692,0.692,0,0.352,0.272 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.495 +0.333,0.0495,0.0495,0,0,0.617,0,0.258,0.465,0.465,0,0.116,0.0463 +0.333,0.18,0.18,0,0,0,0.817,0.302,0.591,0.591,0,0.521,0.0463 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.393,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0.641,0.324 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0.513,0 +1,0.798,0.798,0.25,0,0,0,0.741,0.974,0.974,0,0.145,0.0926 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0463 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.185 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0926 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.185 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0912 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.124 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.19 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0.617,0,0,0,0.321,0.597,0.597,0,0,0.0463 +0.333,0.234,0.234,0.15,0,0,0,0.354,0.61,0.61,0,0,0.185 +1,0.798,0.798,0.117,0,0,0,0.741,0.974,0.974,0,0,0.0926 +1,0.979,0.979,0.4,0,0,0,0.881,0.993,0.993,0,0,0.231 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.185 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.158 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.243 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0899 +0.333,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.123 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.272 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.479 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.251 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.185 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.185 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.306 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.503 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0644 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.139 +1,0.823,0.823,0.25,0.0833,0,0,0.993,0.88,0.88,0.512,0,0.231 +1,0.24,0.24,0,0.583,0,0,0.493,0.591,0.591,0.596,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0.754,0,0.0926 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.355 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.441 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.74 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0463 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.139 +0.333,0.181,0.181,0,0,0.0638,0,0.284,0.591,0.591,0,0,0 +0.667,0.311,0.311,0,0,0.553,0.0667,0.347,0.717,0.717,0,0.378,0.0463 +0.667,0.315,0.315,0,0,0,1,0.375,0.705,0.705,0,0.861,0 +0.333,0.196,0.196,0,0,0,0.0167,0.321,0.597,0.597,0,0.598,0.0926 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0.154,0 +0.333,0.299,0.299,0.25,0,0,0,0.419,0.635,0.635,0,0,0.0463 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.239 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.37 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.484 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.111 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0.702,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0.213,0.333,0.284,0.579,0.579,0,0.607,0.185 +0.333,0.186,0.186,0,0,0,0.75,0.288,0.585,0.585,0,0.619,0.417 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.711,0.231 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.543,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.381,0.0463 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0.767,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.185 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.231 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0463 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.268 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.131 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.336 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0.292,0.617,0,0.319,0.705,0.705,0.715,0.102,0 +0.667,0.313,0.313,0,0.0417,0,0.733,0.31,0.717,0.717,0,0.78,0 +0.667,0.311,0.311,0,0,0,0.0833,0.347,0.717,0.717,0,0.325,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.402,0.0463 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.45,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.494,0.278 +1,0.798,0.798,0.25,0,0,0,0.741,0.974,0.974,0,0.68,0.231 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.436,0.0463 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.291,0.231 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.436,0.535 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.466 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.286 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.185 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0.25,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0.617,0,0.302,0.591,0.591,0,0.0861,0.0926 +0.667,0.315,0.315,0,0,0,0.733,0.375,0.705,0.705,0,0.0593,0.37 +0.667,0.343,0.343,0,0,0,0.35,0.384,0.73,0.73,0,0,0.0463 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.18 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.727 +1,0.979,0.979,0,0,0.298,0.233,0.881,0.993,0.993,0,0.206,0.139 +1,0.991,0.991,0,0,0,0.85,0.937,0.937,0.937,0,0.38,0.0926 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.829,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.205,0.139 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0.508,0,0.278 +1,0.116,0.116,0,0.667,0,0,0.405,0.535,0.535,0.355,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0.142,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0594 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.612 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.168 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.327 +0.333,0.192,0.192,0.117,0,0,0,0.284,0.579,0.579,0,0,0.231 +0.333,0.186,0.186,0.65,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.145,0,0.502 +0.667,0.669,0.669,0,0.396,0,0,0.673,0.817,0.817,0.813,0,0.139 +1,0.991,0.991,0,0.271,0,0,0.937,0.937,0.937,0.0763,0,0.0926 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.19,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.399 +1,0.355,0.355,0.617,0,0,0,0.601,0.693,0.693,0,0,0.289 +0.667,0.316,0.316,0.417,0,0.298,0.0667,0.524,0.68,0.68,0,0.0861,0 +0.667,0.334,0.334,0,0,0,1,0.403,0.692,0.692,0,0.445,0 +0.667,0.343,0.343,0,0,0,0.0167,0.3,0.692,0.692,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.612 +0.333,0.186,0.186,0.517,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.185 +0.333,0.182,0.182,0.117,0,0,0,0.316,0.585,0.585,0,0,0.139 +0.333,0.196,0.196,0.133,0,0,0,0.321,0.597,0.597,0,0,0.185 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.115,0,0 +1,0.798,0.798,0,0.396,0,0,0.741,0.974,0.974,0.853,0,0.0926 +0.667,0.669,0.669,0,0.271,0,0,0.673,0.817,0.817,0.695,0,0.18 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0463 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.231 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.555 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.253,0.253,0.25,0,0,0,0.487,0.617,0.617,0,0,0.523 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.331 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.124 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.258 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0.117,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.4,0,0,0,0.316,0.585,0.585,0,0,0.37 +0.667,0.343,0.343,0.117,0,0,0,0.384,0.73,0.73,0,0,0.18 +0.667,0.418,0.418,0.133,0,0,0,0.449,0.755,0.755,0,0,0.0926 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.139 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0926 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.246 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.103 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.287 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0943 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.212 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.259 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.134 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.194 +0.333,0.18,0.18,0.25,0,0,0,0.302,0.591,0.591,0,0,0.139 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.278 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.231 +0.333,0.359,0.359,0,0,0.617,0,0.465,0.641,0.641,0,0,0.139 +1,0.991,0.991,0.517,0,0,0.567,0.937,0.937,0.937,0,0.224,0.0463 +1,0.823,0.823,0,0,0,0.25,0.993,0.88,0.88,0,0,0.139 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.139 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.138 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.287 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.162 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.261 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0896 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.263 +0.667,0.313,0.313,0,0,0.383,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0.532,0.0833,0.347,0.717,0.717,0,0.455,0.0463 +0.667,0.182,0.182,0.117,0,0,1,0.316,0.585,0.585,0,0.616,0.0463 +0.667,0.196,0.196,0.4,0,0,0,0.321,0.597,0.597,0,0.628,0.324 +1,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.461,0.0463 +1,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.139 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0926 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.324 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0463 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0463 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.333 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.252 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0842 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.26 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.224 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.419 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0.303 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.116 +1,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.787 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.696 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.384 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.281 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.218 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.139 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.37 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.139 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0926 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.326 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.317 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.16 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.529 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.136 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.407 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.216 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.271 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0.25,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.357,0,0.378 +1,0.979,0.979,0,0.667,0,0,0.881,0.993,0.993,0.618,0,1 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.151,0,0.0463 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.316 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.845 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.109 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.231 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.139 +0.667,0.359,0.359,0,0.0833,0,0,0.465,0.641,0.641,0.533,0,0.0463 +0.667,0.363,0.363,0,0.25,0,0,0.484,0.622,0.622,0.33,0,0.602 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.139 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0949 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.531 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.196,0.196,0.367,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.234,0.234,0.15,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0,0.0833,0,0,0.58,0.805,0.805,0.711,0,0.0926 +1,0.979,0.979,0,0.583,0,0,0.881,0.993,0.993,0.219,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.748 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.3 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.222 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.322 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.172 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0515 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0.117,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.65,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.18,0.18,0,0,0.702,0,0.302,0.591,0.591,0,0,0.0463 +0.667,0.315,0.315,0,0,0.213,0.333,0.375,0.705,0.705,0,0.358,0 +0.333,0.196,0.196,0,0,0,0.75,0.321,0.597,0.597,0,0.656,0.0463 +0.333,0.234,0.234,0.617,0,0,0,0.354,0.61,0.61,0,0.504,0.324 +0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0.145,0.272,0.231 +1,0.979,0.979,0,0.396,0,0,0.881,0.993,0.993,0.691,0.504,0.185 +1,0.991,0.991,0,0.271,0,0,0.937,0.937,0.937,0,0.171,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.403 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.377 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.37 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.117,0.117,0.367,0,0,0,0.422,0.567,0.567,0,0,0 +0.667,0.151,0.151,0.667,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.316,0.316,0.25,0,0,0,0.524,0.68,0.68,0,0,0.251 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.185 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.139 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.0926 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.139 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0.117,0.0833,0,0,0.321,0.597,0.597,0.533,0,0 +0.333,0.234,0.234,0.4,0.25,0,0,0.354,0.61,0.61,0.864,0,0.0463 +1,0.798,0.798,0.367,0,0,0,0.741,0.974,0.974,0.601,0,0.231 +0.667,0.669,0.669,0.15,0,0,0,0.673,0.817,0.817,0,0,0.185 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.324 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.278 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.17 +1,0.334,0.334,0.783,0,0,0,0.403,0.692,0.692,0,0,0.528 +1,0.49,0.49,0.25,0,0,0,0.322,0.806,0.806,0,0,0.221 +0.667,0.334,0.334,0.25,0,0,0,0.31,0.692,0.692,0,0,0.294 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.0926 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0463 +0.667,0.311,0.311,0,0.292,0,0,0.347,0.717,0.717,0.601,0,0.185 +0.667,0.315,0.315,0,0.375,0,0,0.375,0.705,0.705,0.688,0,0.139 +0.667,0.343,0.343,0.283,0,0,0,0.384,0.73,0.73,0.691,0,0.37 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0.0926 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.394 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0.0947 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0.469,0,0.463 +1,0.823,0.823,0.117,0.917,0,0,0.993,0.88,0.88,0.607,0,0 +1,0.621,0.621,0,0.0833,0,0,0.965,0.843,0.843,0.19,0,0.0463 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0635 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.103 +0.667,0.192,0.192,0.25,0,0,0,0.284,0.579,0.579,0,0,0.15 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.0463 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.231 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0463 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.317 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.202 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0955 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.0926 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.306 +0.667,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.357 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.167 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.201 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.139 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0.117,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0.4,0,0,0,0.58,0.805,0.805,0,0,0.185 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0463 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.509 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.139 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0463 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.448 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.167 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0463 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0.517,0,0,0,0.354,0.61,0.61,0.338,0,0 +0.333,0.299,0.299,0,0.667,0,0,0.419,0.635,0.635,0.61,0,0.0926 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0.702,0,0.463 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.704,0,0.231 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.231 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0745 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.455 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0156 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.185 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.37 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.185 +0.667,0.418,0.418,0,0.0833,0.915,0,0.449,0.755,0.755,0.693,0.171,0.278 +1,0.798,0.798,0,0.583,0,0.583,0.741,0.974,0.974,0.524,0.21,0.0463 +1,0.979,0.979,0.25,0,0,0.233,0.881,0.993,0.993,0.686,0.464,0.278 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.652,0.519,0.0463 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.389,0.367 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.466,0.139 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0.0772,0.278 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.139 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0926 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0926 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.294 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.552 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.157 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0926 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.231 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893 +1,0.053,0.053,0.317,0,0,0,0.396,0.558,0.558,0,0,0.201 +1,0.116,0.116,0.45,0,0,0,0.424,0.57,0.57,0,0,0.104 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.193,0.193,0,0.312,0,0,0.28,0.581,0.581,0.724,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.509 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.139 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.139 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.348 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0934 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.316,0.316,0.5,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.185 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.231 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0463 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.231 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.417 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0926 +0.667,0.625,0.625,0,0.25,0,0,0.753,0.746,0.746,0.589,0,0.278 +0.667,0.501,0.501,0,0.396,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0463 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0463 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.37 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.419 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.083 +0.667,0.466,0.466,0.25,0,0,0,0.584,0.809,0.809,0,0,0.207 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.424 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.37 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.354 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0353 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.151 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0717 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.192 +1,0.0829,0.0829,0.5,0,0,0,0.341,0.518,0.518,0,0,0.108 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.178 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0.255,0,0.139 +0.667,0.193,0.193,0,0.646,0,0,0.28,0.581,0.581,0.58,0,0.185 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.81,0,0.0926 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0.544,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0.542,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0.797,0,0.0463 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.485,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0.553,0,0 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.324 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.421 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.21 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0896 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.185 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.202 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.16 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.144 +1,0.15,0.15,0.0667,0,0,0,0.374,0.543,0.543,0,0,0.442 +1,0.181,0.181,0.183,0,0,0,0.392,0.574,0.574,0,0,0.177 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.447 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0463 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0926 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0926 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.185 +1,0.913,0.913,0,0,0.638,0,1,0.887,0.887,0,0,0.139 +1,0.727,0.727,0,0,0.319,0.25,0.972,0.849,0.849,0,0.672,0 +1,0.638,0.638,0,0,0,0.533,0.831,0.755,0.755,0,0.895,0.0463 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0.393,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.335 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.451,0,0 +0.667,0.193,0.193,0,0.958,0,0,0.28,0.581,0.581,0.242,0,0.0463 +0.333,0.0495,0.0495,0,0.0208,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0338 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0.0667,0,0,0,0.322,0.6,0.6,0,0,0.0926 +0.667,0.367,0.367,0.183,0,0,0,0.452,0.759,0.759,0,0,0.179 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.406 +1,0.868,0.868,0,0.333,0,0,0.887,1,1,0.585,0,0.344 +1,0.98,0.98,0,0.333,0,0,0.944,0.943,0.943,0.74,0,0.554 +1,0.913,0.913,0,0.625,0,0,1,0.887,0.887,0.135,0,0.376 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.0463 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0926 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.427,0,0.0926 +0.333,0.189,0.189,0,0.646,0,0,0.284,0.581,0.581,0.126,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.278 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.278 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.139 +0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.231 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.98,0.98,0,0.0208,0,0,0.944,0.943,0.943,0.517,0,0 +1,0.913,0.913,0,0.292,0,0,1,0.887,0.887,0.298,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.435 +1,0.313,0.313,0.5,0,0,0,0.527,0.683,0.683,0,0,0.308 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0.25,0,0,0,0.284,0.581,0.581,0,0,0.417 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.417 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.139 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.324,0,0.0786 +1,0.98,0.98,0.25,0.312,0,0,0.944,0.943,0.943,0.71,0,0.159 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.698,0,0.231 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0.0772,0,0.0463 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.288 +1,0.19,0.19,0.25,0,0,0,0.331,0.581,0.581,0,0,0.0921 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.132 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.3 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0.475 +1,0.436,0.436,0.75,0,0,0,0.338,0.849,0.849,0,0,0.429 +0.667,0.305,0.305,0.0167,0,0,0,0.349,0.721,0.721,0,0,0.139 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.139 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.0463 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.0926 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.231 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.231 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.324 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.103 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.298 +1,0.19,0.19,0.25,0,0,0,0.331,0.581,0.581,0,0,0.138 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.392 +1,0.468,0.468,0,0,0.553,0,0.338,0.811,0.811,0.567,0,0.611 +1,0.449,0.449,0.25,0.646,0.0851,0.433,0.352,0.83,0.83,0.359,0.329,0.697 +1,0.307,0.307,0,0,0,0.617,0.311,0.721,0.721,0,0.614,0.272 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.493,0.0463 +1,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.347,0.0463 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0.782,0.185 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0.564,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.392,0.139 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.681,0.185 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.36 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0463 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.121 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.262 +1,0.351,0.351,0.0667,0,0,0,0.606,0.698,0.698,0,0,0.226 +1,0.444,0.444,0.183,0,0,0,0.662,0.792,0.792,0,0,0.237 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.429 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.463 +0.333,0.189,0.189,0.567,0,0,0,0.284,0.581,0.581,0,0,0.0463 +0.667,0.316,0.316,0.2,0,0,0,0.321,0.709,0.709,0,0,0.0463 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.231 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.185 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.259,0,0.63 +1,0.868,0.868,0,0.646,0,0,0.887,1,1,0.248,0,0 +1,0.98,0.98,0,0.333,0,0,0.944,0.943,0.943,0,0,0.11 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.15,0.15,0.25,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.161 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.465 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.337 +0.333,0.178,0.178,0.0667,0,0,0,0.284,0.593,0.593,0,0,0.243 +0.333,0.177,0.177,0.183,0,0,0,0.303,0.593,0.593,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.185 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0463 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.251 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.231 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.419 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.116 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0773 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.279 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.198 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.235 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.382 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.731 +0,0.0495,0.0495,0,0.333,0,0,0.258,0.465,0.465,0.655,0,0.0926 +0,0.0495,0.0495,0,0.312,0,0,0.258,0.465,0.465,0.153,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.334 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.355 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.306 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0591 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.285 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.524,0,0.0463 +1,0.98,0.98,0,0.646,0,0,0.944,0.943,0.943,0.354,0,0.0463 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.139 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.295 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.158 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0946 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0582 +1,0.251,0.251,0,0,0.638,0,0.49,0.621,0.621,0,0,0.312 +0.667,0.181,0.181,0,0,0,0.5,0.392,0.574,0.574,0,0.257,0.38 +0.667,0.33,0.33,0,0,0,0.55,0.405,0.696,0.696,0,0.453,0.257 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.432,0.184 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.372,0.285 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0.21,0.598,0.27 +0.667,0.307,0.307,0,0.646,0,0,0.311,0.721,0.721,0.606,0.214,0.459 +0.667,0.305,0.305,0,0.333,0,0,0.349,0.721,0.721,0.394,0,0.667 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0463 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.185 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.419 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.433 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.337 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.324 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +1,0.868,0.868,0,0.312,0,0,0.887,1,1,0.51,0,0.37 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.724,0,0.278 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.451,0,0.169 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.365 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.165 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +1,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0926 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.304 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.339 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.274 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.401 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0926 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.278 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.227 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0463 +1,0.0743,0.0743,0,0.562,0,0,0.36,0.53,0.53,0.864,0,0 +1,0.0578,0.0578,0,0.0833,0,0,0.346,0.518,0.518,0.53,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0.664,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0.691,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0.234,0,0.331,0.581,0.581,0,0,0.38 +1,0.481,0.481,0,0.25,0.723,0,0.324,0.811,0.811,0.557,0.221,0.175 +1,0.468,0.468,0,0.396,0,0.933,0.338,0.811,0.811,0.885,0.381,0.135 +1,0.449,0.449,0,0,0,0.383,0.352,0.83,0.83,0.127,0.561,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.372,0.185 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,1,0.139 +0.667,0.307,0.307,0.767,0,0,0,0.377,0.709,0.709,0,0.214,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0463 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.149,0,0.555 +0.667,0.67,0.67,0,0.562,0,0,0.715,0.784,0.784,0.792,0,0.37 +1,0.913,0.913,0,0.417,0,0,1,0.887,0.887,0.391,0,0.185 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.174 +1,0.442,0.442,0,0,0.319,0,0.64,0.658,0.658,0,0,0.324 +1,0.183,0.183,0,0,0,0.55,0.555,0.608,0.608,0.147,0.123,0 +1,0.0743,0.0743,0,0,0,0.0333,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.633 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.119 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0.957,0,0.284,0.581,0.581,0.492,0.0341,0.0926 +0.333,0.183,0.183,0,0.646,0,0.5,0.289,0.587,0.587,0.28,0.454,0 +0.333,0.178,0.178,0,0,0,0.283,0.284,0.593,0.593,0,0.359,0.0926 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.728,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.788,0.0463 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.329,0.0926 +0.333,0.208,0.208,0.567,0,0,0,0.355,0.612,0.612,0,0.801,0 +1,0.674,0.674,0.2,0,0,0,0.746,0.981,0.981,0,0.608,0.127 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.503,0.278 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.546,0.164 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.338 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.185 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0.2,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0.638,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0.5,0.289,0.587,0.587,0,0.227,0 +0.333,0.178,0.178,0,0,0,0.55,0.284,0.593,0.593,0,0.501,0.185 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.524,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.139 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.294,0,0.133 +0.667,0.466,0.466,0,0.312,0,0,0.584,0.809,0.809,0.388,0,0.0926 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.691,0,0.0926 +1,0.98,0.98,0,0.0208,0,0,0.944,0.943,0.943,0.732,0,0.185 +1,0.913,0.913,0,0.625,0,0,1,0.887,0.887,0,0,0.24 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.205 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.207 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.402 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.31 +0.667,0.181,0.181,0.0667,0,0,0,0.392,0.574,0.574,0,0,0.281 +0.667,0.33,0.33,0.7,0,0.319,0,0.405,0.696,0.696,0,0,0.259 +0.667,0.337,0.337,0,0,0.638,0,0.302,0.696,0.696,0,0.323,0.256 +0.667,0.328,0.328,0,0,0,1,0.311,0.696,0.696,0,0.297,0.0926 +0.333,0.183,0.183,0,0,0,0.05,0.289,0.587,0.587,0,0.239,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.139 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.139 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.139 +1,0.868,0.868,0,0.333,0,0,0.887,1,1,0.822,0,0 +0.667,0.67,0.67,0,0.646,0,0,0.715,0.784,0.784,0.151,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.838 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.231 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0463 +1,0.116,0.116,0,0,0.0638,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0.5,0.36,0.53,0.53,0,0.248,0.0463 +1,0.0578,0.0578,0,0.0208,0,0.55,0.346,0.518,0.518,0.503,0.307,0 +1,0.0495,0.0495,0,0.625,0,0,0.346,0.511,0.511,0.759,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0.199,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.449 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.368 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.218 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.25,0,0.185 +0.667,0.258,0.258,0,0.646,0,0,0.421,0.637,0.637,0.625,0,0 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0.77,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.343 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.22 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.226 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.0495,0.0495,0,0,0.255,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.14 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0.447,0,0.126 +0.667,0.337,0.337,0,0.646,0,0,0.302,0.696,0.696,0.138,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0463 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.231 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0926 +0.333,0.178,0.178,0.25,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.278 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.139 +0.667,0.466,0.466,0.25,0.0208,0,0,0.584,0.809,0.809,0.479,0,0 +1,0.868,0.868,0,0.292,0,0,0.887,1,1,0.363,0,0.0926 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0463 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0463 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.185 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.094 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.191 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.573 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.133 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0656 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.37 +0.667,0.322,0.322,0.25,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.139 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.231 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0463 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0.0926 +1,0.066,0.066,0,0,0,0,0.433,0.57,0.57,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.179 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.129 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.12 +1,0.449,0.449,0.25,0,0.872,0,0.352,0.83,0.83,0,0,0.278 +0.667,0.307,0.307,1,0,0.0851,0.433,0.311,0.721,0.721,0,0.611,0.0926 +0.667,0.305,0.305,0.267,0,0,0.35,0.349,0.721,0.721,0,0,0.0926 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.185 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0.0167,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.139 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.139 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.157 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.103 +1,0.15,0.15,0,0,0.638,0,0.374,0.543,0.543,0,0,0.257 +1,0.181,0.181,0,0,0,0.5,0.392,0.574,0.574,0,0.145,0.129 +1,0.33,0.33,0,0,0,0.283,0.405,0.696,0.696,0,0,0.181 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.509 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0463 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0463 +0.333,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.231 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.231 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.344 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.284 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.442 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.114 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.231 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.278 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.278 +0.333,0.178,0.178,0,0,0.319,0,0.317,0.587,0.587,0,0,0.425 +0.667,0.322,0.322,0,0,0.638,0,0.386,0.734,0.734,0,0.478,0.138 +0.667,0.367,0.367,0.567,0,0,1,0.452,0.759,0.759,0,0.0134,0.0463 +0.667,0.466,0.466,0.2,0,0,0.05,0.584,0.809,0.809,0.287,0,0.278 +0.333,0.322,0.322,0,0.646,0.319,0,0.468,0.644,0.644,0.384,0,0.139 +1,0.98,0.98,0,0.0208,0.319,0.25,0.944,0.943,0.943,0.643,0.409,0 +1,0.913,0.913,0,0.625,0,0.533,1,0.887,0.887,0,0,0.0463 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0463 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.153 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.327 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.308 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0463 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.139 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0926 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.185 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0463 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +1,0.868,0.868,0.567,0,0,0,0.887,1,1,0,0,0.0926 +1,0.98,0.98,0.45,0,0,0,0.944,0.943,0.943,0,0,0.0463 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.139 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.134 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.422 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.134 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.148 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0.117,0,0,0,0.323,0.612,0.612,0,0,0.0926 +1,0.464,0.464,0.6,0,0,0,0.434,0.715,0.715,0,0,0.278 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.417 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.231 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.329,0,0 +1,0.928,0.928,0,0.625,0,0,0.79,0.701,0.701,0.576,0,0.0463 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.677,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.111,0,0.278 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.385 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0673 +0.667,0.114,0.114,0.117,0,0,0,0.353,0.483,0.483,0,0,0.238 +0.667,0.245,0.245,0.117,0,0,0,0.405,0.523,0.523,0,0,0.0161 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.471 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.324 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0.617,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0.35,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.185 +1,0.736,0.736,0.233,0,0,0,0.701,0.79,0.79,0,0,0.185 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.11,0,0.139 +1,0.928,0.928,0,0.396,0,0,0.79,0.701,0.701,0.641,0,0.0463 +1,0.807,0.807,0,0.229,0,0,0.768,0.671,0.671,0.774,0,0.0463 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0.7,0,0.375 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.612,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.74,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0.759,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.386 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.286 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.67 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.155 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.482 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.228 +0.667,0.289,0.289,0.717,0,0,0,0.294,0.602,0.602,0,0,0.0463 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0463 +0.667,0.298,0.298,0,0,0.17,0,0.323,0.612,0.612,0,0,0.0926 +0.333,0.188,0.188,0,0,0.766,0,0.316,0.549,0.549,0,0.277,0.0926 +1,0.567,0.567,0,0,0,0.9,0.59,0.775,0.775,0,0.662,0.185 +1,0.736,0.736,0,0,0,0.133,0.701,0.79,0.79,0,0.706,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.312,0.185 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.266,0.139 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.107 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.106,0,0.0926 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.151 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.369 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.443,0.443,0,0,0.617,0,0.267,0.641,0.641,0,0,0 +1,0.426,0.426,0,0,0,0.65,0.278,0.656,0.656,0,0.55,0.0926 +0.333,0.171,0.171,0,0,0,0.383,0.261,0.534,0.534,0,0.381,0.0463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.494,0.278 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.518,0.0926 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.47,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0935,0.347 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.157 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.625 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.104 +1,0.928,0.928,0.233,0,0,0,0.79,0.701,0.701,0,0,0.221 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.224 +0.333,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.16 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.185 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.302 +0.333,0.169,0.169,0,0,0.0638,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.17,0.17,0,0,0.553,0.0667,0.287,0.529,0.529,0.145,0.246,0 +0.333,0.174,0.174,0,0.396,0,0.7,0.29,0.539,0.539,0.571,0.154,0 +0.333,0.188,0.188,0.367,0.229,0,0,0.316,0.549,0.549,0.298,0,0.0463 +1,0.567,0.567,0.117,0.625,0,0,0.59,0.775,0.775,0.46,0,0.0463 +1,0.736,0.736,0,0.396,0,0,0.701,0.79,0.79,0.709,0,0.324 +1,0.895,0.895,0,0.562,0,0,0.745,0.745,0.745,0.652,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.278 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.139 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.139 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0.872,0,0.258,0.465,0.465,0,0.107,0 +0.667,0.245,0.245,0,0,0,0.817,0.405,0.523,0.523,0,0.534,0.428 +0.667,0.305,0.305,0,0,0,0.483,0.435,0.572,0.572,0,0,0.28 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.153 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.185 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.169,0.169,0.117,0,0,0,0.276,0.534,0.534,0,0,0.185 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.185 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.295 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.158 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.116 +0.667,0.185,0.185,0.233,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.278 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0.233,0,0,0,0.323,0.612,0.612,0,0,0.231 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.281 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.166 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.337 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.445,0,0.231 +1,0.5,0.5,0,0.625,0,0,0.656,0.596,0.596,0.268,0,0.291 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.231 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.669 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.137 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.335 +0.667,0.305,0.305,0.117,0,0,0,0.435,0.572,0.572,0,0,0.0619 +0.667,0.318,0.318,0.367,0,0,0,0.338,0.582,0.582,0,0,0.0463 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.417 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.278 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.185 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.366,0,0.555 +0.667,0.635,0.635,0,0.312,0,0,0.613,0.622,0.622,0.183,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.289 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.249 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.12 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0657 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.185 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0926 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.0463 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.231 +0.667,0.613,0.613,0,0,0.383,0,0.583,0.652,0.652,0,0,0.215 +1,0.928,0.928,0,0,0.553,0.0667,0.79,0.701,0.701,0,0.475,0.139 +1,0.555,0.555,0,0,0,0.7,0.598,0.602,0.602,0,0.326,0.0463 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.321 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0463 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +1,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.139 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.366 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.395 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0926 +0.667,0.395,0.395,0,0,0.489,0,0.479,0.672,0.672,0,0,0.231 +1,0.736,0.736,0,0.188,0.447,0.15,0.701,0.79,0.79,0.483,0.202,0.417 +1,0.613,0.613,0,0.438,0,0.617,0.583,0.652,0.652,0,0,0.231 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0926 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0924 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.176 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0926 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.17,0.17,0.233,0,0,0,0.287,0.529,0.529,0,0,0.0463 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.213 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.37 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.139 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.165 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0463 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.231 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.147,0.147,0.233,0,0,0,0.331,0.494,0.494,0,0,0.509 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.462 +1,0.452,0.452,0,0,0,0,0.378,0.641,0.641,0,0,0.319 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.139 +0.667,0.312,0.312,0,0,0.936,0,0.264,0.582,0.582,0,0.0252,0.24 +0.333,0.175,0.175,0,0,0,0.567,0.265,0.529,0.529,0.113,0.734,0.278 +0.333,0.171,0.171,0,0.312,0,0.467,0.261,0.534,0.534,0.702,0.396,0.278 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0.539,0.635,0.139 +0.667,0.29,0.29,0.367,0,0,0,0.316,0.592,0.592,0.276,0.313,0 +1,0.422,0.422,0.117,0,0,0,0.356,0.686,0.686,0,0.638,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.411,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.616,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0.298,0,0.745,0.745,0.745,0,0,0.231 +1,0.928,0.928,0,0,0,0.567,0.79,0.701,0.701,0,0.464,0.0926 +1,0.807,0.807,0.233,0,0,0.2,0.768,0.671,0.671,0,0.0134,0.0926 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.267 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.177 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.286 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.602 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.324 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.278 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.139 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.174,0.174,0.367,0,0,0,0.29,0.539,0.539,0,0,0.278 +1,0.464,0.464,0.35,0,0,0,0.434,0.715,0.715,0,0,0.278 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.139 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.278 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.14 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.254 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.195 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.218 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.144 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.139 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.185 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.555 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.213 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.262,0,0.185 +1,0.736,0.736,0,0.708,0,0,0.701,0.79,0.79,0.58,0,0.584 +0.667,0.613,0.613,0,0.25,0,0,0.583,0.652,0.652,0,0,0.621 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.427 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0852 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0.483,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.278 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.491 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.278 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.418 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.376 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.231 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0463 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0783 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.231 +0.333,0.175,0.175,0.867,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.35,0,0,0,0.261,0.534,0.534,0,0,0.0926 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0926 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0.367,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0.117,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.139 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.28 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.322 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.206 +1,0.177,0.177,0.7,0,0,0,0.346,0.519,0.519,0,0,0.136 +1,0.318,0.318,0.267,0,0,0,0.338,0.582,0.582,0,0,0.56 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.175 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0463 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.0463 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0926 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.0926 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0926 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.0463 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.382 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.147 +0.667,0.507,0.507,0.2,0,0,0,0.553,0.682,0.682,0,0,0.324 +0.667,0.613,0.613,0.283,0,0,0,0.583,0.652,0.652,0,0,0.278 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.496,0,0 +0.667,0.321,0.321,0,0.958,0.617,0,0.257,0.582,0.582,0.163,0,0 +0.667,0.312,0.312,0,0,0,0.65,0.264,0.582,0.582,0,0.464,0.134 +0.667,0.3,0.3,0,0,0,0.383,0.271,0.592,0.592,0,0.441,0.18 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.218,0.0463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.194 +0.667,0.395,0.395,0.483,0,0,0,0.479,0.672,0.672,0,0,0.112 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.375 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.451 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.251 +0.333,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.204 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0 +1,0.342,0.342,0,0,0.234,0.317,0.478,0.551,0.551,0,0.39,0.328 +0.667,0.305,0.305,0,0,0,0.983,0.435,0.572,0.572,0,0.631,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0.534,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.324 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.333,0.188,0.188,0.233,0,0,0,0.316,0.549,0.549,0,0,0.139 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.12 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.124 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.393 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.591 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0463 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.36 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.286 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.118,0,0 +1,0.0816,0.0816,0,0.312,0,0,0.305,0.474,0.474,0.799,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0.088,0,0.0824 +0.667,0.305,0.305,0,0.0833,0,0,0.435,0.572,0.572,0.429,0,0.127 +0.333,0.184,0.184,0,0.229,0,0,0.298,0.524,0.524,0,0,0.139 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.139 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +0,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0.85,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.326,0.326,0.117,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.567,0.567,0.117,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.312,0,0 +1,0.895,0.895,0.367,0.312,0,0,0.745,0.745,0.745,0.623,0,0.0463 +1,0.928,0.928,0.117,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.484 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.185 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0926 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.303 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.431,0,0 +0.667,0.507,0.507,0,0.958,0,0,0.553,0.682,0.682,0.648,0,0.506 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.58,0,0.425 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.367 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.27 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0773 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.258 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.522 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.455 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.195 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0.0833,0,0,0.316,0.549,0.549,0.54,0,0.0463 +1,0.567,0.567,0.117,0.542,0,0,0.59,0.775,0.775,0,0,0.312 +1,0.736,0.736,0.367,0,0,0,0.701,0.79,0.79,0,0,0.507 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.493 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.688 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.212 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0525,0.0525,0.117,0,0,0,0.331,0.473,0.473,0,0,0.424 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.127 +0.333,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0.4,0,0 +0.667,0.318,0.318,0,0.625,0,0,0.338,0.582,0.582,0.151,0,0.0926 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0.117,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0.367,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.278 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.139 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.417 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0926 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.139 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0926 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.527 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.137 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.386 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0.483,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.185 +0.667,0.292,0.292,0.45,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0.267,0,0,0,0.294,0.602,0.602,0,0,0.0463 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.463 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.507 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0.45,0,0,0,0.479,0.672,0.672,0,0,0.185 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.139 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.139 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.185,0.185,0.233,0,0,0,0.257,0.524,0.524,0,0,0.314 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.249 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.232 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.491 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.062 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.185 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.139 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0926 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.139 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.245 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.082 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.441 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.262 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.24 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.277 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.26 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.146 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.304 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.186 +0.667,0.312,0.312,0,0,0.702,0,0.264,0.582,0.582,0,0,0.737 +0.667,0.3,0.3,0,0,0.234,0.317,0.271,0.592,0.592,0,0.214,0.0463 +0.667,0.292,0.292,0,0,0,0.45,0.264,0.602,0.602,0,0.407,0.0463 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.521,0.0463 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.324 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.324 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.459 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0926 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +1,0.305,0.305,0.367,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0.35,0,0,0,0.338,0.582,0.582,0,0,0.141 +0.667,0.321,0.321,0,0,0.383,0,0.257,0.582,0.582,0,0,0.108 +0.667,0.312,0.312,0,0,0.553,0.0667,0.264,0.582,0.582,0,0.269,0.441 +0.667,0.3,0.3,0,0,0.0638,0.967,0.271,0.592,0.592,0,0,0.392 +0.667,0.292,0.292,0.483,0,0.234,0.317,0.264,0.602,0.602,0,0.295,0.19 +0.667,0.289,0.289,0,0,0,1,0.294,0.602,0.602,0,0.568,0.139 +0.667,0.29,0.29,0,0,0,0.233,0.316,0.592,0.592,0,0.252,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.139 +0.667,0.326,0.326,0.367,0,0,0,0.375,0.632,0.632,0,0,0 +0.333,0.222,0.222,0.117,0,0,0,0.368,0.569,0.569,0,0,0.139 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.185 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.139 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.215 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.16 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.137 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0924 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.165 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.518 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.244 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0.415,0,0.133 +0.333,0.181,0.181,0,0.312,0,0,0.261,0.524,0.524,0,0,0.218 +0.333,0.175,0.175,0,0,0.298,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0.817,0.261,0.534,0.534,0,0.639,0 +0.333,0.169,0.169,0,0,0,0.483,0.276,0.534,0.534,0,0.0601,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0926 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.363,0,0.602 +0.667,0.507,0.507,0,0.625,0,0,0.553,0.682,0.682,0.151,0,0.612 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.185 +1,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.0926 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0926 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.303 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.209 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.312 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.245 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.466 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0632 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.323 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0463 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.139 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0.172,0,0.139 +0.667,0.395,0.395,0.233,0.312,0,0,0.479,0.672,0.672,0.409,0,0.278 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.139 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.266,0,0.478 +1,0.928,0.928,0,0.312,0,0,0.79,0.701,0.701,0.664,0,0.0463 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0971 +1,0.184,0.184,0.2,0,0,0,0.298,0.524,0.524,0,0,0.0874 +1,0.321,0.321,0.283,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.292,0.292,0.233,0,0,0,0.264,0.602,0.602,0,0,0.305 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.352 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.349 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.185 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.185 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0463 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.185 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.0926 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.25 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.392 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0926 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0.05,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0.467,0,0,0,0.297,0.523,0.523,0,0,0.0993 +1,0.424,0.424,0.233,0,0,0,0.255,0.638,0.638,0,0,0.0908 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.101 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.333,0.159,0.159,0.233,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.185 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.0355 +1,0.412,0.412,0.667,0,0,0,0.587,0.772,0.772,0,0,0.287 +0.333,0.194,0.194,1,0,0,0,0.405,0.572,0.572,0,0,0.0463 +0.667,0.429,0.429,1,0,0,0,0.581,0.65,0.65,0,0,0.139 +1,0.783,0.783,1,0,0.66,0,0.787,0.698,0.698,0,0,0.509 +1,0.88,0.88,0.333,0,0,0.583,0.765,0.668,0.668,0,0.537,0.278 +1,0.415,0.415,0,0,0,0.4,0.522,0.551,0.551,0,0.0208,0.128 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.143 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.145 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.425 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.131 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.279 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.863 +0.333,0.16,0.16,0.233,0,0,0,0.26,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.324 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.19 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.224 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.634 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0.367,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.139 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.172 +1,0.538,0.538,0,0.0833,0,0,0.61,0.62,0.62,0.612,0,0.0463 +1,0.603,0.603,0,0.208,0,0,0.596,0.6,0.6,0,0,0.555 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.156 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.224 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.282 +1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.212 +0.667,0.301,0.301,0.1,0,0,0,0.337,0.581,0.581,0,0,0.128 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.139 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0463 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.304 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.226 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0926 +0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.278 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0926 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0.66,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0.533,0.522,0.551,0.551,0,0.193,0 +1,0.116,0.116,0,0,0,0.45,0.357,0.488,0.488,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.173 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.37 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.231 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.231 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.369 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.419 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0926 +1,0.783,0.783,0,0,0.702,0,0.787,0.698,0.698,0,0,0.0463 +1,0.88,0.88,0,0,0.277,0.283,0.765,0.668,0.668,0,0.565,0.0463 +1,0.415,0.415,0,0,0,0.2,0.522,0.551,0.551,0,0.564,0.169 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0463 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.194,0.194,0,0,0.383,0,0.405,0.572,0.572,0,0,0.324 +0.667,0.429,0.429,0,0,0.277,0.283,0.581,0.65,0.65,0,0.145,0.324 +0.667,0.538,0.538,0,0,0,0.45,0.61,0.62,0.62,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.231 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0.766,0,0.297,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0.213,0.333,0.256,0.581,0.581,0,0.687,0 +1,0.291,0.291,0,0,0,0.9,0.263,0.581,0.581,0,0.607,0.0341 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0.417,0.306 +1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0.491,0.246 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0.454,0.2 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.352 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.247 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.234 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.709 +1,0.484,0.484,0.233,0,0,0,0.698,0.787,0.787,0,0,0.363 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.585 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.216 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.411 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.37 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0883 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.191 +1,0.411,0.411,0,0,0.319,0.1,0.266,0.638,0.638,0,0.243,0.946 +1,0.394,0.394,0.467,0,0,0.883,0.277,0.653,0.653,0,0.591,0.256 +1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0,0.161 +1,0.269,0.269,0.233,0,0,0,0.293,0.6,0.6,0,0,0.278 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.0463 +1,0.379,0.379,0,0,0,0,0.355,0.683,0.683,0,0,0.0806 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.473 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.492 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.531 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.102 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.452 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.272 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.634 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0663 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.161 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.231 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0.233,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.139 +1,0.339,0.339,0.467,0,0,0,0.551,0.68,0.68,0,0,0.0926 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.185 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.362 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.217 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.174 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.481 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.224 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.679 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.377 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.611 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0805 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.183 +0.333,0.159,0.159,0,0,0.66,0,0.275,0.533,0.533,0,0,0.0463 +0.667,0.268,0.268,0,0,0,0.533,0.315,0.591,0.591,0,0.877,0 +0.333,0.159,0.159,0,0,0,0.2,0.29,0.538,0.538,0,0.218,0.0846 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.278 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0463 +0.667,0.339,0.339,0,0.0833,0,0,0.551,0.68,0.68,0.609,0,0.231 +0.667,0.429,0.429,0,0.208,0,0,0.581,0.65,0.65,0.111,0,0.404 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.749 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.153,0,0.231 +1,0.597,0.597,0,0.396,0,0,0.654,0.594,0.594,0.402,0,0.358 +1,0.0495,0.0495,0,0.208,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.224 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.229 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.632 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.183 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.208 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.213 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.271 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.394 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.367,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.291,0.291,0.567,0,0,0,0.477,0.67,0.67,0,0,0.185 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0463 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.359,0,0.0926 +0.667,0.538,0.538,0,0.292,0,0,0.61,0.62,0.62,0.53,0,0.656 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.259,0,0.0893 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.179 +1,0.0798,0.0798,0,0,0.915,0,0.305,0.474,0.474,0,0.0935,0 +1,0.143,0.143,0,0,0,0.783,0.331,0.493,0.493,0,0.745,0 +1,0.172,0.172,0,0,0,0.7,0.345,0.518,0.518,0,0.758,0.0463 +1,0.301,0.301,0.367,0,0,0,0.337,0.581,0.581,0,0.693,0 +0.667,0.299,0.299,0.1,0,0,0,0.256,0.581,0.581,0,0.435,0.185 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.392,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0.407,0.0463 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0.564,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.816,0.231 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.3,0.139 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0463 +0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.667,0.291,0.291,0,0,0.702,0,0.477,0.67,0.67,0,0,0.231 +0.667,0.339,0.339,0,0,0.277,0.283,0.551,0.68,0.68,0,0.389,0.291 +0.667,0.429,0.429,0,0,0,0.7,0.581,0.65,0.65,0,0.457,0.492 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.483 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.417 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0.276,0,0.0926 +0.333,0.172,0.172,0,0.708,0,0,0.345,0.518,0.518,0.284,0,0.0926 +0.333,0.175,0.175,0,0.208,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.499 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0463 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.506 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.154 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.185 +0.667,0.291,0.291,0.233,0.0833,0,0,0.477,0.67,0.67,0.614,0,0 +0.667,0.339,0.339,0,0.208,0,0,0.551,0.68,0.68,0.53,0,0.0926 +1,0.619,0.619,0,0,0.979,0,0.742,0.742,0.742,0.233,0.147,0.139 +1,0.783,0.783,0,0,0,0.533,0.787,0.698,0.698,0,0.613,0.0463 +1,0.88,0.88,0,0,0,0.45,0.765,0.668,0.668,0,0.386,0.0463 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.322 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0679 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0926 +0.667,0.0495,0.0495,0.167,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.0667,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.035 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.166 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.195 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.3 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.115 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0978 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0926 +0.667,0.274,0.274,0.233,0,0,0,0.374,0.63,0.63,0,0,0.185 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.509 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.185 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.278 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0839 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.407 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.268 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.245 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.441 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.376 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.171 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0962 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.25 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.139 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0463 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0463 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.0463 +1,0.484,0.484,0.417,0,0.766,0,0.698,0.787,0.787,0,0,0.0463 +1,0.619,0.619,0.05,0,0.213,0.333,0.742,0.742,0.742,0.241,0.457,0.231 +1,0.783,0.783,0,0.458,0,1,0.787,0.698,0.698,0.521,0.55,0.0463 +1,0.88,0.88,0,0.146,0,0.65,0.765,0.668,0.668,0,0.297,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.488,0.324 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.595,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0.095,0.364 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0827 +1,0.0798,0.0798,0.117,0,0,0,0.305,0.474,0.474,0,0,0.253 +1,0.143,0.143,0.117,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0463 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.231 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.275 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.185 +0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.104 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.509 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.278 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.149,0,0.34 +0.667,0.603,0.603,0,0.292,0,0,0.596,0.6,0.6,0.671,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0.436,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.367,0,0,0,0.305,0.474,0.474,0,0,0.351 +0.667,0.236,0.236,0.1,0,0,0,0.404,0.521,0.521,0,0,0.421 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.157 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.114 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.417 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.277 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.338 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.231 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.311 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.29 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.268,0.268,0.867,0,0,0,0.315,0.591,0.591,0,0,0.0852 +0.667,0.269,0.269,1,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0.0167,0,0,0,0.316,0.548,0.548,0,0,0.185 +0.333,0.17,0.17,0.367,0,0,0,0.368,0.568,0.568,0,0,0.278 +1,0.484,0.484,0.1,0,0,0,0.698,0.787,0.787,0,0,0.185 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.139 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.185 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.231 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.231 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.277 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.417 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.208 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.297 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.171 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.185 +0.333,0.164,0.164,0.367,0,0,0,0.264,0.528,0.528,0,0,0.0926 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.05,0,0,0,0.293,0.6,0.6,0,0,0.139 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0463 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.324 +1,0.291,0.291,0.367,0,0,0,0.477,0.67,0.67,0,0,0.0463 +1,0.339,0.339,0.1,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.231 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.229 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.129 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.11,0.11,0,0.0833,0,0,0.352,0.482,0.482,0.573,0,0.106 +0.667,0.236,0.236,0.233,0.521,0,0,0.404,0.521,0.521,0,0,0.0465 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.139 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.258 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.333,0.159,0.159,0.467,0,0,0,0.29,0.538,0.538,0,0,0.0926 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.231 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0463 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.217 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.0463 +1,0.597,0.597,0,0,0.383,0,0.654,0.594,0.594,0,0,0 +1,0.183,0.183,0,0,0.277,0.283,0.455,0.511,0.511,0,0.279,0.395 +1,0.0743,0.0743,0,0,0,0.4,0.32,0.483,0.483,0,0.659,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0377 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.322 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.093 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.42 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.215 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.233 +0.667,0.271,0.271,0.417,0,0,0,0.263,0.6,0.6,0,0,0.154 +0.667,0.269,0.269,0.05,0,0,0,0.293,0.6,0.6,0.355,0,0 +0.667,0.268,0.268,0,0.771,0,0,0.315,0.591,0.591,0.438,0,0.48 +0.667,0.269,0.269,0,0.146,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.139 +0.667,0.294,0.294,0.417,0,0,0,0.434,0.543,0.543,0,0,0.037 +0.667,0.603,0.603,0.05,0,0,0,0.596,0.6,0.6,0,0,0.307 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0463 +0.667,0.116,0.116,0,0,0,0.05,0.357,0.488,0.488,0,0,0.488 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.0499 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0373 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.448 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0.467,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.231 +0.667,0.271,0.271,0,0,0.128,0,0.263,0.6,0.6,0,0,0.0463 +0.667,0.269,0.269,0,0,0.851,0,0.293,0.6,0.6,0,0.547,0.278 +1,0.268,0.268,0,0,0,0.833,0.315,0.591,0.591,0,0.432,0.0926 +1,0.269,0.269,0,0,0,0.15,0.322,0.61,0.61,0,0.792,0.0926 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.667,0.291,0.291,0,0.146,0,0,0.477,0.67,0.67,0.582,0,0.139 +1,0.484,0.484,0,0.771,0,0,0.698,0.787,0.787,0,0,0.347 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.392 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.139 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.139 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0499 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.271 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.236 +0.667,0.301,0.301,0.233,0,0,0,0.337,0.581,0.581,0,0,0.349 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.322 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.255,0,0.0926 +0.333,0.164,0.164,0,0.292,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.185 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0.0833,0,0,0.29,0.538,0.538,0.682,0,0.185 +0.333,0.162,0.162,0,0.521,0,0,0.316,0.548,0.548,0.788,0,0.536 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0.539,0,0.215 +1,0.484,0.484,0,0.292,0.383,0,0.698,0.787,0.787,0.566,0,0.0463 +0.333,0.239,0.239,0,0,0.596,0.0333,0.419,0.558,0.558,0,0.0475,0.0463 +0.667,0.538,0.538,0,0,0.383,0.7,0.61,0.62,0.62,0,0,0.0926 +1,0.88,0.88,0,0,0.596,0.0333,0.765,0.668,0.668,0,0.576,0.148 +1,0.597,0.597,0,0,0,0.95,0.654,0.594,0.594,0,0.423,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0.499,0.0463 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0.496,0.0463 +1,0.066,0.066,0,0,0,0,0.359,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0.494,0,0.343 +1,0.33,0.33,0.233,0.604,0,0,0.477,0.549,0.549,0.623,0,0.163 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.519 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.26 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.331 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0,0.0495,0.0495,0,0,0.702,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0.277,0.283,0.275,0.533,0.533,0,0.107,0.0463 +0.333,0.159,0.159,0,0,0,1,0.286,0.528,0.528,0,0,0.139 +0.333,0.159,0.159,0,0,0,0.45,0.29,0.538,0.538,0,0,0.0926 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.7,0,0,0,0.368,0.568,0.568,0,0,0.324 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0463 +1,0.619,0.619,0,0,0.66,0,0.742,0.742,0.742,0,0.0861,0.0926 +1,0.783,0.783,0,0,0,0.783,0.787,0.698,0.698,0,0.632,0.185 +1,0.88,0.88,0,0,0,0.2,0.765,0.668,0.668,0,0.767,0.466 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.12,0.396 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.21 +1,0.295,0.295,0.233,0,0,0,0.433,0.571,0.571,0,0,0.327 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.319 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.463 +0.333,0.164,0.164,0.117,0,0,0,0.264,0.528,0.528,0,0,0.185 +0.333,0.16,0.16,0.35,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.139 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.412,0.412,0.233,0,0,0,0.587,0.772,0.772,0,0,0.225 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.231 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0463 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.271 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.347 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.219 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.186 +1,0.236,0.236,0,0,0.979,0,0.404,0.521,0.521,0,0.123,0.105 +0.667,0.172,0.172,0,0,0,0.483,0.345,0.518,0.518,0,0,0.109 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.741 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.538 +0.333,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.185 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.231 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.266 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0.979,0,0.308,0.469,0.469,0,0.145,0 +1,0.0495,0.0495,0,0,0,0.533,0.305,0.464,0.464,0,0.791,0 +1,0.0495,0.0495,0,0,0,0.45,0.258,0.465,0.465,0,0.123,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.373 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.457 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.433 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0864 +0,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.17,0.17,0,0,0.277,0.283,0.26,0.523,0.523,0,0.316,0 +0.333,0.164,0.164,0,0,0,0.2,0.264,0.528,0.528,0,0.485,0.0463 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0.414,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.521,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.427,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0.277,0.0463 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0.291,0.0463 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0.436,0.113 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0.57,0.581 +1,0.619,0.619,0.233,0.0833,0,0,0.742,0.742,0.742,0.598,0.472,0.0463 +1,0.783,0.783,0,0.208,0,0,0.787,0.698,0.698,0,0.645,0.0926 +1,0.88,0.88,0,0,0.66,0,0.765,0.668,0.668,0,0.623,0.231 +1,0.415,0.415,0,0,0,0.533,0.522,0.551,0.551,0,0.297,0.0926 +1,0.116,0.116,0,0,0,0.2,0.357,0.488,0.488,0,0,0.124 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0.05,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0343 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.313 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.683 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.645 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.501 +0.667,0.274,0.274,0.467,0,0,0,0.374,0.63,0.63,0,0,0.278 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0.452,0,0.417 +0.667,0.429,0.429,0,0.604,0,0,0.581,0.65,0.65,0.262,0,0.211 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0332 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.191 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0463 +1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.231 +0.667,0.268,0.268,0.167,0,0,0,0.315,0.591,0.591,0,0,0.463 +0.667,0.269,0.269,0.0667,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.126 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.264 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.188 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0926 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0926 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.139 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.417 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.207 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.243 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0.467,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.227 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.318 +0.667,0.162,0.162,0.367,0,0,0,0.316,0.548,0.548,0,0,0.341 +0.667,0.291,0.291,0.333,0,0,0,0.477,0.67,0.67,0.25,0,0.324 +1,0.484,0.484,0,0.292,0,0,0.698,0.787,0.787,0.754,0,0.0926 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0.654,0,0.0926 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.61,0,0.0926 +1,0.88,0.88,0.117,0,0,0,0.765,0.668,0.668,0.542,0,0.231 +1,0.597,0.597,0.117,0,0,0,0.654,0.594,0.594,0.592,0,0.0926 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.157 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0949 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.188 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.141 +0.333,0.164,0.164,0.233,0,0,0,0.257,0.524,0.524,0,0,0.293 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0639 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0.717,0,0,0,0.316,0.549,0.549,0,0,0.37 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.185 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.324 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0926 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0534 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.441 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.212 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.27 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.175 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.266 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.458 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.278 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.278 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.509 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.0926 +0.667,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.546 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.242 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.19 +1,0.317,0.317,0,0,0.574,0.05,0.478,0.551,0.551,0,0.507,0.203 +0.667,0.284,0.284,0,0,0,0.683,0.435,0.572,0.572,0,0.451,0.323 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0.911,0.254 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.491,0.231 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.273,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.675,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.236,0.0926 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.231 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.656 +0.667,0.252,0.252,0.117,0,0,0,0.375,0.632,0.632,0,0,0.295 +0.667,0.264,0.264,0.833,0,0,0,0.479,0.672,0.672,0,0,0.139 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0.312,0,0.388 +1,0.523,0.523,0.233,0.292,0,0,0.745,0.745,0.745,0.302,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.285 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.386 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0.233,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.717,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.278 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.231 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.496 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.139 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.231 +1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.657,0,0.0926 +1,0.523,0.523,0,0.604,0,0,0.745,0.745,0.745,0.704,0,0.0463 +1,0.671,0.671,0,0.208,0,0,0.79,0.701,0.701,0.189,0,0.0463 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.139 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.415 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.269 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0.0638,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0.367,0,0.574,0.05,0.346,0.519,0.519,0,0.116,0.179 +1,0.404,0.404,0.1,0,0.383,0.683,0.378,0.641,0.641,0,0,0.0266 +0.667,0.278,0.278,0,0,0.574,0.05,0.257,0.582,0.582,0,0.264,0.463 +0.667,0.27,0.27,0,0,0,0.683,0.264,0.582,0.582,0,0.602,0.0463 +0.667,0.259,0.259,0.233,0,0,0,0.271,0.592,0.592,0,0.445,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.185 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.231 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0926 +0.667,0.252,0.252,0.617,0,0,0,0.375,0.632,0.632,0.479,0,0 +1,0.371,0.371,0.333,0.604,0,0,0.59,0.775,0.775,0.327,0,0.417 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.139 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.463 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0996 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.218 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.259 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.364 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0927 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.368 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.278 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.157,0.157,0.583,0,0,0,0.368,0.569,0.569,0,0,0.139 +1,0.42,0.42,0.6,0,0,0,0.701,0.79,0.79,0,0,0.278 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.174 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0566 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.169 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.183 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.126 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.414 +0.333,0.154,0.154,0.233,0,0,0,0.265,0.529,0.529,0,0,0.193 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0.383,0,0.287,0.529,0.529,0,0,0.0926 +0.667,0.249,0.249,0,0,0.574,0.05,0.323,0.612,0.612,0,0.298,0 +0.667,0.252,0.252,0,0,0,1,0.375,0.632,0.632,0,0.646,0.139 +1,0.371,0.371,0.717,0,0,0.183,0.59,0.775,0.775,0,0.201,0.185 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.231 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.305 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0926 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.509 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.238 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.224 +1,0.228,0.228,0.467,0,0,0,0.405,0.523,0.523,0,0,0.244 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.433,0,0 +0.667,0.16,0.16,0,0.604,0,0,0.261,0.524,0.524,0.56,0,0.744 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.249 +1,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0.236 +1,0.264,0.264,0.367,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.296,0.296,0.1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.139 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0463 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.137 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.207 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.156 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.231 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.463 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0926 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0463 +1,0.371,0.371,0.233,0,0,0,0.59,0.775,0.775,0,0,0.0463 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0463 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.35,0,0,0,0.331,0.494,0.494,0,0,0.14 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.139 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.139 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.185 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.37 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.414 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.334 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.232 +1,0.167,0.167,0.233,0,0,0,0.346,0.519,0.519,0,0,0.214 +1,0.404,0.404,0,0,0.957,0,0.378,0.641,0.641,0,0.0846,0.103 +0.667,0.278,0.278,0,0,0,0.55,0.257,0.582,0.582,0,0.542,0.139 +0.333,0.16,0.16,0.233,0,0,0.433,0.261,0.524,0.524,0,0.428,0.0463 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.409,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.586,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.2,0.185 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.347,0.0463 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.329,0.602 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.5,0.0926 +1,0.371,0.371,0.117,0,0,0,0.59,0.775,0.775,0,0.595,0.449 +1,0.42,0.42,0.35,0,0,0,0.701,0.79,0.79,0,0.0223,0.185 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.139 +1,0.671,0.671,0,0,0.638,0,0.79,0.701,0.701,0,0.151,0.281 +1,0.799,0.799,0,0,0,0.8,0.768,0.671,0.671,0,0.199,0.0463 +1,0.582,0.582,0,0,0,0.933,0.656,0.596,0.596,0,0,0.607 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.14 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.537 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.253 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.0862 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +0.667,0.259,0.259,0.717,0,0,0,0.271,0.592,0.592,0,0,0.463 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.185 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0926 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.231 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.238 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.151,0,0.0926 +1,0.799,0.799,0,0.292,0,0,0.768,0.671,0.671,0.425,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.175 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.236 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.396 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.165 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0734 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.139 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.231 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.249,0.249,0.233,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.139 +1,0.42,0.42,0,0,0.0638,0,0.701,0.79,0.79,0,0,0.0463 +0.667,0.365,0.365,0,0,0.255,0.3,0.583,0.652,0.652,0,0.325,0.139 +0.667,0.464,0.464,0,0,0,0.433,0.613,0.622,0.622,0,0.476,0.0926 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.616,0.185 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.0861,0.0463 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.323 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0937 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.564 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.11 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.185 +0.667,0.164,0.164,0.367,0,0,0,0.257,0.524,0.524,0,0,0.185 +0.333,0.16,0.16,0.833,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.139 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0463 +0.667,0.252,0.252,0.367,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.1,0,0,0,0.479,0.672,0.672,0,0,0.185 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.182 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0926 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.299,0.299,0.233,0,0,0,0.428,0.534,0.534,0,0,0.0926 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0.617,0,0,0,0.305,0.474,0.474,0.14,0,0.173 +1,0.317,0.317,0.333,0.396,0,0,0.478,0.551,0.551,0.627,0,0.277 +1,0.402,0.402,0,0.208,0,0,0.523,0.626,0.626,0,0,0.555 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.329 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.231 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.37 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.185 +1,0.371,0.371,0,0.0833,0,0,0.59,0.775,0.775,0.399,0,0.324 +1,0.42,0.42,0,0.521,0,0,0.701,0.79,0.79,0.469,0,0 +1,0.523,0.523,0,0.604,0.383,0,0.745,0.745,0.745,0.33,0,0.185 +1,0.671,0.671,0,0,0.574,0.05,0.79,0.701,0.701,0,0.441,0.285 +1,0.549,0.549,0,0,0,0.933,0.598,0.602,0.602,0,0.727,0.231 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.291,0.136 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.268 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.351 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.106 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.149,0.149,0,0,0.0638,0,0.276,0.534,0.534,0,0,0.139 +0.667,0.149,0.149,0,0,0.574,0.05,0.287,0.529,0.529,0,0.184,0 +0.667,0.249,0.249,0,0,0,0.683,0.323,0.612,0.612,0,0.534,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.552,0 +0.333,0.157,0.157,0.233,0,0,0,0.368,0.569,0.569,0,0.745,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.577,0.417 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.368,0.0926 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0.175,0.703 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0868 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.111 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.37 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0.117,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0.117,0,0,0,0.368,0.569,0.569,0,0,0.139 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0968 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.213 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.399 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.394 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.116 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.405 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.624 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.256 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0926 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.0926 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.247 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.37 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.314 +0.667,0.249,0.249,0.367,0,0,0,0.323,0.612,0.612,0,0,0.412 +0.667,0.252,0.252,0.1,0,0,0,0.375,0.632,0.632,0,0,0.331 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.238 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0824 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.483 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.205 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.39 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.203 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.262 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.139,0.139,0,0.0833,0,0,0.331,0.494,0.494,0.436,0,0 +1,0.167,0.167,0,0.521,0,0,0.346,0.519,0.519,0,0,0.332 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.262 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.456,0,0.11 +1,0.27,0.27,0,0.604,0,0,0.264,0.582,0.582,0.591,0,0.824 +1,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0.871,0,0.29 +1,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0.652,0,0.27 +1,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0.623,0,0.278 +1,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0.622,0,0.0463 +1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0.813,0,0.0926 +1,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0.586,0,0.0926 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0.587,0,0.525 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0.332,0,0.366 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.0463 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.231 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.145 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.217 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.192 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.195 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.139 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.278 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.149,0.149,0.35,0,0,0,0.29,0.539,0.539,0,0,0.139 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.26,0,0.0463 +1,0.671,0.671,0,0.604,0,0,0.79,0.701,0.701,0.422,0,0.0926 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.129 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.377 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.139 +0.333,0.149,0.149,0.367,0,0,0,0.29,0.539,0.539,0,0,0.231 +0.667,0.252,0.252,0.333,0,0,0,0.375,0.632,0.632,0,0,0.324 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0926 +1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.596,0,0.0924 +1,0.523,0.523,0,0.521,0.702,0,0.745,0.745,0.745,0,0,0.139 +1,0.671,0.671,0,0,0.255,0.3,0.79,0.701,0.701,0,0.0772,0.651 +1,0.549,0.549,0,0,0,0.683,0.598,0.602,0.602,0,0,0.44 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0.957,0,0.258,0.465,0.465,0,0.12,0 +0.333,0.168,0.168,0,0,0,0.55,0.298,0.524,0.524,0,0.737,0.231 +0.333,0.164,0.164,0,0,0,0.433,0.257,0.524,0.524,0,0.513,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.611,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.261,0.0463 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.658,0.213 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.597,0.375 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.537,0.113 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.154,0.231 +0.333,0.151,0.151,0.233,0,0,0,0.316,0.549,0.549,0,0,0.139 +0.667,0.264,0.264,0.367,0,0,0,0.479,0.672,0.672,0,0,0.109 +1,0.42,0.42,0.583,0,0,0,0.701,0.79,0.79,0,0,0.324 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.228 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.42,0,0.0463 +1,0.405,0.405,0,0.292,0,0,0.524,0.553,0.553,0.759,0,0.0926 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.804,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.519,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.21 +1,0.0781,0.0781,0.233,0,0,0,0.305,0.474,0.474,0,0,0.163 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.295 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.285 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.37 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0.224,0,0 +0.667,0.264,0.264,0,0.604,0,0,0.479,0.672,0.672,0.208,0,0.0463 +1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.614,0,0.278 +1,0.523,0.523,0,0.208,0,0,0.745,0.745,0.745,0,0,0.278 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.449 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.196 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.218 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.252,0.252,0.35,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.138 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.283 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.231 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.37 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.105 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.26 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.253 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.157 +1,0.392,0.392,0.233,0,0,0,0.256,0.641,0.641,0,0,0.191 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.239 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0.153 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.454 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.415 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.304 +0.667,0.249,0.249,0,0,0.957,0,0.323,0.612,0.612,0,0.0935,0.0374 +1,0.353,0.353,0,0,0,0.55,0.434,0.715,0.715,0,0.343,0.37 +1,0.371,0.371,0,0,0,0.183,0.59,0.775,0.775,0.487,0.358,0.324 +1,0.42,0.42,0,0.896,0,0,0.701,0.79,0.79,0.569,0,0.0463 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.871,0,0.384 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.13 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.236 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.155 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.139 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.16,0.16,0.467,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.707 +1,0.352,0.352,0,0,0,0,0.267,0.671,0.671,0,0,0.151 +1,0.349,0.349,0.717,0,0,0,0.312,0.671,0.671,0,0,0.37 +1,0.348,0.348,0.117,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.349,0.349,0.117,0,0,0,0.356,0.686,0.686,0,0,0.37 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.324 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.37 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.32 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.279 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.118 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.102 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0503 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.362 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.231 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.231 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926 +0.667,0.264,0.264,0.117,0,0,0,0.479,0.672,0.672,0,0,0.0463 +1,0.42,0.42,0.35,0.0833,0,0,0.701,0.79,0.79,0.458,0,0.139 +1,0.523,0.523,0,0.208,0,0,0.745,0.745,0.745,0.185,0,0.246 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.136 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +0.667,0.228,0.228,0.467,0,0,0,0.405,0.523,0.523,0,0,0.382 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0.667,0.259,0.259,0.233,0,0,0,0.271,0.592,0.592,0,0,0.185 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.284 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.202 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.169 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.139 +1,0.371,0.371,0,0.0833,0,0,0.59,0.775,0.775,0.585,0,0.0463 +1,0.42,0.42,0,0.208,0,0,0.701,0.79,0.79,0.627,0,0.139 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0.294,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.276,0,0.231 +1,0.582,0.582,0,0.604,0,0,0.656,0.596,0.596,0.181,0,0.224 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.247 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.639 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.408 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0534 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.538 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.117,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.42,0.42,1,0.0833,0,0,0.701,0.79,0.79,0.639,0,0.431 +1,0.523,0.523,0.317,0.521,0,0,0.745,0.745,0.745,0.244,0,0.947 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.423 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.276 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0.233,0,0,0,0.346,0.519,0.519,0,0,0.113 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.139 +0.333,0.157,0.157,0.867,0,0,0,0.368,0.569,0.569,0,0,0.324 +1,0.296,0.296,0.567,0,0,0,0.553,0.682,0.682,0,0,0.0463 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.867,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0.317,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.285 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.131 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.833 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0.44,0,0.0463 +0.333,0.153,0.153,0,0.583,0,0,0.246,0.488,0.488,0.4,0,0.0926 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0.367,0,0,0,0.271,0.501,0.501,0,0,0.185 +1,0.332,0.332,0.1,0,0,0,0.361,0.596,0.596,0,0,0.231 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.397,0,0.0463 +1,0.384,0.384,0,0.583,0,0,0.584,0.658,0.658,0.592,0,0.324 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.508,0,0.139 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0.402,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.11 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.326 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.288 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.305 +0.667,0.245,0.245,0,0,0.383,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0.574,0.05,0.234,0.528,0.528,0,0.243,0.36 +0.667,0.235,0.235,0,0,0,0.917,0.259,0.528,0.528,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0463 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.278 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.185 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0463 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.185 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.301 +1,0.222,0.222,0.1,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0.32,0,0 +0.667,0.263,0.263,0,0.292,0,0,0.228,0.511,0.511,0.61,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0.709,0,0.0926 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0.567,0,0.509 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0.463,0,0.0463 +0.667,0.235,0.235,0,0,0.383,0,0.259,0.528,0.528,0,0,0.0926 +0.667,0.235,0.235,0,0,0.255,0.3,0.277,0.519,0.519,0,0.372,0.139 +1,0.328,0.328,0,0,0,0.417,0.297,0.571,0.571,0,0.329,0.139 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.941,0.363 +1,0.345,0.345,0.467,0,0,0,0.491,0.646,0.646,0,0.0979,0.268 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.231 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.135,0,0.408 +1,0.595,0.595,0,0.292,0,0,0.658,0.583,0.583,0.731,0,0.178 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0463 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.144 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.245 +1,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.602 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.278 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0.117,0.0833,0,0,0.413,0.585,0.585,0.58,0,0.231 +1,0.384,0.384,0.233,0.5,0,0,0.584,0.658,0.658,0.548,0,0.37 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0.262,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.139 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.555 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0468 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.135 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.306 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.278 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.139 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.363 +0.667,0.238,0.238,0.367,0,0,0,0.327,0.552,0.552,0,0,0.371 +0.667,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0.4,0.0833,0,0,0.475,0.594,0.594,0.576,0,0.185 +1,0.467,0.467,0.117,0.5,0,0,0.621,0.621,0.621,0.634,0,0.139 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0.776,0,0.0926 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0.465,0,0.0692 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.155 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.272 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.156 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0.117,0,0,0,0.258,0.496,0.496,0,0,0.231 +0.333,0.142,0.142,0.117,0,0,0,0.268,0.492,0.492,0,0,0.278 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0463 +0.667,0.238,0.238,0.6,0,0,0,0.327,0.552,0.552,0,0,0.417 +0.333,0.148,0.148,0.1,0,0,0,0.336,0.525,0.525,0,0,0.278 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0926 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.258 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.117 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0463 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.368 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.342 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.092 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0.406,0,0 +0.667,0.277,0.277,0,0.583,0,0,0.376,0.503,0.503,0.136,0,0 +0.667,0.274,0.274,0.367,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0.1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.356 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.487 +0.667,0.237,0.237,0.367,0,0,0,0.234,0.528,0.528,0,0,0.241 +0.667,0.235,0.235,0.1,0,0,0,0.259,0.528,0.528,0,0,0.0463 +0.667,0.235,0.235,0,0,0.383,0,0.277,0.519,0.519,0.25,0,0.351 +1,0.328,0.328,0,0.292,0.574,0.05,0.297,0.571,0.571,0.724,0.329,0.237 +1,0.332,0.332,0,0,0,0.667,0.361,0.596,0.596,0,0,0.231 +0.667,0.247,0.247,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0926 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0926 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.303 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.306 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.119 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0.367,0,0,0,0.352,0.461,0.461,0,0,0.493 +1,0.277,0.277,0.333,0,0,0,0.376,0.503,0.503,0,0,0.172 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0993 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.274 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.139 +0.333,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.278 +1,0.332,0.332,0.233,0,0,0,0.361,0.596,0.596,0,0,0.263 +1,0.345,0.345,0.117,0,0,0,0.491,0.646,0.646,0,0,0 +0.667,0.273,0.273,0.117,0,0,0,0.475,0.594,0.594,0,0,0.185 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.444 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0926 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.116 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0666 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.139 +1,0.263,0.263,0,0.0833,0,0,0.228,0.511,0.511,0.795,0,0 +1,0.359,0.359,0,0.208,0,0,0.222,0.534,0.534,0.169,0,0.139 +0.667,0.245,0.245,0,0,0.638,0,0.24,0.519,0.519,0,0.19,0 +0.667,0.237,0.237,0,0,0,0.8,0.234,0.528,0.528,0,0.703,0 +0.667,0.235,0.235,0,0,0,0.167,0.259,0.528,0.528,0,0.585,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.588,0.33 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.454,0.272 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0.383,0.156 +1,0.345,0.345,0.233,0,0,0,0.491,0.646,0.646,0,0.323,0.265 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.214,0.547 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.323 +1,0.595,0.595,0,0,0.957,0,0.658,0.583,0.583,0,0.132,0.308 +1,0.726,0.726,0,0,0,0.233,0.639,0.559,0.559,0,0.717,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.066,0.066,0,0,0,0,0.314,0.428,0.428,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.314,0.42,0.42,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.162,0.162,0,0,0.702,0,0.277,0.488,0.488,0,0,0.439 +1,0.263,0.263,0.867,0,0.255,0.3,0.228,0.511,0.511,0,0.81,0.199 +1,0.359,0.359,1,0,0,0.667,0.222,0.534,0.534,0,0.402,0.0871 +1,0.343,0.343,0.25,0,0,0,0.232,0.546,0.546,0,0.599,0.223 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.288,0.33 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.139 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.185 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.231 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.274 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.346 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0926 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.315 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.155 +0.667,0.163,0.163,0.7,0,0,0,0.317,0.484,0.484,0,0,0.109 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.278 +0.333,0.142,0.142,0.7,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.268 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.278 +0.333,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0463 +1,0.345,0.345,0.467,0,0,0,0.491,0.646,0.646,0.445,0,0.139 +1,0.384,0.384,0,0.875,0,0,0.584,0.658,0.658,0.657,0,0.324 +1,0.467,0.467,0,0.583,0,0,0.621,0.621,0.621,0.53,0,0.0463 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.473 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.4 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.348 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.143 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.186 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.083 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.231 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0.367,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.148,0.148,0.567,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0.517,0,0.139 +1,0.501,0.501,0,0.292,0,0,0.512,0.528,0.528,0.293,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.268 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.378 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.146 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.139 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0.231 +0.333,0.148,0.148,0.35,0,0,0,0.336,0.525,0.525,0.427,0,0.0463 +0.667,0.273,0.273,0,0.292,0,0,0.475,0.594,0.594,0.551,0,0.316 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.185 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.126 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.292 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.184 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0.151 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.109 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.156,0.156,0.233,0,0,0,0.243,0.488,0.488,0,0,0.139 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.311 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.288 +0.667,0.273,0.273,0.233,0,0,0,0.475,0.594,0.594,0,0,0.221 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0926 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.278 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.126 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.209 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.167 +0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0.567,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.278 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0.117,0,0,0,0.292,0.509,0.509,0,0,0.0758 +0.333,0.148,0.148,0.35,0,0,0,0.336,0.525,0.525,0,0,0 +1,0.384,0.384,0.233,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0926 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.648 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.241 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.108 +1,0.162,0.162,0,0,0.638,0,0.277,0.488,0.488,0,0,0.0619 +1,0.263,0.263,0,0,0,0.55,0.228,0.511,0.511,0,0.539,0.12 +0.667,0.153,0.153,0,0,0,0.167,0.246,0.488,0.488,0,0.0816,0.139 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.231 +0.667,0.235,0.235,0,0,0.702,0,0.259,0.528,0.528,0,0,0.417 +0.667,0.142,0.142,0,0,0.255,0.3,0.268,0.492,0.492,0,0.457,0.37 +0.667,0.142,0.142,0,0,0,0.667,0.271,0.501,0.501,0,0.605,0.0463 +0.667,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0.614,0.0463 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.139 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.37 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.156 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0.176,0,0 +1,0.0743,0.0743,0,0.583,0,0,0.295,0.455,0.455,0.756,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0.433,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0.1,0,0,0,0.317,0.484,0.484,0,0,0.231 +1,0.162,0.162,0,0.0833,0,0,0.277,0.488,0.488,0.625,0,0 +1,0.156,0.156,0,0.5,0,0,0.243,0.488,0.488,0.472,0,0 +1,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.0557,0,0.231 +0.667,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0.185 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.425 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.139 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0.246,0,0.184 +0.667,0.328,0.328,0,0.292,0,0,0.5,0.569,0.569,0.515,0,0.0926 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.368 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.137 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0751 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0.384,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.191 +0.667,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.154 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.156,0.156,0.817,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.324 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0926 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0926 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.37 +0.333,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.0926 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.278 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.37 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.387 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0463 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0463 +0.667,0.142,0.142,0,0,0.638,0,0.271,0.501,0.501,0,0.185,0.0926 +0.667,0.144,0.144,0,0,0,0.8,0.292,0.509,0.509,0,0.526,0.0463 +1,0.247,0.247,0,0,0,0.167,0.413,0.585,0.585,0,0.424,0.37 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0.32,0.278 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.49,0.0926 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0.347,0.278 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0.439,0.0463 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.128,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.284 +1,0.222,0.222,0,0,0.383,0,0.352,0.461,0.461,0,0,0.0789 +0.667,0.277,0.277,0,0,0.255,0.3,0.376,0.503,0.503,0,0.616,0.16 +0.667,0.274,0.274,0,0,0,0.417,0.296,0.511,0.511,0,0.829,0.0814 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.622,0.231 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.68,0.0463 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.3,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.359,0.231 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.42,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.915,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.599,0.139 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0.101,0.454,0.0463 +1,0.247,0.247,0.233,0.396,0,0,0.413,0.585,0.585,0.551,0.496,0.0463 +1,0.384,0.384,0,0.479,0,0,0.584,0.658,0.658,0,0,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.139 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0926 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.377 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.211 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0926 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.329 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.13 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.188 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.185 +0.333,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0926 +0.333,0.148,0.148,0,0.0833,0,0,0.336,0.525,0.525,0.671,0,0.0463 +0.333,0.161,0.161,0,0.208,0,0,0.366,0.53,0.53,0.49,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.41 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.297 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.269 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.533 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.488 +0.667,0.274,0.274,0,0,0.702,0,0.296,0.511,0.511,0,0,0.129 +0.667,0.263,0.263,0,0,0.255,0.3,0.228,0.511,0.511,0,0.372,0.0764 +0.667,0.256,0.256,0,0,0,0.667,0.234,0.511,0.511,0,0.318,0.746 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.455,0.185 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.47,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.491,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0.117,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0.583,0,0,0,0.413,0.585,0.585,0.399,0,0.231 +0.667,0.273,0.273,0,0.292,0,0,0.475,0.594,0.594,0.571,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.504,0,0.231 +1,0.595,0.595,0,0,0.638,0,0.658,0.583,0.583,0,0.154,0.0463 +1,0.501,0.501,0,0,0,0.717,0.512,0.528,0.528,0,0.466,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.402,0.185 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.703 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.19 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0.0833,0,0,0.258,0.465,0.465,0.604,0,0.231 +0.667,0.156,0.156,0.367,0.208,0,0,0.243,0.488,0.488,0.243,0,0.832 +0.667,0.256,0.256,0.333,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.231 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.139 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.233 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0926 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.723 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0463 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.139 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.324 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0.617,0,0,0,0.584,0.658,0.658,0,0,0.417 +0.667,0.328,0.328,0.0833,0,0,0,0.5,0.569,0.569,0,0,0.0926 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0926 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.248 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.126 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.486 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0.233,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.187 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.179 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0.574,0.05,0.258,0.465,0.465,0,0.294,0.0463 +0.667,0.235,0.235,0,0,0,1,0.259,0.528,0.528,0,0.418,0 +0.667,0.235,0.235,0,0,0,0.4,0.277,0.519,0.519,0,0.571,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.739,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0.384,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0.729,0.0926 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.677,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.543,0.185 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.518,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0.28,0.636,0.305 +1,0.388,0.388,0,0.292,0,0,0.45,0.486,0.486,0.251,0,0.185 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.222,0.222,0.233,0,0,0,0.352,0.461,0.461,0,0,0.093 +0.667,0.163,0.163,0.117,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0.817,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.227 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.308 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.453 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0926 +0.333,0.144,0.144,0.467,0,0,0,0.292,0.509,0.509,0,0,0.0463 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0463 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.294 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0926 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0463 +1,0.388,0.388,0,0,0.957,0,0.45,0.486,0.486,0,0.0208,0.677 +1,0.183,0.183,0,0,0,0.55,0.395,0.453,0.453,0,0.267,0.0926 +1,0.099,0.099,0,0,0,0.167,0.333,0.445,0.445,0,0.501,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.469,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0.534,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.572 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.089 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0531 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.176 +0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0.108 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.305 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.472 +0.333,0.142,0.142,0.117,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0.3,0,0.629 +1,0.384,0.384,0,0.292,0,0,0.584,0.658,0.658,0.273,0,0.321 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.453 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.365 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.185 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.486 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0824 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.258 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.247 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.182 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.583 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.413 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.493 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.278 +0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0 +0,0.0495,0.0495,0.35,0,0,0,0.258,0.465,0.465,0,0,0.189 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0.617,0,0.383,0,0.5,0.569,0.569,0,0,0 +1,0.595,0.595,0.0833,0.0833,0.255,0.3,0.658,0.583,0.583,0.68,0.407,0.0926 +1,0.726,0.726,0,0.5,0,0.417,0.639,0.559,0.559,0.77,0.315,0.0463 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.602 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.443 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.246 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.202 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.123 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.185 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0.957,0,0.475,0.594,0.594,0,0.0935,0.231 +0.667,0.328,0.328,0,0,0,0.55,0.5,0.569,0.569,0,0.7,0.139 +1,0.413,0.413,0,0,0,0.417,0.525,0.544,0.544,0,0.816,0.0463 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.595,0.0463 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.389,0.137 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.358 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.625 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.126 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.0855 +0.667,0.245,0.245,0,0.0833,0,0,0.24,0.519,0.519,0.696,0,0.243 +0.667,0.237,0.237,0,0.208,0,0,0.234,0.528,0.528,0.656,0,0.183 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,1,0,0.278 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0.39,0,0.509 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.185 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0463 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.509 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.185 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0734 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.243 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.56,0,0.348 +0.667,0.24,0.24,0.233,0.562,0,0,0.239,0.517,0.517,0.434,0,0.197 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.0926 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.679 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.324 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.278 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0946 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0.0833,0,0,0.276,0.487,0.487,0.612,0,0 +0.667,0.258,0.258,0,0.188,0,0,0.227,0.508,0.508,0.278,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.145,0.145,0.233,0,0,0,0.248,0.491,0.491,0,0,0 +1,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463 +1,0.14,0.14,0,0,0.383,0,0.258,0.495,0.495,0,0,0 +1,0.14,0.14,0,0,0.277,0.283,0.267,0.491,0.491,0,0.389,0.176 +1,0.23,0.23,0,0,0,0.4,0.282,0.533,0.533,0,0,0.344 +1,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.278 +0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.185 +0.667,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0.476,0,0.0926 +0.333,0.187,0.187,0,0.854,0,0,0.377,0.516,0.516,0.711,0,0.0926 +0.667,0.41,0.41,0,0.271,0,0,0.521,0.541,0.541,0.576,0,0.185 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.348,0,0.219 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.203 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.35,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.665 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.21 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.107 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.361 +0.333,0.15,0.15,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.185 +0.333,0.145,0.145,0,0,0.255,0.3,0.248,0.491,0.491,0,0.303,0.0463 +0,0.0495,0.0495,0,0,0,0.85,0.258,0.465,0.465,0,0.233,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0789 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.387 +0.333,0.159,0.159,0.233,0,0,0,0.365,0.528,0.528,0,0,0.455 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.185 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.412 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.404 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0924 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.193 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.106 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.278 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.324 +0.333,0.145,0.145,0.367,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.14,0.14,0,0.0833,0,0,0.27,0.499,0.499,0.645,0,0.0463 +1,0.324,0.324,0,0.479,0,0,0.359,0.592,0.592,0.172,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +0.667,0.324,0.324,0,0,0.66,0,0.497,0.566,0.566,0,0,0.0926 +1,0.59,0.59,0,0,0,0.533,0.653,0.579,0.579,0,0.254,0.148 +1,0.496,0.496,0,0,0,0.383,0.509,0.525,0.525,0,0,0.139 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.145,0.145,0.367,0,0,0,0.248,0.491,0.491,0,0,0.324 +0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.139 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.255 +1,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0.296,0,0.185 +1,0.377,0.377,0,0.271,0.66,0,0.58,0.653,0.653,0.761,0,0.231 +1,0.461,0.461,0,0,0,0.533,0.616,0.616,0.616,0.558,0.277,0 +1,0.59,0.59,0,0,0,0.15,0.653,0.579,0.579,0.747,0.614,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.33,0.829,0 +1,0.386,0.386,0,0.708,0,0,0.448,0.484,0.484,0.291,0.0341,0.231 +0.667,0.0495,0.0495,0,0.146,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.202 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0908 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.509 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.164 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.416 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.289 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.185 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.231 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.386 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.417 +0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0.192,0,0.139 +1,0.461,0.461,0,0.271,0,0,0.616,0.616,0.616,0.632,0,0.324 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0463 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.107 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0.188,0,0,0.35,0.459,0.459,0.675,0,0 +1,0.274,0.274,0,0.667,0,0,0.374,0.5,0.5,0,0,0.0463 +1,0.16,0.16,0.233,0,0,0,0.276,0.487,0.487,0,0,0.0926 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.293 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.155 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.278 +0.667,0.233,0.233,0.45,0,0,0,0.325,0.549,0.549,0,0,0.139 +0.333,0.146,0.146,0.0167,0,0,0,0.334,0.524,0.524,0,0,0.0463 +0.667,0.159,0.159,0,0,0.489,0,0.365,0.528,0.528,0,0,0.0463 +1,0.461,0.461,0,0,0.17,0.367,0.616,0.616,0.616,0,0.574,0.0926 +1,0.59,0.59,0,0,0,0.55,0.653,0.579,0.579,0.321,0,0.139 +1,0.72,0.72,0,0.812,0,0,0.635,0.555,0.555,0.303,0,0.333 +1,0.554,0.554,0,0.0417,0,0,0.543,0.493,0.493,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.167 +1,0.154,0.154,0,0,0.489,0,0.242,0.487,0.487,0,0,0 +0.667,0.25,0.25,0,0,0.511,0.1,0.233,0.508,0.508,0,0.214,0 +0.667,0.24,0.24,0.233,0,0,0.583,0.239,0.517,0.517,0,0.141,0.612 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.231 +0.333,0.14,0.14,0.233,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.278 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.169 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.131 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.199 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.231 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.354,0,0 +0.333,0.162,0.162,0,0.271,0.383,0,0.316,0.483,0.483,0.255,0,0 +0.333,0.16,0.16,0,0,0.617,0.0167,0.276,0.487,0.487,0,0.318,0 +0.333,0.154,0.154,0,0,0,0.433,0.242,0.487,0.487,0,0.343,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.697,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.45,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.475,0.37 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.568,0.231 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.43,0.0463 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.231 +0.667,0.141,0.141,0,0,0.383,0,0.291,0.507,0.507,0,0,0.223 +1,0.242,0.242,0.467,0,0.277,0.283,0.411,0.582,0.582,0,0.409,0.185 +1,0.377,0.377,0,0,0,0.633,0.58,0.653,0.653,0,0.488,0.324 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.359,0.51 +1,0.59,0.59,0,0,0.0638,0,0.653,0.579,0.579,0,0.0519,0.136 +1,0.72,0.72,0,0,0.936,0,0.635,0.555,0.555,0,0.157,0.245 +1,0.554,0.554,0,0,0,0.767,0.543,0.493,0.493,0,0,0.0638 +1,0.0495,0.0495,0,0,0,0.15,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.278 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.339 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.38 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.234 +1,0.324,0.324,0.233,0,0,0,0.359,0.592,0.592,0,0,0.132 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0926 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.271,0,0.139 +1,0.461,0.461,0,0.271,0,0,0.616,0.616,0.616,0.646,0,0.185 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.165,0,0.0463 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0463 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.144 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.248 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0463 +0.333,0.15,0.15,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.365 +0.333,0.145,0.145,0,0,0.936,0,0.248,0.491,0.491,0,0.352,0 +0.333,0.141,0.141,0,0,0,0.683,0.245,0.495,0.495,0,0.374,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.389,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.551,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.691,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.334,0.0463 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.27,0.423 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.191 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.246 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.158 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.133 +1,0.386,0.386,0,0,0,0,0.432,0.518,0.518,0.278,0,0.35 +0.333,0.16,0.16,0,0.271,0,0,0.276,0.487,0.487,0.257,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.417 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0463 +0.667,0.24,0.24,0.117,0,0,0,0.239,0.517,0.517,0,0,0.0463 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0.283,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.367,0,0,0,0.291,0.507,0.507,0,0,0.0463 +0.667,0.242,0.242,0.333,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.582 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.383 +1,0.386,0.386,0,0,0,0,0.432,0.518,0.518,0,0,0.0924 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.469 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.233 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.111,0,0.125 +0.667,0.24,0.24,0,0.396,0,0,0.239,0.517,0.517,0.828,0,0.139 +0.333,0.141,0.141,0,0.167,0,0,0.245,0.495,0.495,0.07,0,0.185 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.134 +0.667,0.268,0.268,0.867,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.461,0.461,0.65,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0.35,0,0,0,0.653,0.579,0.579,0,0,0.37 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.285 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0525 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.292 +1,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.142 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.282 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0.66,0,0.258,0.465,0.465,0,0.0341,0.367 +0.333,0.14,0.14,0,0,0,0.867,0.258,0.495,0.495,0,0.7,0.347 +0.667,0.23,0.23,0,0,0,0.75,0.276,0.517,0.517,0,0,0.125 +0.667,0.23,0.23,0.233,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0463 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.231 +0.333,0.159,0.159,0,0.188,0,0,0.365,0.528,0.528,0.576,0,0.139 +0.333,0.187,0.187,0,0.375,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.284 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.185 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0737 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0.7,0,0,0,0.325,0.549,0.549,0.14,0,0 +0.667,0.242,0.242,0,0.5,0,0,0.411,0.582,0.582,0.664,0,0.0926 +0.667,0.268,0.268,0,0.0625,0,0,0.472,0.591,0.591,0.693,0,0.0463 +0.667,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0.0646,0,0.463 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0463 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.231 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.261 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.411 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.188,0 +0.333,0.154,0.154,0,0,0,0.517,0.242,0.487,0.487,0,0.615,0 +0.333,0.15,0.15,0,0,0,0.4,0.245,0.487,0.487,0,0.136,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0.367,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.14,0.14,0.1,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.231 +1,0.338,0.338,0,0.0833,0.383,0,0.488,0.641,0.641,0.522,0,0 +1,0.377,0.377,0,0.188,0.277,0.283,0.58,0.653,0.653,0.354,0.491,0 +1,0.461,0.461,0,0,0,0.633,0.616,0.616,0.616,0,0.227,0.185 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.535 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.324 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.29 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0896 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.145,0.145,0.233,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.346 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.116 +0.667,0.23,0.23,0,0,0.383,0,0.276,0.517,0.517,0,0,0.12 +0.667,0.23,0.23,0,0,0.277,0.283,0.282,0.533,0.533,0,0.282,0.0463 +1,0.324,0.324,0,0,0,0.633,0.359,0.592,0.592,0.375,0.714,0 +1,0.338,0.338,0,0.708,0,0,0.488,0.641,0.641,0.501,0.316,0.0926 +0.667,0.268,0.268,0,0.146,0,0,0.472,0.591,0.591,0,0,0.0463 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.139 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.231 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.185 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.198 +0.667,0.274,0.274,0,0,0.383,0,0.374,0.5,0.5,0,0,0.212 +0.667,0.27,0.27,0,0,0.617,0.0167,0.294,0.508,0.508,0,0.448,0.314 +0.667,0.258,0.258,0,0,0,0.9,0.227,0.508,0.508,0,0.769,0.591 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.453,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.457,0.0463 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0.573,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.509,0.231 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.786,0.37 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.409,0.0463 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.53,0.0463 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.139 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.339 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0463 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0897 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.423 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.108 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.185 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.617,0,0,0,0.291,0.507,0.507,0,0,0.395 +1,0.338,0.338,0.0833,0,0,0,0.488,0.641,0.641,0,0,0.257 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.163 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.245 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.185 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.163 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.231 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.407 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0504,0.0504,0.1,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.0763,0.0763,0.367,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.22,0.22,0.333,0,0,0,0.35,0.459,0.459,0,0,0.362 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0846 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.37 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.667,0.141,0.141,0.617,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.242,0.242,0.0833,0,0,0,0.411,0.582,0.582,0,0,0.231 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.35,0,0.139 +1,0.59,0.59,0,0.562,0,0,0.653,0.579,0.579,0.391,0,0.139 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.407 +0.333,0.141,0.141,0,0,0.66,0,0.245,0.495,0.495,0,0,0.303 +0.667,0.23,0.23,0,0,0,0.617,0.258,0.525,0.525,0,0.895,0.358 +0.667,0.23,0.23,0,0,0,0.533,0.276,0.517,0.517,0,0.0816,0.233 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.233 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.0926 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.231 +0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0,0,0.463 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.37 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.72,0.72,0,0,0.66,0,0.635,0.555,0.555,0,0.144,0.139 +1,0.554,0.554,0,0,0,0.867,0.543,0.493,0.493,0,0.776,0.0926 +1,0.183,0.183,0,0,0,0.05,0.393,0.451,0.451,0,0.605,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,0,0,0.489,0,0.276,0.487,0.487,0,0,0.0534 +0.667,0.154,0.154,0,0,0.511,0.1,0.242,0.487,0.487,0,0.49,0.0463 +0.667,0.15,0.15,0,0,0,0.817,0.245,0.487,0.487,0,0.813,0.0926 +0.667,0.145,0.145,0.45,0,0,0,0.248,0.491,0.491,0,0.536,0.0926 +0.667,0.232,0.232,0.95,0,0,0,0.233,0.525,0.525,0,0.457,0.0926 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.819,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.491,0.185 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.522,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.553,0.0463 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.522,0.0463 +0.667,0.268,0.268,0,0.188,0,0,0.472,0.591,0.591,0.662,0.714,0 +1,0.461,0.461,0,0.667,0,0,0.616,0.616,0.616,0,0.168,0.37 +1,0.59,0.59,0.467,0,0,0,0.653,0.579,0.579,0.104,0,0.139 +1,0.72,0.72,0,0.271,0,0,0.635,0.555,0.555,0.479,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0.578,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.0252,0.282 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.0969,0,0 +1,0.0499,0.0499,0.233,0.396,0,0,0.273,0.442,0.442,0.637,0,0.282 +1,0.0763,0.0763,0,0.167,0,0,0.282,0.446,0.446,0,0,0.107 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.592 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.278 +0.333,0.141,0.141,0.233,0,0,0,0.245,0.495,0.495,0,0,0.19 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.367,0,0,0,0.291,0.507,0.507,0,0,0.222 +1,0.338,0.338,0.1,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.0463 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.641 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0.318,0,0 +1,0.305,0.305,0,0.562,0,0,0.396,0.456,0.456,0.366,0,0.179 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.105 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.435 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.278 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0.367,0.0833,0,0,0.27,0.499,0.499,0.641,0,0 +1,0.324,0.324,0.1,0.562,0,0,0.359,0.592,0.592,0.761,0,0 +0.667,0.242,0.242,0,0.188,0,0,0.411,0.582,0.582,0.266,0,0.0926 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.37 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0463 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.25,0,0.139 +1,0.72,0.72,0,0.271,0,0,0.635,0.555,0.555,0.221,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.304 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0984 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.162 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.125 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.417 +0.667,0.162,0.162,0,0,0.383,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0.277,0.283,0.276,0.487,0.487,0,0.377,0.231 +0.667,0.154,0.154,0,0,0,0.4,0.242,0.487,0.487,0,0.703,0.333 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0.3,0.266 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.493,0.455 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.45,0.0644 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.488,0.0569 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.337,0.322 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.466,0.232 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.138 +1,0.338,0.338,0,0,0.66,0,0.488,0.641,0.641,0,0,0.24 +1,0.268,0.268,0,0,0,0.533,0.472,0.591,0.591,0,0.542,0.402 +1,0.324,0.324,0,0,0,0.15,0.497,0.566,0.566,0,0.662,0.26 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.107,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.273 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.164 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0.342 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.656 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.327 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.185 +0.333,0.141,0.141,0.233,0,0,0,0.245,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0463 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.159,0.159,0.233,0.0833,0,0,0.365,0.528,0.528,0.607,0,0.0463 +1,0.461,0.461,0,0.771,0,0,0.616,0.616,0.616,0.115,0,0.37 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.198 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.183 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.426 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.411 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.14,0.14,0.1,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.33,0,0 +0.667,0.242,0.242,0,0.562,0,0,0.411,0.582,0.582,0,0,0.324 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.139 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.37 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.509 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.334 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0.0811 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.0741 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.148 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.231 +0.667,0.258,0.258,0.2,0,0,0,0.227,0.508,0.508,0,0,0.0926 +0.667,0.25,0.25,0.0333,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.278 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0.489,0,0.276,0.517,0.517,0,0,0.357 +1,0.321,0.321,0,0,0.17,0.367,0.294,0.567,0.567,0,0.38,0.11 +1,0.324,0.324,0.233,0,0,0.317,0.359,0.592,0.592,0,0.537,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.543,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.866,0.231 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +0.667,0.41,0.41,0,0.188,0,0,0.521,0.541,0.541,0.833,0,0.0463 +0.667,0.496,0.496,0,0.375,0,0,0.509,0.525,0.525,0.0862,0,0.0463 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.156 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0.66,0,0.242,0.487,0.487,0,0.0208,0 +0.667,0.25,0.25,0,0,0,0.683,0.233,0.508,0.508,0,0.309,0 +0.667,0.24,0.24,0.7,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.185 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.342 +1,0.321,0.321,0,0,0.489,0,0.294,0.567,0.567,0,0,0.0463 +1,0.233,0.233,0.233,0,0.511,0.1,0.325,0.549,0.549,0,0.639,0.417 +1,0.242,0.242,0,0,0,0.583,0.411,0.582,0.582,0,0.424,0.231 +1,0.268,0.268,0.2,0,0,0,0.472,0.591,0.591,0,0.447,0.0463 +0.667,0.187,0.187,1,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.39,0.503,0.503,0,0,0.0463 +0.667,0.273,0.273,1,0,0,0,0.383,0.495,0.495,0,0,0.185 +0.667,0.218,0.218,0.783,0,0,0,0.353,0.475,0.475,0,0,0.278 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.266 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0377 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.22,0.22,0,0,0.0638,0,0.35,0.459,0.459,0,0,0.305 +0.667,0.274,0.274,0,0,0.596,0.0333,0.374,0.5,0.5,0,0.136,0.264 +0.333,0.16,0.16,0,0,0,1,0.276,0.487,0.487,0,0.26,0.278 +0.333,0.154,0.154,0,0,0,0.35,0.242,0.487,0.487,0,0.402,0.0463 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.504,0.0926 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.503,0.231 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0.626,0.139 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.457,0.0926 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.571,0.0926 +0.667,0.23,0.23,0.117,0,0,0,0.282,0.533,0.533,0,0.795,0.0463 +0.667,0.233,0.233,0.117,0,0,0,0.325,0.549,0.549,0,0,0.0463 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.231 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.491 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.37 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0.0833,0,0,0.258,0.495,0.495,0.573,0,0 +0.333,0.14,0.14,0,0.188,0,0,0.267,0.491,0.491,0,0,0.278 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.124,0,0.0926 +1,0.324,0.324,0.467,0.271,0.0638,0,0.359,0.592,0.592,0.533,0,0.556 +1,0.338,0.338,0,0,0.596,0.0333,0.488,0.641,0.641,0,0.2,0.278 +1,0.268,0.268,0,0,0,1,0.472,0.591,0.591,0,0.129,0.324 +1,0.461,0.461,0,0,0,0.117,0.616,0.616,0.616,0,0,0.545 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.222 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.509 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.575 +1,0.462,0.462,0,0,0.702,0,0.521,0.541,0.541,0,0,0.214 +1,0.542,0.542,0,0,0.255,0.3,0.509,0.525,0.525,0,0.343,0.0463 +1,0.0495,0.0495,0,0,0,0.367,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.17 +1,0.104,0.104,0.117,0,0,0,0.307,0.426,0.426,0,0,0.139 +0.667,0.222,0.222,0.117,0,0,0,0.35,0.459,0.459,0,0,0.0525 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.592 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.324 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.231 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0926 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0.233,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.139 +0.667,0.235,0.235,0,0,0.383,0,0.276,0.517,0.517,0,0,0 +1,0.329,0.329,0.117,0,0.574,0.05,0.294,0.567,0.567,0,0.107,0 +0.667,0.239,0.239,0.117,0,0,0.617,0.325,0.549,0.549,0,0,0.185 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.139 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.05,0.05,0.117,0,0,0,0.273,0.442,0.442,0,0,0.225 +1,0.0768,0.0768,1,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0.317,0,0,0,0.304,0.462,0.462,0,0,0.24 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.537 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0.226,0,0.535 +0.667,0.235,0.235,0,0.271,0,0,0.258,0.525,0.525,0.497,0,0.362 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.321 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.235 +1,0.334,0.334,0.233,0,0,0,0.359,0.592,0.592,0,0,0.446 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.451,0,0.0463 +1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.549,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.13 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.667,0.162,0.162,0.1,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.127 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.139 +0.333,0.142,0.142,0.233,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.188 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.439 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.389 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0915 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.321 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.139 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.49 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.121 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0,0,0.383,0,0.258,0.495,0.495,0,0,0.126 +0.667,0.235,0.235,0,0,0.574,0.05,0.276,0.517,0.517,0,0.188,0.153 +0.667,0.236,0.236,0,0,0,1,0.282,0.533,0.533,0,0.501,0.292 +0.667,0.239,0.239,0.467,0,0,0.0667,0.325,0.549,0.549,0,0,0.254 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.277 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.509 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +0.667,0.462,0.462,0.233,0,0,0,0.521,0.541,0.541,0,0,0.185 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.307,0,0.231 +1,0.571,0.571,0,0.562,0,0,0.543,0.493,0.493,0.592,0,0.139 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.0463 +1,0.124,0.124,0,0,0,0,0.368,0.431,0.431,0,0,0 +1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0472 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.196 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.139 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.353,0.353,0,0,0.638,0,0.488,0.641,0.641,0,0.184,0.278 +1,0.408,0.408,0.233,0,0,0.667,0.58,0.653,0.653,0,0,0.231 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.139 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.324 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.33 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.198 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.222 +0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.156,0.156,0.1,0,0,0,0.242,0.487,0.487,0,0,0.0926 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.284,0,0.0926 +1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.546,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.278 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0849 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.209 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.13 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.204 +0.667,0.162,0.162,0.467,0,0,0,0.276,0.487,0.487,0,0,0.163 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.133 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.185 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.278 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.185 +0.333,0.143,0.143,0,0,0.0638,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0.233,0,0.574,0.05,0.291,0.507,0.507,0,0.266,0.0926 +0.667,0.252,0.252,0,0,0,0.617,0.411,0.582,0.582,0,0.415,0.185 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.61,0.139 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.139 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.272 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.457 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.179 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.148 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.311 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0536 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0926 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.417 +0.333,0.153,0.153,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.389 +0.333,0.147,0.147,0,0,0.894,0,0.248,0.491,0.491,0,0.239,0.139 +0.333,0.143,0.143,0,0,0,0.8,0.245,0.495,0.495,0,0.243,0 +0.667,0.142,0.142,0,0,0,0.1,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.37 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.139 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.278 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.592 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.31 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.139 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0926 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0.367,0,0,0,0.325,0.549,0.549,0,0,0.0926 +1,0.353,0.353,0.833,0,0,0,0.488,0.641,0.641,0.241,0,0.0463 +1,0.408,0.408,0,0.271,0.638,0,0.58,0.653,0.653,0.785,0.0994,0.0463 +1,0.518,0.518,0,0,0,0.667,0.616,0.616,0.616,0.684,0.773,0.463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.592,0.527,0.324 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.372,0.185 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0934 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.227 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.555 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.349 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.344 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0971 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0.467,0,0,0,0.27,0.499,0.499,0,0,0.417 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.139 +0.667,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.139 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.185 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.188 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.266 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0463 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.131 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0.233,0.0833,0,0,0.276,0.487,0.487,0.598,0,0 +1,0.263,0.263,0.233,0.479,0.319,0,0.227,0.508,0.508,0.582,0,0 +1,0.256,0.256,0,0,0,0.55,0.233,0.508,0.508,0.106,0.469,0 +1,0.343,0.343,0,0,0,0.35,0.23,0.542,0.542,0,0.636,0.0463 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0.15,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.088 +1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0.0463 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0463 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0852 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.219 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.415 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.395 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.362 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.112 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0463 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.278 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.139 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.324 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.231 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.179 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.198 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.477 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.231 +0.333,0.142,0.142,0.367,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0.583,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.185 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.37 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.115 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.261 +0.333,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.06 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.128 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.321 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.508 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0.638,0,0.258,0.465,0.465,0,0.0519,0 +0.333,0.143,0.143,0,0,0,0.8,0.27,0.499,0.499,0,0.577,0 +1,0.334,0.334,0,0,0,0.1,0.359,0.592,0.592,0,0.341,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.138,0,0 +0.333,0.169,0.169,0.233,0.396,0,0,0.365,0.528,0.528,0.671,0,0 +0.667,0.362,0.362,0,0.167,0,0,0.497,0.566,0.566,0.445,0,0.539 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.212 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.139 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.361 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.162,0.162,0.367,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0.35,0,0,0,0.242,0.487,0.487,0,0,0.417 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.185 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0.117,0,0,0,0.282,0.533,0.533,0,0,0.0463 +0.667,0.144,0.144,0.35,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0.367,0,0,0,0.58,0.653,0.653,0,0,0.0926 +1,0.518,0.518,0.1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.748 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.118 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0.583,0,0,0,0.294,0.508,0.508,0,0,0.328 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.141 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.16 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.389 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.303 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.379 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.481 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.258 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.557 +0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0.209 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.278 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.231 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.139 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.169 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.737 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0.702,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0.255,0.3,0.276,0.517,0.517,0,0.39,0.185 +1,0.329,0.329,0,0,0,0.15,0.294,0.567,0.567,0,0.426,0.463 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.72,0.0463 +1,0.353,0.353,0.233,0,0,0,0.488,0.641,0.641,0,0.294,0.288 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0.941,0.433 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.427,0.316 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.601,0.144 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.422,0.222 +1,0.571,0.571,0.233,0,0,0,0.543,0.493,0.493,0,0.827,0.12 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.372,0.336 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.471 +0.667,0.143,0.143,0.467,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0.638,0,0.267,0.491,0.491,0,0.162,0.231 +1,0.236,0.236,0.367,0,0,0.667,0.282,0.533,0.533,0,0.562,0.37 +1,0.334,0.334,0.1,0,0,0,0.359,0.592,0.592,0,0,0.315 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.457 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.364 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.348 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.819 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.216 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.179 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.124 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.221 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.133 +0.667,0.163,0.163,0.233,0,0,0,0.316,0.483,0.483,0,0,0.143 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.426 +0.333,0.153,0.153,0,0,0.957,0,0.245,0.487,0.487,0,0.16,0.0463 +0.333,0.147,0.147,0,0,0,0.55,0.248,0.491,0.491,0,0.623,0.0463 +0.333,0.143,0.143,0,0,0,0.35,0.245,0.495,0.495,0,0.62,0.0926 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.53,0.185 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.185 +0.667,0.239,0.239,0.467,0,0,0,0.325,0.549,0.549,0,0,0.0463 +1,0.353,0.353,0.233,0,0,0,0.488,0.641,0.641,0,0,0.278 +1,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.278 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.139 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.139 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.337 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.108 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.658 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0.241,0,0.273 +0.667,0.256,0.256,0,0.562,0.702,0,0.233,0.508,0.508,0.583,0,0.278 +0.667,0.245,0.245,0,0,0.255,0.3,0.239,0.517,0.517,0,0.714,0.0926 +0.667,0.237,0.237,0.367,0,0,0.367,0.233,0.525,0.525,0,0.766,0.0926 +0.667,0.235,0.235,0.1,0,0,0,0.258,0.525,0.525,0,0.286,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.227,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.611,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.625,0.139 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0926 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0463 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.475 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.696 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.201 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.216 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.581 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.518 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.231 +0.333,0.143,0.143,0.467,0,0,0,0.245,0.495,0.495,0,0,0.139 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.139 +0.333,0.151,0.151,0.117,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0.117,0,0,0,0.365,0.528,0.528,0,0,0.231 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.668,0.668,0,0,0.957,0,0.653,0.579,0.579,0,0.0653,0.0926 +1,0.788,0.788,0,0,0,0.55,0.635,0.555,0.555,0,0.0549,0.385 +1,0.223,0.223,0,0,0,0.35,0.353,0.475,0.475,0,0,0.253 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.126 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.273 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0.317,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.231 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.37 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.179 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.14 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.105 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.124 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0776 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.186 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.226 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.165 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.291 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.277 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0.367,0,0,0,0.267,0.491,0.491,0,0,0.139 +0.667,0.236,0.236,0.1,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.278 +0.667,0.252,0.252,0.367,0,0,0,0.411,0.582,0.582,0,0,0.0463 +1,0.408,0.408,0.1,0,0,0,0.58,0.653,0.653,0,0,0.0463 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.434 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.079 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0.367,0,0,0,0.294,0.508,0.508,0,0,0.219 +1,0.37,0.37,0.1,0,0,0,0.212,0.53,0.53,0,0,0.112 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.322 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0.156,0,0.262 +0.667,0.237,0.237,0,0.271,0,0,0.233,0.525,0.525,0.522,0,0.0926 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.231 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0463 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0926 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0926 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.324 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.186 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.0463 +1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.277,0.277,0.35,0,0,0,0.374,0.5,0.5,0.519,0,0 +1,0.387,0.387,0,0.562,0,0,0.313,0.53,0.53,0.355,0,0.249 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.307 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.32 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.315 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.398 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.203 +0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0.37 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.337 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.289,0,0 +1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.671,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.582,0,0.448 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.469 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.183,0.183,0,0.0833,0,0,0.393,0.451,0.451,0.583,0,0 +1,0.0743,0.0743,0,0.188,0,0,0.294,0.454,0.454,0.122,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.42 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.191 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.153 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0764 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.66 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.28 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.199 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.083 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0,0,0.0638,0,0.27,0.499,0.499,0,0,0.185 +0.667,0.239,0.239,0.117,0,0.894,0,0.325,0.549,0.549,0,0.297,0 +0.667,0.252,0.252,0.117,0,0,0.667,0.411,0.582,0.582,0,0.435,0.0926 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.435,0.0463 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.654,0.231 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.292,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.14,0.0463 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.219 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.12 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.255 +1,0.39,0.39,0.617,0,0,0,0.432,0.518,0.518,0,0,0.134 +0.667,0.274,0.274,0.333,0,0,0,0.294,0.508,0.508,0,0,0.37 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.139 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0926 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0926 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0.117,0,0.702,0,0.27,0.499,0.499,0,0,0.185 +0.667,0.239,0.239,0.6,0,0.255,0.3,0.325,0.549,0.549,0,0.466,0.0926 +1,0.353,0.353,0,0,0,0.15,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0926 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.509 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.241 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0173 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.55 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.658 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.247 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0.367,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.667,0.239,0.239,0.35,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.185 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.247 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.185 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.305 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.157 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.268 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.267 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.107 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.262 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0.117,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.353,0.353,0.117,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.278 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0926 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.175 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.412 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.105 +0.333,0.156,0.156,0.233,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.37 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.231 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.185 +0.333,0.151,0.151,0.467,0,0,0,0.334,0.524,0.524,0,0,0.0463 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0463 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.278 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.578 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.231 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.364 +1,0.0743,0.0743,0.2,0,0,0,0.295,0.455,0.455,0,0,0.0962 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.319,0,0.258,0.465,0.465,0,0.0134,0 +1,0.139,0.139,0,0,0,0.917,0.305,0.463,0.463,0,0.418,0.139 +1,0.167,0.167,0.483,0,0,0,0.317,0.484,0.484,0,0.499,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0.427,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.472,0 +1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.907,0.0463 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.496,0.0926 +0.667,0.251,0.251,0.283,0,0,0,0.234,0.528,0.528,0,0.602,0.0463 +0.667,0.249,0.249,0.2,0,0,0,0.259,0.528,0.528,0,0.0601,0.0463 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.185 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0926 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.417 +1,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.607,0,0.324 +0.667,0.454,0.454,0,0.583,0.915,0,0.5,0.569,0.569,0,0.0475,0.0926 +0.667,0.554,0.554,0,0,0.0426,0.45,0.525,0.544,0.544,0,0.172,0.406 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0463 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.437 +1,0.183,0.183,0.0333,0,0,0,0.395,0.453,0.453,0,0,0.0846 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.249 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.387 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0959 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0.12,0,0 +1,0.381,0.381,0,0.583,0,0,0.222,0.534,0.534,0.813,0,0.556 +1,0.364,0.364,0,0,0.319,0,0.232,0.546,0.546,0.233,0,0.0463 +1,0.352,0.352,0,0,0,0.683,0.222,0.559,0.559,0,0.512,0.139 +1,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.746,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.717,0.0926 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.389,0.0463 +0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0.699,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.231 +0.667,0.351,0.351,0,0,0.277,0,0.475,0.594,0.594,0,0,0.0463 +0.667,0.454,0.454,0,0,0.0426,0.467,0.5,0.569,0.569,0,0.316,0.139 +0.667,0.554,0.554,0.233,0,0,0.45,0.525,0.544,0.544,0,0.218,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.162 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.225 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0635 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.225 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.328 +0.667,0.286,0.286,0.483,0,0,0,0.413,0.585,0.585,0,0,0.405 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.139 +0.667,0.454,0.454,0,0.0833,0,0,0.5,0.569,0.569,0.533,0,0 +1,0.806,0.806,0,0.208,0,0,0.658,0.583,0.583,0.144,0,0.329 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.409 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.341 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.301 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.151 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.14 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.139 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.246 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.271 +0,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.343 +0,0.0495,0.0495,0,0,0.255,0.3,0.258,0.465,0.465,0,0.45,0.139 +0.667,0.286,0.286,0,0,0,0.85,0.413,0.585,0.585,0,0.383,0.231 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.62,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.475,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.53,0.185 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.445,0.214 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.723,0.138 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.401,0.185 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.699,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.81,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0.636,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0.705,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.22 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0.201,0,0 +0.333,0.16,0.16,0,0.292,0,0,0.246,0.488,0.488,0.413,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.139 +0.333,0.15,0.15,0.117,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0.117,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.0754,0,0.231 +1,0.501,0.501,0,0.396,0.0638,0,0.584,0.658,0.658,0.381,0,0.37 +1,0.656,0.656,0,0.188,0.255,0.3,0.621,0.621,0.621,0,0.197,0.139 +0.667,0.554,0.554,0,0,0,0.383,0.525,0.544,0.544,0.133,0.0979,0.491 +1,0.584,0.584,0,0.292,0,0,0.512,0.528,0.528,0.727,0,0.184 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0.761,0,0.231 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.0905,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.179 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0463 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.278 +0.333,0.168,0.168,0.117,0,0,0,0.336,0.525,0.525,0,0,0.754 +0.667,0.351,0.351,0.367,0,0,0,0.475,0.594,0.594,0,0,0.0463 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.278 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.209 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.506 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0764 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.112 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0.635 +1,0.402,0.402,0,0,0.702,0,0.436,0.521,0.521,0,0,0.137 +0.667,0.286,0.286,0,0,0.255,0.3,0.296,0.511,0.511,0.589,0.555,0 +0.333,0.164,0.164,0,0.875,0,0.617,0.243,0.488,0.488,0.666,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.555 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.189 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.278 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.215,0,0.139 +0.667,0.286,0.286,0,0.396,0,0,0.413,0.585,0.585,0.522,0,0.0463 +0.667,0.351,0.351,0,0.479,0,0,0.475,0.594,0.594,0.627,0,0.439 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.111,0,0.231 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.313 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0463 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0.638,0,0.24,0.519,0.519,0,0.214,0.185 +0.667,0.251,0.251,0,0,0,0.45,0.234,0.528,0.528,0,0.454,0.324 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.463,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.54,0.185 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.326,0.267 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.558,0.231 +0.333,0.168,0.168,0.233,0,0,0,0.336,0.525,0.525,0,0.51,0.324 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.184,0.0463 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0926 +1,0.584,0.584,0,0,0.277,0,0.512,0.528,0.528,0,0,0.503 +1,0.391,0.391,0,0,0.362,0.217,0.45,0.486,0.486,0,0.353,0.0463 +1,0.116,0.116,0,0,0,0.467,0.326,0.459,0.459,0,0.234,0.231 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0.0564,0.139 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.283,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0.433,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.139 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0926 +1,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.417 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.139 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.185 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.47 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.424 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.251 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.357 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.123,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0849 +1,0.0511,0.0511,0.233,0,0,0,0.29,0.42,0.42,0,0,0.188 +1,0.107,0.107,0.117,0,0,0,0.308,0.428,0.428,0,0,0.224 +0.667,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.0463 +0.333,0.0495,0.0495,0.983,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.185 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.139 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.231 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0926 +1,0.501,0.501,0.233,0,0,0,0.584,0.658,0.658,0,0,0.139 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.135,0,0.0463 +1,0.584,0.584,0,0.396,0,0,0.512,0.528,0.528,0.512,0,0.266 +1,0.391,0.391,0,0.188,0,0,0.45,0.486,0.486,0,0,0.202 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0.233,0,0,0,0.283,0.447,0.447,0,0,0.177 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.224 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.325 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.105 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0943 +1,0.404,0.404,0,0,0.0638,0,0.491,0.646,0.646,0.145,0,0 +0.667,0.351,0.351,0,0.583,0.255,0.3,0.475,0.594,0.594,0,0.372,0 +0.667,0.454,0.454,0,0,0,0.15,0.5,0.569,0.569,0,0.455,0 +0.667,0.554,0.554,0.867,0,0,0,0.525,0.544,0.544,0,0.553,0.139 +1,0.584,0.584,0.333,0,0,0,0.512,0.528,0.528,0,0.102,0.458 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.442 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.25 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0993 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.187 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.705 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.0922 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.126 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.16 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.194 +0.667,0.351,0.351,0.367,0,0,0,0.475,0.594,0.594,0,0,0.0463 +0.667,0.454,0.454,0.35,0,0,0,0.5,0.569,0.569,0,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.278 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.139 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.328 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.562 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.202 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.39 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.509 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.445 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0926 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.143 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.113 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.231 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.184 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.178 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0.152,0,0 +0.333,0.15,0.15,0,0.292,0,0,0.246,0.496,0.496,0.431,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.185 +0.667,0.251,0.251,0.233,0,0,0,0.284,0.536,0.536,0,0,0.0926 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0463 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.139 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.0926 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.322 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0946 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.206 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.167,0.167,0.283,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.284 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.172 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.117,0,0.268 +0.667,0.249,0.249,0,0.604,0,0,0.259,0.528,0.528,0.7,0,0.0463 +0.667,0.249,0.249,0,0.271,0.277,0,0.277,0.519,0.519,0,0,0.0463 +0.667,0.251,0.251,0,0,0.362,0.217,0.284,0.536,0.536,0.226,0.347,0.0463 +1,0.363,0.363,0,0.292,0,0.7,0.361,0.596,0.596,0.607,0.372,0.0463 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.576,0,0.367 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0463 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0463 +1,0.391,0.391,0,0,0.915,0,0.45,0.486,0.486,0,0.0208,0.274 +1,0.116,0.116,0,0,0.0426,0.05,0.326,0.459,0.459,0,0,0.0814 +1,0.0495,0.0495,0,0,0,0.217,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.311 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.105 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.257 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.284 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.186 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.551,0,0.278 +0.667,0.351,0.351,0,0.583,0,0,0.475,0.594,0.594,0.785,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.542,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.557,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0.65,0,0.0463 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0.594,0,0.185 +1,0.249,0.249,0,0,0,0.417,0.463,0.447,0.447,0,0,0.157 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.139 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.182 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.491 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.475 +0.333,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.0463 +0.667,0.251,0.251,0.117,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.117,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.404,0.404,0.117,0,0,0,0.491,0.646,0.646,0,0,0.435 +1,0.501,0.501,0.117,0,0,0,0.584,0.658,0.658,0,0,0.36 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.297 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.231 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.504 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.133 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.259,0.259,0.483,0,0.319,0.05,0.327,0.552,0.552,0,0.0208,0.139 +1,0.404,0.404,0,0,0,0.867,0.491,0.646,0.646,0,0.84,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.499,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.168,0.417 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.324 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.185 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.066,0.066,0,0,0,0,0.314,0.428,0.428,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0.957,0,0.283,0.447,0.447,0,0.0341,0 +1,0.228,0.228,0,0,0,0.55,0.352,0.461,0.461,0,0.455,0.139 +1,0.284,0.284,0,0,0,0.133,0.376,0.503,0.503,0,0.226,0.0842 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.467 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.314 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.197 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.324 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.231 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.286,0.286,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0463 +0.667,0.351,0.351,0,0.0833,0,0,0.475,0.594,0.594,0.627,0,0.648 +1,0.656,0.656,0,0.5,0,0,0.621,0.621,0.621,0.442,0,0.193 +1,0.806,0.806,0,0.292,0,0,0.658,0.583,0.583,0.223,0,0.152 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.372 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0952 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.36 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.231 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.185 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.154,0.154,0.717,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0926 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.4,0,0.0926 +1,0.656,0.656,0,0.583,0,0,0.621,0.621,0.621,0.118,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.139 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.295 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.284,0.284,0.367,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.168,0.168,0.35,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0.0638,0,0.258,0.496,0.496,0,0,0.0926 +0.333,0.149,0.149,0,0,0.574,0.05,0.268,0.492,0.492,0,0.214,0.139 +0.667,0.251,0.251,0,0,0,0.867,0.284,0.536,0.536,0,0.543,0.0926 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.549,0.139 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.496,0.0926 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.291,0.384,0.0926 +0.667,0.454,0.454,0,0.583,0,0,0.5,0.569,0.569,0.348,0.0504,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0463 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0926 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.444 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.185 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +1,0.167,0.167,0.783,0,0,0,0.317,0.484,0.484,0.472,0,0.124 +1,0.286,0.286,0.667,0.583,0,0,0.296,0.511,0.511,0.348,0,0.132 +1,0.392,0.392,0.0333,0,0,0,0.213,0.534,0.534,0,0,0 +0.667,0.27,0.27,0.2,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.364,0.364,0.233,0,0,0,0.232,0.546,0.546,0,0,0.139 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +1,0.351,0.351,0.283,0,0,0,0.297,0.571,0.571,0,0,0.0926 +1,0.363,0.363,0.433,0,0,0,0.361,0.596,0.596,0,0,0.139 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.139 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.139 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +1,0.806,0.806,0,0,0.638,0,0.658,0.583,0.583,0,0.2,0.0926 +1,0.851,0.851,0,0,0,0.917,0.639,0.559,0.559,0,0.531,0.278 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0.675,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.227,0.118 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.083 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139 +0.333,0.16,0.16,0.0333,0,0,0,0.246,0.488,0.488,0,0,0.324 +0.333,0.154,0.154,0.933,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0.957,0,0.259,0.528,0.528,0,0.223,0 +1,0.349,0.349,0,0,0,0.717,0.287,0.546,0.546,0,0.26,0 +1,0.351,0.351,0,0,0,0.2,0.297,0.571,0.571,0,0,0.0463 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.324 +0.667,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.185 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.139 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0463 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.139 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.139 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.626 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.101 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.506 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.21 +1,0.228,0.228,0.233,0,0,0,0.352,0.461,0.461,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.168,0.168,0.233,0,0,0,0.277,0.488,0.488,0,0,0.0926 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.139 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.142,0,0.0463 +0.333,0.149,0.149,0,0.292,0,0,0.268,0.492,0.492,0.75,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.259,0.259,0.367,0,0,0,0.327,0.552,0.552,0,0,0.139 +0.667,0.286,0.286,0.117,0,0,0,0.413,0.585,0.585,0,0,0.702 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.225 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.102 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0463 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.231 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0924 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0956 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.219 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0.233,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0.483,0.0833,0,0,0.292,0.509,0.509,0.641,0,0.0926 +0.667,0.286,0.286,0,0.5,0,0,0.413,0.585,0.585,0,0,0.185 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.185 +1,0.656,0.656,0.717,0,0,0,0.621,0.621,0.621,0,0,0.0463 +1,0.806,0.806,0,0,0.638,0,0.658,0.583,0.583,0,0,0.17 +1,0.851,0.851,0,0,0,0.55,0.639,0.559,0.559,0,0.671,0.139 +1,0.391,0.391,0,0,0,0.133,0.45,0.486,0.486,0,0.111,0.213 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.378 +1,0.228,0.228,0.117,0,0,0,0.352,0.461,0.461,0,0,0.155 +0.667,0.167,0.167,0.117,0,0,0,0.317,0.484,0.484,0,0,0.153 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0463 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.37 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.417 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.324 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0503,0.0503,0.85,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.113 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.306 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.466 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.149,0.149,0.233,0,0.638,0,0.268,0.492,0.492,0,0.154,0 +0.667,0.251,0.251,0.117,0,0,0.683,0.284,0.536,0.536,0,0.0467,0 +1,0.363,0.363,0.117,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.185 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0463 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0926 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.146 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0676 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.112 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0.181,0,0.227 +1,0.139,0.139,0,0.396,0.638,0,0.305,0.463,0.463,0.619,0,0.115 +0.667,0.284,0.284,0.233,0.188,0,0.55,0.376,0.503,0.503,0.153,0.393,0.0463 +0.333,0.168,0.168,0,0.292,0,0.133,0.277,0.488,0.488,0.673,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.463 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.669 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.278 +0.667,0.249,0.249,0.233,0,0,0,0.277,0.519,0.519,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.353 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.157 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.517 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0463 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.515 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.26 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.397,0,0.102 +1,0.168,0.168,0,0.292,0,0,0.277,0.488,0.488,0.118,0,0.142 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.616 +1,0.351,0.351,0.233,0,0,0,0.297,0.571,0.571,0,0,0.447 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.139 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0926 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.185 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.278 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.139 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.378 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0.717,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.667,0.259,0.259,0.283,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.15,0.15,0.917,0,0,0,0.246,0.496,0.496,0,0,0.278 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.231 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.278 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.328 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.331 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.573,0,0.0926 +1,0.656,0.656,0,0.292,0,0,0.621,0.621,0.621,0.113,0,0.252 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.348 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.0463 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.367,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.133,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.169 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.659 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0926 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.139 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.37 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.12 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.38 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.375 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.161 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.399 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0932 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.316 +0.667,0.172,0.172,0.25,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,0.367,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.655,0.655,0.383,0,0,0,0.699,0.788,0.788,0,0,0.185 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.185 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.34 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.134 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.225 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.157 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.376 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.428 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.484 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.486 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0.124,0,0.0926 +1,0.655,0.655,0,0.396,0,0,0.699,0.788,0.788,0.68,0,0.324 +1,0.829,0.829,0,0.208,0,0,0.743,0.743,0.743,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.222 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0.883,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0.389 +1,0.295,0.295,0.133,0,0,0,0.433,0.571,0.571,0,0,0.114 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.105 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.284 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.123 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.27 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.183 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0926 +0.667,0.35,0.35,0.25,0,0,0,0.478,0.67,0.67,0,0,0.0926 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.0463 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0463 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0594 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.267 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.088 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.324 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0926 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.417 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.278 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0926 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.185 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.129 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0.27 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.188 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.139 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0.278 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.274,0.274,0.367,0,0,0,0.323,0.611,0.611,0,0,0.231 +1,0.417,0.417,0.133,0,0,0,0.433,0.713,0.713,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.185 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.231 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.143 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.261 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0943 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.32 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.187 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.555 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.185 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.139 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.366,0,0.224 +1,0.655,0.655,0,0.917,0,0,0.699,0.788,0.788,0.129,0,0.354 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.468 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.4 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0926 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.474 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258 +1,0.0798,0.0798,0.25,0,0,0,0.305,0.474,0.474,0,0,0.129 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.184 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.347 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.526 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.694 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0926 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0.332,0,0 +0.333,0.2,0.2,0.25,0.604,0,0,0.368,0.568,0.568,0.321,0,0 +0.667,0.453,0.453,0,0,0.0638,0,0.552,0.68,0.68,0,0,0 +0.667,0.569,0.569,0,0,0.532,0.0833,0.581,0.65,0.65,0,0.3,0.231 +1,0.905,0.905,0,0,0,0.617,0.788,0.698,0.698,0,0.652,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.561 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.38 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.459 +0.667,0.301,0.301,0.383,0,0,0,0.337,0.581,0.581,0,0,0.412 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0926 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.441 +0.667,0.294,0.294,0.617,0,0,0,0.374,0.631,0.631,0,0,0.163 +1,0.501,0.501,0.133,0,0,0,0.588,0.773,0.773,0,0,0.271 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.305,0,0 +0.667,0.569,0.569,0,0.292,0,0,0.581,0.65,0.65,0.257,0,0.185 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.417 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.145 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.319 +0.667,0.172,0.172,0.367,0,0,0,0.346,0.518,0.518,0,0,0.136 +0.667,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0463 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0463 +0.667,0.2,0.2,0,0,0.298,0.0667,0.368,0.568,0.568,0,0.111,0.0463 +1,0.453,0.453,0,0,0,1,0.552,0.68,0.68,0,0.493,0 +1,0.569,0.569,0,0,0,0.117,0.581,0.65,0.65,0,0.539,0.648 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.107,0.785 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.396 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.208 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0.478,0,0 +0.667,0.301,0.301,0,0.292,0,0,0.337,0.581,0.581,0.598,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.602 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.37 +0.667,0.2,0.2,0.117,0,0,0,0.368,0.568,0.568,0,0,0.0463 +0.667,0.251,0.251,0.383,0,0,0,0.405,0.573,0.573,0,0,0.0463 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.192 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.452 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.139 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.486 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.109 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.413 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.362 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.138 +0.333,0.172,0.172,0.25,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.278 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.324 +1,0.829,0.829,0,0,0.894,0,0.743,0.743,0.743,0,0.0475,0.185 +1,0.62,0.62,0,0,0,0.6,0.611,0.621,0.621,0,0.479,0.0463 +1,0.564,0.564,0,0,0,0.35,0.596,0.601,0.601,0,0,0.185 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.322 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.136 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.181 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.293 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.158 +1,0.279,0.279,0.367,0,0,0,0.271,0.591,0.591,0,0,0.0698 +1,0.271,0.271,0.25,0,0,0,0.263,0.601,0.601,0,0,0.213 +0.667,0.159,0.159,0.133,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.139 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.06 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.287 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.417 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.324 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.397 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.139 +1,0.356,0.356,0.5,0,0,0,0.522,0.551,0.551,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.472,0.472,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.352,0.462,0.462,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.189 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.418 +0.667,0.291,0.291,0,0,0.596,0,0.263,0.581,0.581,0,0.102,0 +0.667,0.164,0.164,0,0,0,0.833,0.264,0.528,0.528,0,0.742,0 +0.667,0.16,0.16,0,0,0,1,0.261,0.533,0.533,0,0.601,0.0463 +0.667,0.159,0.159,0.25,0,0,0.0667,0.275,0.533,0.533,0,0.00445,0.0926 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139 +0.667,0.172,0.172,0,0,0.0638,0,0.316,0.548,0.548,0,0,0 +0.667,0.2,0.2,0,0,0.532,0.0833,0.368,0.568,0.568,0,0.5,0 +0.667,0.453,0.453,0,0,0,0.617,0.552,0.68,0.68,0,0.444,0.463 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.576,0.139 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.402,0.228 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.577,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.675,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.507,0.0314 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0.111,0.244 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.351 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.259 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0541 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0761 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.163 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0.367,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.655,0.655,0.383,0,0,0,0.699,0.788,0.788,0,0,0.231 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231 +1,0.905,0.905,0,0.0833,0,0,0.788,0.698,0.698,0.506,0,0.0463 +1,0.821,0.821,0,0.208,0,0,0.765,0.669,0.669,0.794,0,0.0463 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.253,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0902 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.117,0,0,0,0.305,0.474,0.474,0,0,0.633 +1,0.236,0.236,0.133,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.278 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0985 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.072 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0463 +0.333,0.172,0.172,0.117,0,0,0,0.316,0.548,0.548,0,0,0.0926 +0.667,0.35,0.35,0.383,0,0,0,0.478,0.67,0.67,0,0,0.0926 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.417 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.375 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.163 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.176,0,0.4 +1,0.203,0.203,0,0.292,0,0,0.39,0.508,0.508,0.761,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.101,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.345 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.071 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.469 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.376 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.135 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.255 +0.667,0.271,0.271,0,0,0.0638,0,0.263,0.601,0.601,0,0,0.25 +0.667,0.269,0.269,0,0,0.532,0.0833,0.293,0.601,0.601,0,0.454,0.189 +0.667,0.269,0.269,0,0,0,1,0.315,0.591,0.591,0,0.562,0.137 +1,0.387,0.387,0.617,0,0,0.1,0.355,0.684,0.684,0,0.461,0.0926 +0.667,0.294,0.294,0.133,0,0,0,0.374,0.631,0.631,0,0,0.0926 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.196,0,0.417 +1,0.829,0.829,0,0.396,0,0,0.743,0.743,0.743,0.851,0,0.139 +1,0.905,0.905,0,0.521,0,0,0.788,0.698,0.698,0.541,0,0.0463 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.0727,0,0.244 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.159 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.33 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.231 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.349 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0463 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0926 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.224 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.287 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.274,0.274,0.367,0,0,0,0.323,0.611,0.611,0,0,0.0926 +0.333,0.172,0.172,0.133,0,0,0,0.316,0.548,0.548,0,0,0.139 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.278 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.712 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0926 +0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.324 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.207 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.401 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.262 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.342 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.271 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.923 +0.333,0.164,0.164,0,0,0.894,0,0.264,0.528,0.528,0,0.12,0.447 +0.333,0.16,0.16,0.75,0,0,0.6,0.261,0.533,0.533,0,0.424,0 +0.667,0.269,0.269,0,0,0,0.35,0.293,0.601,0.601,0,0.671,0.0926 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.596,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.531,0.0463 +1,0.417,0.417,0.25,0,0,0,0.433,0.713,0.713,0,0.568,0.0463 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.455,0.0463 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.309,0.231 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926 +1,0.564,0.564,0,0.0833,0,0,0.596,0.601,0.601,0.654,0,0.324 +1,0.203,0.203,0,0.833,0,0,0.39,0.508,0.508,0,0,0.102 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.43 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.25,0,0.83,0,0.258,0.465,0.465,0,0.26,0 +1,0.382,0.382,0.25,0,0,0.7,0.266,0.669,0.669,0,0.337,0 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0.117,0,0,0,0.323,0.611,0.611,0,0,0.231 +0.667,0.294,0.294,0.133,0,0,0,0.374,0.631,0.631,0,0,0.0926 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.324 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.231 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0926 +0.667,0.62,0.62,0.25,0,0,0,0.611,0.621,0.621,0,0,0.185 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0463 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.417 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.566 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.204 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.463 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0926 +0.667,0.269,0.269,0.25,0,0,0,0.293,0.601,0.601,0,0,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0.278 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0.122,0,0.0463 +1,0.655,0.655,0,0.396,0,0,0.699,0.788,0.788,0.366,0,0.231 +1,0.829,0.829,0,0.521,0,0,0.743,0.743,0.743,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.231 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0974 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.317 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.196 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.155 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0827 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.139 +1,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926 +1,0.564,0.564,0,0,0.298,0.0667,0.596,0.601,0.601,0,0.0861,0.35 +1,0.203,0.203,0,0,0,0.633,0.39,0.508,0.508,0,0.338,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.465 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0.133,0,0,0,0.331,0.493,0.493,0,0,0.0726 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.25,0,0,0,0.261,0.523,0.523,0,0,0.278 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.463 +0.333,0.162,0.162,0.25,0,0,0,0.29,0.538,0.538,0,0,0.0463 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.231 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.47 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.139 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.139 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.477 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.192 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.219 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0.291,0,0 +1,0.569,0.569,0,0.708,0,0,0.581,0.65,0.65,0.307,0,0 +1,0.335,0.335,0,0.208,0,0,0.434,0.543,0.543,0,0,0.417 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.266 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.271 +1,0.417,0.417,0.5,0,0,0,0.521,0.624,0.624,0.443,0,0.314 +1,0.427,0.427,0,0.604,0,0,0.377,0.639,0.639,0.101,0,0.325 +0.667,0.299,0.299,0.117,0,0,0,0.256,0.581,0.581,0,0,0.727 +0.667,0.291,0.291,0.133,0,0,0,0.263,0.581,0.581,0,0,0.443 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.116 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0.117,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0.133,0,0,0,0.316,0.548,0.548,0,0,0.185 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0926 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.139 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.139 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.251 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.152 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.624 +0.667,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.223 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.291 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.231 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.278 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.294,0.294,0.75,0,0,0,0.374,0.631,0.631,0,0,0.138 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.139 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.234 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.243 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.519 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0.0638,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0.867,0,0.532,0.0833,0.298,0.523,0.523,0,0.205,0 +1,0.424,0.424,0.383,0,0,0.383,0.255,0.639,0.639,0,0.423,0.283 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0.705,0.121 +1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0.102,0.0463 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.139 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0.397,0,0.278 +0.667,0.453,0.453,0.117,0.604,0,0,0.552,0.68,0.68,0.72,0,0.278 +0.667,0.569,0.569,0.883,0,0,0,0.581,0.65,0.65,0.673,0,0.185 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.524,0,0.406 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.689,0,0.185 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0.618,0,0.0463 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0.634,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.358 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.344 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0,0.136 +1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0,0.127 +1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0,0.32 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0463 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.37 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.139 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.231 +0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0.172,0,0.278 +1,0.829,0.829,0,0.292,0,0,0.743,0.743,0.743,0.746,0,0.185 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.383,0,0.185 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.515,0,0.231 +1,0.51,0.51,0,0.604,0,0,0.654,0.594,0.594,0.662,0,0.139 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.335 +1,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.228 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.2,0.2,0.867,0,0.0638,0,0.368,0.568,0.568,0,0,0.278 +1,0.655,0.655,0.133,0,0.83,0,0.699,0.788,0.788,0,0.214,0.0926 +1,0.829,0.829,0,0,0,0.85,0.743,0.743,0.743,0,0.252,0.0926 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0,0 +1,0.307,0.307,0,0,0,0.05,0.427,0.533,0.533,0,0,0.231 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0758 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.194 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.43 +1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.19 +0.667,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0.454 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.383 +0.667,0.291,0.291,0.25,0,0,0,0.263,0.581,0.581,0,0,0.281 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.231 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0.413,0,0.0926 +1,0.501,0.501,0,0.604,0,0,0.588,0.773,0.773,0.0969,0,0.139 +1,0.655,0.655,0.5,0,0,0,0.699,0.788,0.788,0,0,0.0463 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.24 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.462 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.3 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.139 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.371 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.677 +0.667,0.35,0.35,0,0,0.298,0.0667,0.478,0.67,0.67,0,0.0223,0.321 +1,0.655,0.655,0,0,0,0.883,0.699,0.788,0.788,0,0.255,0.231 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.608,0.417 +0.667,0.62,0.62,0.367,0,0,0,0.611,0.621,0.621,0,0.461,0.0463 +1,0.821,0.821,0.633,0,0,0,0.765,0.669,0.669,0,0.239,0.0463 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0.532,0,0.305,0.473,0.473,0,0,0.123 +0.667,0.147,0.147,0,0,0.0638,0.45,0.33,0.493,0.493,0,0.591,0.174 +0.333,0.177,0.177,0.233,0,0,0.583,0.345,0.518,0.518,0,0.102,0.0926 +0.333,0.184,0.184,0.0333,0,0,0,0.297,0.523,0.523,0,0,0.0463 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.139 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0463 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0926 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.587 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.392 +0.667,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.18 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.304 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.54 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0.267,0,0,0,0.33,0.493,0.493,0,0,0.0704 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.231 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0.817,0,0,0,0.316,0.547,0.547,0,0,0.139 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.231 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.37 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0926 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.243 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0171 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.139 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.185,0.185,0,0,0.383,0,0.257,0.523,0.523,0,0,0 +0.667,0.312,0.312,0,0,0.213,0.333,0.263,0.58,0.58,0,0.411,0 +0.333,0.175,0.175,0.117,0,0,0.95,0.264,0.528,0.528,0,0.32,0.185 +0.333,0.171,0.171,0.15,0,0,0,0.26,0.532,0.532,0,0.436,0.139 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.453,0.0463 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.577,0.0463 +0.667,0.338,0.338,0.367,0,0,0,0.322,0.609,0.609,0,0.426,0.231 +0.667,0.425,0.425,0.167,0,0,0,0.373,0.629,0.629,0,0.132,0.0463 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.189 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.493 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.224,0,0 +1,0.345,0.345,0,0.646,0,0,0.521,0.55,0.55,0.341,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.817,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.402,0,0.102 +1,0.321,0.321,0,0.646,0,0,0.255,0.58,0.58,0.255,0,0.108 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.346 +1,0.426,0.426,0.267,0,0,0,0.276,0.652,0.652,0,0,0.208 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0.652 +1,0.409,0.409,0,0,0,0,0.31,0.667,0.667,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.417 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +1,0.612,0.612,0.267,0,0,0,0.431,0.711,0.711,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.37 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.224 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.134 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.139 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.187 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.24 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.381 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.139 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.16 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.689 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.422 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.203 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0463 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896 +1,0.245,0.245,0.483,0,0,0,0.403,0.521,0.521,0,0,0.0726 +1,0.305,0.305,0.05,0,0,0,0.432,0.57,0.57,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0.05,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.324 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.231 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.185 +1,0.747,0.747,0,0,0.298,0,0.785,0.696,0.696,0,0,0.45 +1,0.566,0.566,0,0,0,0.683,0.763,0.667,0.667,0,0.593,0.185 +1,0.0495,0.0495,0,0,0,0.0833,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.203 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.176 +0.333,0.147,0.147,0.267,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.145,0,0.185 +0,0.0495,0.0495,0,0.542,0,0,0.258,0.465,0.465,0.729,0,0 +0.333,0.171,0.171,0,0.104,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.278 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.231 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.401 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.308 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.213,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0.383,0.2,0.305,0.473,0.473,0,0.269,0.0949 +0.667,0.245,0.245,0,0,0,0.833,0.403,0.521,0.521,0,0.129,0.166 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0531 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.416 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.362 +1,0.804,0.804,0,0,0.894,0,0.586,0.77,0.77,0,0.316,0.0926 +0.667,0.647,0.647,0,0,0,0.717,0.55,0.679,0.679,0,0.893,0.278 +1,0.919,0.919,0,0,0,0.317,0.741,0.741,0.741,0,0.647,0.139 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.414,0.463 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.305 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.116 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.345,0,0 +0.333,0.185,0.185,0,0.646,0,0,0.257,0.523,0.523,0.399,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.278 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0.533,0,0,0,0.322,0.609,0.609,0,0,0.0926 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0463 +1,0.553,0.553,0.233,0,0,0,0.477,0.669,0.669,0,0,0.154 +1,0.946,0.946,0.0333,0.229,0.851,0,0.697,0.785,0.785,0.436,0,0.28 +1,0.919,0.919,0,0.417,0.0426,0.467,0.741,0.741,0.741,0,0.251,0.194 +1,0.515,0.515,0,0,0,0.567,0.609,0.619,0.619,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0.367,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.171,0.171,0.167,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.185 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.0463 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.139 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.417 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0463 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.384 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.278 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.44 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.253 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0.0638,0,0.275,0.532,0.532,0,0,0.0926 +0.667,0.297,0.297,0,0,0.83,0,0.314,0.59,0.59,0,0.141,0.0463 +0.667,0.338,0.338,0.533,0,0,0.25,0.322,0.609,0.609,0,0.466,0.0463 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.527,0.324 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.141,0.37 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.19 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.242 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.149 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.505 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0349 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0978 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0931 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.617 +0.333,0.184,0.184,0.733,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0.35,0,0,0,0.257,0.523,0.523,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0.533,0,0.213,0,0.373,0.629,0.629,0,0,0 +1,0.804,0.804,0,0,0.383,0.2,0.586,0.77,0.77,0,0.239,0.0926 +1,0.946,0.946,0,0,0,0.567,0.697,0.785,0.785,0,0,0.278 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.591,0,0.185 +1,0.747,0.747,0,0.646,0,0,0.785,0.696,0.696,0,0,0.293 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.539 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.369 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.212 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0815 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.406 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.39 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.259,0,0.101 +0.333,0.169,0.169,0,0.646,0,0,0.275,0.532,0.532,0.706,0,0.173 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.154 +0.333,0.194,0.194,0.85,0,0,0,0.29,0.537,0.537,0,0,0.285 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.0463 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0926 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.185 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.185 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0463 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.099 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +1,0.245,0.245,0.267,0,0,0,0.403,0.521,0.521,0,0,0.149 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.173 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.567 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.211 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.164 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.392 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.533,0,0,0,0.29,0.537,0.537,0,0,0.0926 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0463 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0926 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.231 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.242 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0852 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.284 +0.667,0.321,0.321,0,0,0.213,0,0.255,0.58,0.58,0,0,0.186 +0.667,0.312,0.312,0,0,0.681,0,0.263,0.58,0.58,0,0.329,0.228 +0.667,0.3,0.3,0,0,0,0.967,0.27,0.59,0.59,0,0.368,0 +0.667,0.292,0.292,0,0,0,0.317,0.263,0.6,0.6,0,0.53,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.57,0.278 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.539,0.0463 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0.479,0.0463 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.488,0.139 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.636,0.387 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.696,0.421 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.76,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.504,0.0926 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0.748,0.0926 +0.333,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.573,0.139 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.504,0.0463 +0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.27,0.391 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.693 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.172 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.395 +1,0.245,0.245,0.817,0,0,0,0.403,0.521,0.521,0,0,0.423 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.493 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.378 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.112 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0.353,0,0.324 +0.333,0.175,0.175,0,0.312,0,0,0.264,0.528,0.528,0.724,0,0.324 +0.333,0.171,0.171,0.233,0,0,0,0.26,0.532,0.532,0.37,0,0.0463 +0.333,0.169,0.169,0.0333,0,0,0,0.275,0.532,0.532,0,0,0.0926 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0463 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.804,0.804,0,0,0.894,0,0.586,0.77,0.77,0,0.102,0.21 +0.667,0.647,0.647,0,0,0,0.517,0.55,0.679,0.679,0,0.366,0.237 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.847,0.607 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.509,0.325 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0.675,0.203 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.277,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.877,0.185 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.577,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0183 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.169 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.108 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.382 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0926 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.185 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.0926 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.185 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.185 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.422,0,0.324 +0.667,0.515,0.515,0,0.646,0,0,0.609,0.619,0.619,0.86,0,0.0943 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.646,0,0.118 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0.553,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0.321,0.171,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0.679,0,0.185 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0.521,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0.366,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.185 +1,0.147,0.147,0,0,0.532,0.0833,0.33,0.493,0.493,0,0.402,0 +1,0.177,0.177,0,0,0,0.95,0.345,0.518,0.518,0,0.184,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.377,0 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.3 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.273 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.225 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0.442,0,0.768 +0.333,0.169,0.169,0,0.979,0,0,0.275,0.532,0.532,0.305,0,0.0751 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.188 +1,0.482,0.482,0.267,0,0,0,0.354,0.681,0.681,0,0,0.186 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.251 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.0463 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.582 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.521 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.139 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.231 +1,0.493,0.493,0,0.0833,0,0,0.652,0.593,0.593,0.546,0,0 +1,0.183,0.183,0,0.229,0,0,0.455,0.511,0.511,0.582,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0974 +1,0.0525,0.0525,0,0,0,0,0.329,0.471,0.471,0,0,0.332 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.113 +0.667,0.245,0.245,0,0,0.532,0,0.403,0.521,0.521,0,0,0.207 +0.667,0.305,0.305,0,0,0.0638,0.45,0.432,0.57,0.57,0,0.0979,0 +0.333,0.184,0.184,0,0,0,0.317,0.297,0.523,0.523,0,0,0.0463 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.169,0.169,0,0,0.596,0,0.275,0.532,0.532,0,0.0979,0 +0.333,0.173,0.173,0,0,0,0.95,0.286,0.528,0.528,0,0.476,0 +0.333,0.194,0.194,0,0,0.213,0.0833,0.29,0.537,0.537,0,0.5,0 +0.333,0.237,0.237,0,0,0.681,0,0.316,0.547,0.547,0,0.0861,0.0463 +1,0.804,0.804,0,0,0,0.767,0.586,0.77,0.77,0,0.227,0.315 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.324 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.139 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.159 +1,0.566,0.566,0.267,0,0,0,0.763,0.667,0.667,0,0,0.414 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.102 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.103 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0.311,0,0.63 +0.667,0.305,0.305,0.983,0.312,0,0,0.432,0.57,0.57,0.795,0,0 +0.667,0.318,0.318,0.1,0,0,0,0.337,0.58,0.58,0.682,0,0.0926 +0.333,0.185,0.185,0.733,0,0,0,0.257,0.523,0.523,0.197,0,0.139 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.0926 +0.333,0.175,0.175,0.183,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.483,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.667,0.425,0.425,0.333,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.183,0,0 +1,0.946,0.946,0,0.312,0,0,0.697,0.785,0.785,0.727,0,0.324 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0926 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.189,0,0.432 +1,0.345,0.345,0,0.312,0,0,0.521,0.55,0.55,0.68,0,0.357 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.106 +1,0.051,0.051,0.3,0,0,0,0.293,0.468,0.468,0,0,0.0354 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.181 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.175 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.341 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.504 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.312 +0.333,0.181,0.181,0.267,0,0,0,0.26,0.523,0.523,0,0,0.0809 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0926 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.139 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.139 +0.667,0.425,0.425,0.483,0,0,0,0.373,0.629,0.629,0,0,0.139 +0.667,0.553,0.553,0.333,0,0,0,0.477,0.669,0.669,0,0,0.0926 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.185 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.387 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.157 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.261 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.19 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.366 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0.346,0,0.385 +0.667,0.177,0.177,0,0.312,0,0,0.345,0.518,0.518,0.359,0,0.159 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.401 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.187 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.387 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.418 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.172 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0.483,0,0,0,0.29,0.537,0.537,0,0,0.139 +0.667,0.425,0.425,0.05,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.278 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.147,0,0.147 +1,0.919,0.919,0,0.312,0,0,0.741,0.741,0.741,0.443,0,0.339 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0463 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0817 +1,0.0495,0.0495,0.267,0,0,0,0.305,0.463,0.463,0,0,0.0926 +1,0.0525,0.0525,0,0,0,0,0.329,0.471,0.471,0,0,0 +1,0.146,0.146,0,0,0,0,0.398,0.489,0.489,0.366,0,0 +0.667,0.245,0.245,0,0.646,0,0,0.403,0.521,0.521,0.18,0,0 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.426 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.231 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.23 +0.667,0.425,0.425,0.483,0,0,0,0.373,0.629,0.629,0,0,0.426 +0.667,0.553,0.553,0.05,0,0,0,0.477,0.669,0.669,0,0,0.553 +0.667,0.647,0.647,0.233,0,0,0,0.55,0.679,0.679,0,0,0.0463 +0.333,0.339,0.339,0.3,0,0,0,0.419,0.557,0.557,0,0,0.0463 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.154 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.143 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.176 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,0.267,0,0,0,0.373,0.629,0.629,0,0,0.346 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.0978 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.139 +0.667,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.278 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.278 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0463 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.231 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0926 +0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0874 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.409,0,0.518 +0.667,0.3,0.3,0,0.646,0,0,0.27,0.59,0.59,0.522,0,0.0808 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.526,0,0.338 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.197 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.135 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.278 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.417 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.139 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.147,0,0.0463 +1,0.747,0.747,0,0.312,0,0,0.785,0.696,0.696,0.553,0,0.139 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.583,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0.598,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0.303,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0.585,0,0.0463 +1,0.066,0.066,0,0,0,0,0.359,0.481,0.481,0.637,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0.704,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.164 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0.619,0,0 +0.667,0.318,0.318,0,0.312,0,0,0.337,0.58,0.58,0.381,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.185 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.185 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0463 +0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0926 +0.333,0.301,0.301,0.533,0,0,0,0.367,0.567,0.567,0,0,0.141 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0463 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0926 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.117,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.222 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0406 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.37 +0.333,0.173,0.173,0,0,0.532,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0.362,0.217,0.29,0.537,0.537,0,0.393,0.324 +0.667,0.425,0.425,0,0,0,0.817,0.373,0.629,0.629,0,0.577,0.139 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.844,0.0463 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.668,0.231 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.368,0.0463 +1,0.747,0.747,0,0,0.596,0,0.785,0.696,0.696,0,0,0.401 +1,0.566,0.566,0,0,0,0.517,0.763,0.667,0.667,0,0.522,0.338 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.708,0.194 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0751 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.118 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.477 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.127 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.494 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.374 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.278 +0.667,0.553,0.553,0.267,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.185 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0926 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0.404,0,0.139 +1,0.197,0.197,0,0.646,0,0,0.389,0.508,0.508,0.332,0,0.108 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.0714 +0.667,0.147,0.147,0.533,0,0,0,0.33,0.493,0.493,0,0,0.0987 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.129 +0.667,0.318,0.318,0,0,0.532,0,0.337,0.58,0.58,0,0,0.545 +0.667,0.321,0.321,0,0,0.362,0.217,0.255,0.58,0.58,0,0.561,0.254 +0.667,0.312,0.312,0,0,0,0.55,0.263,0.58,0.58,0,0.364,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.466,0.0463 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.289,0.0463 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.185 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.185 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0.391,0,0.0463 +0.667,0.553,0.553,0,0.312,0,0,0.477,0.669,0.669,0.273,0,0.231 +0.333,0.348,0.348,0.267,0,0,0,0.404,0.572,0.572,0,0,0.405 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.465 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.242 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.083 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0.267,0,0,0,0.297,0.523,0.523,0,0,0.0463 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0.251,0,0 +0.667,0.425,0.425,0,0.312,0,0,0.373,0.629,0.629,0.596,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.185 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.231 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.332 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.201 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.204 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.314,0.314,0.367,0,0,0,0.375,0.705,0.705,0,0,0.0463 +1,0.513,0.513,0.183,0,0,0,0.447,0.862,0.862,0,0,0.139 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.128 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.662 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.444 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.417 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.185 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0926 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.203 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.105 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.55,0,0,0,0.372,0.541,0.541,0,0,0.115 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0.154,0,0 +1,0.337,0.337,0,0.333,0,0,0.3,0.692,0.692,0.557,0,0.106 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0.619,0,0.278 +1,0.316,0.316,0,0,0.383,0,0.319,0.705,0.705,0.425,0,0.516 +1,0.307,0.307,0,0,0.234,0.317,0.31,0.717,0.717,0,0.312,0.202 +0.667,0.305,0.305,0,0,0,0.5,0.347,0.717,0.717,0,0.613,0.139 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.703,0.139 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.124,0.693,0 +0.667,0.457,0.457,0,0.333,0,0,0.449,0.755,0.755,0.402,0.402,0.324 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.408,0.231 +0.333,0.366,0.366,0.117,0,0,0,0.465,0.641,0.641,0,0.457,0.37 +0.333,0.344,0.344,0.433,0,0,0,0.484,0.622,0.622,0,0,0.0926 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0926 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0926 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0.404,0,0.174 +1,0.183,0.183,0,0.667,0,0,0.552,0.605,0.605,0.706,0,0.112 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0.522,0,0.185 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0.142 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.089 +0.667,0.251,0.251,0.467,0,0,0,0.487,0.617,0.617,0,0,0.381 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.23 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0927 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0849 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.128 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.146 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.0926 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.247 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.226 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.143 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.323 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.186 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.608 +0.333,0.178,0.178,0.55,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.255 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0.25,0,0.269 +1,0.869,0.869,0.117,0.667,0,0,0.741,0.974,0.974,0.619,0,0.342 +1,1,1,0.717,0.667,0,0,0.881,0.993,0.993,0.492,0,0.503 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.205,0,0.228 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0679 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0.267,0,0,0,0.391,0.572,0.572,0,0,0.243 +0.667,0.33,0.33,0,0.0833,0,0,0.403,0.692,0.692,0.6,0,0.214 +0.667,0.337,0.337,0,0.25,0,0,0.3,0.692,0.692,0.56,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0.779,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0.269,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.185 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.667,0.596,0.596,0.267,0,0,0,0.58,0.805,0.805,0,0,0.116 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0463 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.102,0,0.417 +1,0.554,0.554,0.117,0.333,0.617,0,0.965,0.843,0.843,0.294,0.196,0.3 +1,0.488,0.488,0.433,0,0,0.817,0.825,0.749,0.749,0,0,0.0463 +1,0.183,0.183,0,0,0,0.283,0.552,0.605,0.605,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.181 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.497 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.139 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.403 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0993 +1,1,1,0.55,0,0,0,0.881,0.993,0.993,0,0,0.258 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.307 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0463 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.24 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0846 +1,0.251,0.251,0.467,0,0,0,0.487,0.617,0.617,0,0,0.128 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.284 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.196 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.394 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.33 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.201 +0.333,0.177,0.177,0.267,0,0,0,0.302,0.591,0.591,0,0,0.1 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.387 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.287 +0.667,0.253,0.253,0.117,0.0833,0,0,0.354,0.61,0.61,0.618,0,0.144 +1,0.596,0.596,0.15,0.583,0,0,0.58,0.805,0.805,0.767,0,0.253 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.732,0,0.463 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.185,0,0.277 +1,0.732,0.732,0,0,0.383,0,0.993,0.88,0.88,0,0,0.0463 +1,0.554,0.554,0,0,0.234,0.317,0.965,0.843,0.843,0,0.0475,0 +1,0.342,0.342,0,0,0,0.5,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.115 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.139 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.356 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.375 +1,0.661,0.661,0.117,0.0833,0,0,0.545,0.899,0.899,0.6,0,0.0926 +1,0.596,0.596,0.15,0.25,0,0,0.58,0.805,0.805,0.47,0,0.0463 +1,1,1,0,0.333,0,0,0.881,0.993,0.993,0.655,0,0.231 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.185 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0926 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.501 +1,0.342,0.342,0.267,0,0,0,0.636,0.655,0.655,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.33,0.33,0.467,0,0,0,0.403,0.692,0.692,0,0,0.104 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0.617,0,0.31,0.717,0.717,0,0.184,0 +0.667,0.305,0.305,0,0,0,0.817,0.347,0.717,0.717,0,0.76,0.324 +0.667,0.314,0.314,0.55,0,0,0,0.375,0.705,0.705,0,0.415,0.0463 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.2,0.139 +0.333,0.253,0.253,0.117,0,0,0,0.354,0.61,0.61,0,0,0.185 +0.667,0.596,0.596,0.417,0,0,0,0.58,0.805,0.805,0,0,0.278 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.185 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0926 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.501 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.151 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.169 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.634 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.345 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.267,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.258 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.278 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.185 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.139 +0.667,0.457,0.457,0.55,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0.285,0,0.0926 +0.667,0.683,0.683,0,0.333,0,0,0.673,0.817,0.817,0.546,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.777,0,0.278 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.231 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.476 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.147,0,0.104 +1,0.251,0.251,0,0.396,0,0,0.487,0.617,0.617,0.765,0,0.505 +0.667,0.181,0.181,0,0.271,0,0,0.391,0.572,0.572,0.637,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0.275,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0926 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.231 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.139 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.231 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0926 +0.333,0.323,0.323,0,0.0833,0,0,0.419,0.635,0.635,0.689,0,0.324 +1,1,1,0,0.583,0,0,0.881,0.993,0.993,0.698,0,0.139 +1,0.933,0.933,0.117,0,0,0,0.937,0.937,0.937,0.472,0,0.324 +1,0.732,0.732,0.15,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.196 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.32 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.514 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.457 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.193 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.87 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.518 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.374 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0.117,0,0,0,0.449,0.755,0.755,0,0,0.231 +0.667,0.596,0.596,0.15,0,0,0,0.58,0.805,0.805,0,0,0.207 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0463 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.231 +1,0.732,0.732,0,0,0.936,0,0.993,0.88,0.88,0,0.107,0 +1,0.554,0.554,0,0,0,0.567,0.965,0.843,0.843,0,0.318,0.0926 +1,0.196,0.196,0,0,0,0.25,0.447,0.56,0.56,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.506 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.141 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.538 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.196 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0852 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.187 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.324 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0926 +0.667,0.638,0.638,0.267,0,0,0,0.711,0.78,0.78,0.397,0,0.231 +1,0.732,0.732,0,0.333,0,0,0.993,0.88,0.88,0.718,0,0.398 +1,0.554,0.554,0,0.708,0,0,0.965,0.843,0.843,0.343,0,0.53 +1,0.0495,0.0495,0,0.312,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.494 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.401 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0805 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.139 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.178,0.178,0.367,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.177,0.177,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.0333,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.667,0.359,0.359,0.867,0,0,0,0.384,0.73,0.73,0.433,0,0.0463 +0.667,0.457,0.457,0.25,0.667,0,0,0.449,0.755,0.755,0.639,0,0.231 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0.682,0,0.417 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.492,0,0.509 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.779,0,0.494 +1,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.207 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.185 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.129 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.345 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.2 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0463 +0.667,0.314,0.314,0,0.0833,0,0,0.375,0.705,0.705,0.417,0,0.185 +0.667,0.359,0.359,0,0.25,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.185 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.316,0,0.231 +1,0.933,0.933,0,0.333,0,0,0.937,0.937,0.937,0.0898,0,0.185 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.324 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0463 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0984 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.494 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.116 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0.867,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0.533,0,0,0,0.881,0.993,0.993,0,0,0.0926 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.479 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.296 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.337 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0.267,0,0,0,0.34,0.516,0.516,0,0,0.546 +0.667,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.187 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.321 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.272 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.336 +0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.183,0.183,0.467,0,0,0,0.288,0.585,0.585,0,0,0 +1,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.278 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0.418,0,0.231 +1,1,1,0,0.667,0,0,0.881,0.993,0.993,0.575,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.643,0,0.324 +1,0.732,0.732,0.367,0,0,0,0.993,0.88,0.88,0.809,0,0.185 +1,0.386,0.386,0.183,0,0,0,0.729,0.717,0.717,0,0,0.227 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.111 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.421 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.128 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0,0.702,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0.234,0.317,0.279,0.579,0.579,0,0.522,0.278 +0.667,0.189,0.189,0,0,0,0.5,0.284,0.579,0.579,0,0.62,0.185 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0.444,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0.656,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.552,0.139 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.282,0.194 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.218,0.232 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.381,0.463 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.595,0.0926 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.448,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0.647,0.417 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0.473,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.264,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.143 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.147 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.116 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.183,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.237 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.247 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.0938 +1,0.47,0.47,0,0,0.702,0,0.475,0.806,0.806,0,0,0.484 +0.667,0.337,0.337,0,0,0.234,0.317,0.3,0.692,0.692,0,0.681,0.385 +0.667,0.328,0.328,0,0,0,0.5,0.31,0.692,0.692,0,0.496,0.0648 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.398,0.0463 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.314,0.314,0,0.0833,0,0,0.375,0.705,0.705,0.636,0,0.0463 +0.667,0.359,0.359,0,0.25,0,0,0.384,0.73,0.73,0.244,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.544 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.139 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.4 +0.667,0.344,0.344,0.867,0,0,0,0.484,0.622,0.622,0,0,0.139 +1,0.277,0.277,0.25,0,0,0,0.503,0.604,0.604,0,0,0.0926 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0,0.0833,0,0,0.487,0.617,0.617,0.496,0,0.306 +0.667,0.181,0.181,0,0.938,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0.366,0,0.139 +0.667,0.457,0.457,0,0.667,0,0,0.449,0.755,0.755,0.576,0,0.278 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0.239,0,0.0463 +0.667,0.683,0.683,0,0.667,0,0,0.673,0.817,0.817,0.329,0,0.0463 +0.667,0.638,0.638,0,0,0.298,0.0667,0.711,0.78,0.78,0,0.089,0.0463 +1,0.732,0.732,0,0,0,0.75,0.993,0.88,0.88,0,0.561,0.0463 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0.479,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.172 +1,0.251,0.251,0.367,0,0,0,0.487,0.617,0.617,0,0,0.27 +0.667,0.181,0.181,0.183,0,0,0,0.391,0.572,0.572,0,0,0.169 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0.298,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0.567,0.284,0.579,0.579,0,0.488,0.0463 +0.333,0.183,0.183,0,0,0,0.533,0.288,0.585,0.585,0,0.145,0.324 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.314,0.314,0,0,0.617,0,0.375,0.705,0.705,0,0,0.0926 +0.667,0.359,0.359,0,0,0,0.567,0.384,0.73,0.73,0,0.659,0 +0.667,0.457,0.457,0.267,0,0,0.817,0.449,0.755,0.755,0,0.329,0.139 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.642,0.0463 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0.0861,0.763 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0751 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.442,0,0.541 +1,0.342,0.342,0,0.333,0,0,0.636,0.655,0.655,0.144,0,0.278 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.139 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0926 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.185 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.231 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0926 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.413 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.111,0,0.185 +0.667,0.504,0.504,0,0.396,0,0,0.748,0.742,0.742,0.451,0,0.231 +0.667,0.386,0.386,0,0.271,0,0,0.729,0.717,0.717,0,0,0.449 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.219 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.137 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.332 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.584 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0463 +0.667,0.457,0.457,0.867,0,0,0,0.449,0.755,0.755,0,0,0.0926 +1,0.869,0.869,0.25,0,0,0,0.741,0.974,0.974,0,0,0.231 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.231 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0463 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.378 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.138 +1,0.351,0.351,0.267,0,0,0,0.601,0.693,0.693,0,0,0.956 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.338 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.393 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.153 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.395 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.169 +0.667,0.366,0.366,0.367,0,0,0,0.465,0.641,0.641,0,0,0.0748 +1,0.638,0.638,0.467,0,0,0,0.711,0.78,0.78,0,0,0.402 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0463 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.37 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.267,0,0,0,0.326,0.51,0.51,0,0,0.322 +1,0.15,0.15,0,0,0,0,0.503,0.618,0.618,0.133,0,0 +1,0.351,0.351,0,0.333,0,0,0.601,0.693,0.693,0.494,0,0.129 +0.667,0.313,0.313,0,0,0.298,0.0667,0.524,0.68,0.68,0.402,0.107,0 +0.333,0.19,0.19,0,0,0,0.75,0.33,0.579,0.579,0,0.559,0.0926 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.278 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0.255,0,0.0463 +1,0.661,0.661,0,0.333,0,0,0.545,0.899,0.899,0.167,0,0 +1,0.869,0.869,0.267,0,0,0,0.741,0.974,0.974,0,0,0.0926 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.139 +1,0.933,0.933,0.55,0,0,0,0.937,0.937,0.937,0,0,0.185 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.128 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.139 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0824 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.361 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0463 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.139 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.0926 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.157 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.366,0.366,0.867,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.638,0.638,0.25,0,0,0,0.711,0.78,0.78,0,0,0.37 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.139 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.288 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.25 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.34 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.351,0.351,0.433,0,0,0,0.601,0.693,0.693,0,0,0.317 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.109 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.134 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.324 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.324 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.341 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.463 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.173 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.103 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.345 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.602 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0.185,0,0.0926 +0.333,0.182,0.182,0,0.396,0,0,0.316,0.585,0.585,0.408,0,0.0463 +0.333,0.204,0.204,0,0.271,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0.367,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.333,0.323,0.323,0.183,0,0,0,0.419,0.635,0.635,0,0,0.0463 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.231 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0926 +0.667,0.504,0.504,0,0.0833,0,0,0.748,0.742,0.742,0.601,0,0.185 +1,0.218,0.218,0,0.583,0,0,0.493,0.591,0.591,0,0,0.18 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.808 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.179 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.108 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.867,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.307,0.307,0.533,0,0,0,0.31,0.717,0.717,0,0,0 +1,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0924 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.312,0,0.231 +0.667,0.457,0.457,0,0.667,0,0,0.449,0.755,0.755,0.7,0,0.231 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.278 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0926 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0463 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.463 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.231 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.157 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0.454,0,0.0802 +0.667,0.19,0.19,0.267,0.667,0,0,0.33,0.579,0.579,0.212,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.417 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.159 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0463 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0926 +1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.457,0.457,0.367,0,0,0,0.449,0.755,0.755,0,0,0.0926 +1,0.869,0.869,0.467,0,0.936,0,0.741,0.974,0.974,0,0.142,0.324 +1,1,1,0,0,0,0.567,0.881,0.993,0.993,0,0.663,0.0926 +0.667,0.638,0.638,0,0,0,0.533,0.711,0.78,0.78,0,0.43,0.139 +0.667,0.504,0.504,0,0.0833,0,0,0.748,0.742,0.742,0.363,0.433,0 +0.667,0.386,0.386,0,0.583,0,0,0.729,0.717,0.717,0,0.0608,0.37 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0949 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.253 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.193,0.193,0.75,0,0,0,0.279,0.579,0.579,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.139 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.139 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0926 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.278 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.28,0,0.231 +1,0.933,0.933,0,0.667,0,0,0.937,0.937,0.937,0.415,0,0.251 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.375 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.439 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.142 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 diff --git a/tasks.rb b/tasks.rb index 29a5475b19..2d8f7a0b47 100644 --- a/tasks.rb +++ b/tasks.rb @@ -49,32 +49,42 @@ def create_hpxmls measures = {} measures['BuildResidentialHPXML'] = [json_input] - # Re-generate stochastic schedule CSV? - csv_path = json_input['schedules_filepaths'].to_s.split(',').map(&:strip).find { |fp| fp.include? 'occupancy-stochastic' } - if (not csv_path.nil?) && ((not schedules_regenerated.include? csv_path) || hpxml_filename.include?('two-buildings')) - sch_args = { 'hpxml_path' => hpxml_path, - 'output_csv_path' => csv_path, - 'hpxml_output_path' => hpxml_path, - 'building_id' => 'ALL' } - measures['BuildResidentialScheduleFile'] = [sch_args] - schedules_regenerated << csv_path - end - measures_dir = File.dirname(__FILE__) model = OpenStudio::Model::Model.new runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - # Apply measure - success = apply_measures(measures_dir, measures, runner, model) + num_apply_measures = hpxml_path.include?('base-multiple-buildings') ? 3 : 1 - # Report errors - runner.result.stepErrors.each do |s| - puts "Error: #{s}" - end + for i in 1..num_apply_measures + measures['BuildResidentialHPXML'][0]['hpxml_path_in'] = hpxml_path if i > 1 + if hpxml_path.include? 'base-multiple-buildings-varied-occupancy' + suffix = "_#{i}" if i > 1 + measures['BuildResidentialHPXML'][0]['schedules_filepaths'] = "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic#{suffix}.csv" + end - if not success - puts "\nError: Did not successfully generate #{hpxml_filename}." - exit! + # Re-generate stochastic schedule CSV? + csv_path = json_input['schedules_filepaths'].to_s.split(',').map(&:strip).find { |fp| fp.include? 'occupancy-stochastic' } + if (not csv_path.nil?) && (not schedules_regenerated.include? csv_path) + sch_args = { 'hpxml_path' => hpxml_path, + 'output_csv_path' => csv_path, + 'hpxml_output_path' => hpxml_path, + 'building_id' => "MyBuilding#{suffix}" } + measures['BuildResidentialScheduleFile'] = [sch_args] + schedules_regenerated << csv_path + end + + # Apply measure + success = apply_measures(measures_dir, measures, runner, model) + + # Report errors + runner.result.stepErrors.each do |s| + puts "Error: #{s}" + end + + if not success + puts "\nError: Did not successfully generate #{hpxml_filename}." + exit! + end end hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') @@ -102,7 +112,7 @@ def create_hpxmls Dir["#{workflow_dir}/#{dir}/*.xml"].each do |hpxml| next if abs_hpxml_files.include? File.absolute_path(hpxml) - # puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}" + puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}" end end end @@ -233,15 +243,6 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.header.manualj_num_occupants = 5 end - if ['base-multiple-buildings.xml'].include? hpxml_file - hpxml.buildings[0].clothes_dryers[0].delete - end - - # Need to assign schedules_filepaths in BuildResidentialHPXML to trigger running BuildResidentialScheduleFile - if ['base-schedules-detailed-occupancy-stochastic-two-buildings.xml'].include? hpxml_file - hpxml.buildings[-1].header.schedules_filepaths.delete_at(0) - end - hpxml.buildings.each do |hpxml_bldg| # Logic that can only be applied based on the file name if ['base-misc-emissions.xml'].include? hpxml_file diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index e4a5908463..1ced03e913 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3195,15 +3195,13 @@ "hot_tub_heater_annual_kwh": 1300, "hot_tub_heater_usage_multiplier": 0.9 }, - "sample_files/base-two-buildings.xml": { + "sample_files/base-multiple-buildings.xml": { "parent_hpxml": "sample_files/base.xml", - "hpxml_path_in": "workflow/sample_files/base.xml", "clothes_dryer_present": false, "utility_bill_scenario_names": null }, - "sample_files/base-multiple-buildings.xml": { + "sample_files/base-multiple-buildings-varied-occupancy.xml": { "parent_hpxml": "sample_files/base.xml", - "hpxml_path_in": "workflow/sample_files/base-two-buildings.xml", "clothes_dryer_present": false, "utility_bill_scenario_names": null }, @@ -3394,11 +3392,6 @@ "parent_hpxml": "sample_files/base.xml", "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" }, - "sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml": { - "parent_hpxml": "sample_files/base.xml", - "hpxml_path_in": "workflow/sample_files/base.xml", - "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" - }, "sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml": { "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml", "schedules_vacancy_period": "Dec 1 - Jan 31" diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml b/workflow/sample_files/base-multiple-buildings-varied-occupancy.xml similarity index 67% rename from workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml rename to workflow/sample_files/base-multiple-buildings-varied-occupancy.xml index f7fff54feb..c6c81085c9 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-two-buildings.xml +++ b/workflow/sample_files/base-multiple-buildings-varied-occupancy.xml @@ -11,14 +11,6 @@ 60 - - - Bills - - - Bills - - @@ -447,14 +439,6 @@ 6.0 3.2 - - - living space - electricity - 3.73 - true - 150.0 - living space @@ -982,14 +966,6 @@ 6.0 3.2 - - - living space - electricity - 3.73 - true - 150.0 - living space @@ -1091,4 +1067,531 @@ + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-multiple-buildings.xml b/workflow/sample_files/base-multiple-buildings.xml index 249605abaa..962c20680e 100644 --- a/workflow/sample_files/base-multiple-buildings.xml +++ b/workflow/sample_files/base-multiple-buildings.xml @@ -11,11 +11,6 @@ 60 - - - Bills - - diff --git a/workflow/sample_files/base-two-buildings.xml b/workflow/sample_files/base-two-buildings.xml deleted file mode 100644 index 7ca8f786ca..0000000000 --- a/workflow/sample_files/base-two-buildings.xml +++ /dev/null @@ -1,1077 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index 1c029c350b..b87f430fe2 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -30,7 +30,6 @@ def test_simulations Dir["#{sample_files_dir}/*.xml"].sort.each do |xml| next if xml.end_with? '-10x.xml' next if xml.include? 'base-multiple-buildings.xml' # Tested by test_multiple_buildings() - next if xml.include? 'two-buildings' # FIXME: Need to address these files # Misc: next if xml.include? 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump' From 27c8a79b1b132f8b0b2f5eb1d104851c4498ab20 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 26 Sep 2023 10:12:46 -0600 Subject: [PATCH 22/33] Clarify test. --- BuildResidentialScheduleFile/measure.xml | 6 +++--- .../tests/build_residential_schedule_file_test.rb | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BuildResidentialScheduleFile/measure.xml b/BuildResidentialScheduleFile/measure.xml index 0fc237fbb8..ff35a5d8fe 100644 --- a/BuildResidentialScheduleFile/measure.xml +++ b/BuildResidentialScheduleFile/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_schedule_file f770b2db-1a9f-4e99-99a7-7f3161a594b1 - 4df0dccd-e630-451d-a8e0-64993295342f - 2023-09-26T16:03:10Z + d6a9eedd-3661-499a-8e45-0fe9716cd4cb + 2023-09-26T16:12:25Z 03F02484 BuildResidentialScheduleFile Schedule File Builder @@ -900,7 +900,7 @@ build_residential_schedule_file_test.rb rb test - 1FD91AEB + 13DDEF22
diff --git a/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb b/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb index 2f602e8565..1186a44ea3 100644 --- a/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +++ b/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb @@ -356,7 +356,7 @@ def test_multiple_buildings_id hpxml = _create_hpxml('base-multiple-buildings.xml') XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) + @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic_2.csv')) @args_hash['building_id'] = 'MyBuilding_2' hpxml, result = _test_measure() @@ -377,7 +377,7 @@ def test_multiple_buildings_id output_path: @tmp_schedule_file_path) assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) - assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic.csv') + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) From a28777224dbae132b506df05de33eb1bdc14beac Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 26 Sep 2023 10:18:57 -0600 Subject: [PATCH 23/33] Clarify new argument and add more description. --- BuildResidentialHPXML/measure.rb | 20 +++++++++---------- BuildResidentialHPXML/measure.xml | 14 ++++++------- .../tests/build_residential_hpxml_test.rb | 12 +++++------ tasks.rb | 2 +- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 8b272e1be7..a15bf1d392 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -42,9 +42,9 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription('Absolute/relative path of the HPXML file.') args << arg - arg = OpenStudio::Measure::OSArgument.makeStringArgument('hpxml_path_in', false) - arg.setDisplayName('HPXML File Path In') - arg.setDescription('Absolute/relative path of the existing HPXML file.') + arg = OpenStudio::Measure::OSArgument.makeStringArgument('existing_hpxml_path', false) + arg.setDisplayName('Existing HPXML File Path') + arg.setDescription('Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units).') args << arg arg = OpenStudio::Measure::OSArgument.makeStringArgument('software_info_program_used', false) @@ -3175,14 +3175,14 @@ def run(model, runner, user_arguments) end # Existing HPXML File - if args[:hpxml_path_in].is_initialized - hpxml_path_in = args[:hpxml_path_in].get - unless (Pathname.new hpxml_path_in).absolute? - hpxml_path_in = File.expand_path(hpxml_path_in) + if args[:existing_hpxml_path].is_initialized + existing_hpxml_path = args[:existing_hpxml_path].get + unless (Pathname.new existing_hpxml_path).absolute? + existing_hpxml_path = File.expand_path(existing_hpxml_path) end end - hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) + hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) if not hpxml_doc runner.registerError('Unsuccessful creation of HPXML file.') return false @@ -3379,7 +3379,7 @@ def argument_errors(args) end class HPXMLFile - def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) + def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) epw_file = OpenStudio::EpwFile.new(epw_path) if (args[:hvac_control_heating_season_period].to_s == HPXML::BuildingAmerica) || (args[:hvac_control_cooling_season_period].to_s == HPXML::BuildingAmerica) || (args[:apply_defaults]) weather = WeatherProcess.new(epw_path: epw_path, runner: nil) @@ -3394,7 +3394,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, hpxml_path_in) sorted_surfaces = model.getSurfaces.sort_by { |s| s.additionalProperties.getFeatureAsInteger('Index').get } sorted_subsurfaces = model.getSubSurfaces.sort_by { |ss| ss.additionalProperties.getFeatureAsInteger('Index').get } - hpxml = HPXML.new(hpxml_path: hpxml_path_in, building_id: 'ALL') + hpxml = HPXML.new(hpxml_path: existing_hpxml_path, building_id: 'ALL') set_header(hpxml, args) hpxml_bldg = add_building(hpxml, args) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index a536067d98..e910b81371 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - a2eae01b-4c40-495b-8b84-721e33d1e6ab - 2023-09-26T16:04:10Z + bb22ce05-f00e-4c1d-b431-3344f325a29d + 2023-09-26T16:18:32Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -20,9 +20,9 @@ false
- hpxml_path_in - HPXML File Path In - Absolute/relative path of the existing HPXML file. + existing_hpxml_path + Existing HPXML File Path + Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units). String false false @@ -6756,7 +6756,7 @@ measure.rb rb script - ED79C6D7 + 9050E6AE geometry.rb @@ -6768,7 +6768,7 @@ build_residential_hpxml_test.rb rb test - A7CDB8B5 + 3FF045EA extra_files/base-sfa.xml diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index 3869289530..8ea8545b39 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -629,7 +629,7 @@ def _set_measure_argument_values(hpxml_file, args) args['hot_tub_present'] = false args['hot_tub_heater_type'] = HPXML::HeaterTypeElectricResistance elsif ['base-sfd2.xml'].include? hpxml_file - args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') elsif ['base-sfa.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeSFA args['geometry_unit_cfa'] = 1800.0 @@ -645,9 +645,9 @@ def _set_measure_argument_values(hpxml_file, args) args['window_area_right'] = 0 args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-sfa2.xml'].include? hpxml_file - args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml') + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml') elsif ['base-sfa3.xml'].include? hpxml_file - args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml') + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml') elsif ['base-mf.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeApartment args['geometry_unit_cfa'] = 900.0 @@ -674,11 +674,11 @@ def _set_measure_argument_values(hpxml_file, args) args['door_area'] = 20.0 args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-mf2.xml'].include? hpxml_file - args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml') + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml') elsif ['base-mf3.xml'].include? hpxml_file - args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml') + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml') elsif ['base-mf4.xml'].include? hpxml_file - args['hpxml_path_in'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml') + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml') end # Extras diff --git a/tasks.rb b/tasks.rb index 2d8f7a0b47..08152ec467 100644 --- a/tasks.rb +++ b/tasks.rb @@ -56,7 +56,7 @@ def create_hpxmls num_apply_measures = hpxml_path.include?('base-multiple-buildings') ? 3 : 1 for i in 1..num_apply_measures - measures['BuildResidentialHPXML'][0]['hpxml_path_in'] = hpxml_path if i > 1 + measures['BuildResidentialHPXML'][0]['existing_hpxml_path'] = hpxml_path if i > 1 if hpxml_path.include? 'base-multiple-buildings-varied-occupancy' suffix = "_#{i}" if i > 1 measures['BuildResidentialHPXML'][0]['schedules_filepaths'] = "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic#{suffix}.csv" From 2d79faf67d4d66b9b219fc2cc00b94c8bbb211d2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 26 Sep 2023 11:47:49 -0700 Subject: [PATCH 24/33] First cut at errors for conflicting header or building inputs. --- BuildResidentialHPXML/measure.rb | 35 + BuildResidentialHPXML/measure.xml | 1884 ++++++++++++++++- .../tests/build_residential_hpxml_test.rb | 24 +- 3 files changed, 1936 insertions(+), 7 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index a15bf1d392..c80a215dab 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3396,6 +3396,10 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) hpxml = HPXML.new(hpxml_path: existing_hpxml_path, building_id: 'ALL') + if not validate_arguments_against_existing_hpxml(runner, hpxml, args) + return false + end + set_header(hpxml, args) hpxml_bldg = add_building(hpxml, args) set_site(hpxml_bldg, args) @@ -3478,6 +3482,37 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) return hpxml_doc end + def self.validate_arguments_against_existing_hpxml(runner, hpxml, args) + errors = [] + + if !hpxml.header.natvent_days_per_week.nil? && args[:window_natvent_availability].is_initialized && (hpxml.header.natvent_days_per_week != args[:window_natvent_availability].get) + errors << "hpxml.header.natvent_days_per_week=#{hpxml.header.natvent_days_per_week}; cannot set window_natvent_availability=#{args[:window_natvent_availability].get}." + end + + if !hpxml.header.utility_bill_scenarios.empty? && args[:utility_bill_scenario_names].is_initialized + utility_bill_scenario_names = hpxml.header.utility_bill_scenarios.collect { |bill_scenario| bill_scenario.name } + bills_scenario_names = args[:utility_bill_scenario_names].get.split(',').map(&:strip) + bills_scenario_names.each do |bills_scenario_name| + if utility_bill_scenario_names.include?(bills_scenario_name) + errors << "HPXML header already includes utility bill scenario '#{bills_scenario_name}'." + end + end + end + + hpxml.buildings.each do |hpxml_bldg| + if hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath != args[:weather_station_epw_filepath] + errors << "#{hpxml_bldg.building_id}: hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath=#{hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath}; cannot set weather_station_epw_filepath=#{args[:weather_station_epw_filepath]}." + end + end + + errors.each do |error| + runner.registerError(error) + end + return true if errors.empty? + + return false + end + def self.validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) # Check for errors in the HPXML object errors = [] diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index e910b81371..d9deda54f1 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - bb22ce05-f00e-4c1d-b431-3344f325a29d - 2023-09-26T16:18:32Z + 20207ef0-b9f5-4660-99ed-fb2883d3597d + 2023-09-26T18:47:04Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6756,7 +6756,7 @@ measure.rb rb script - 9050E6AE + DEFEF0F2 geometry.rb @@ -6768,19 +6768,1891 @@ build_residential_hpxml_test.rb rb test - 3FF045EA + B9085AFE + + + extra_files/base-mf.osm + osm + test + 8A67671D + + + extra_files/base-mf.xml + xml + test + D9D0C362 + + + extra_files/base-mf2.osm + osm + test + 13A11CB6 + + + extra_files/base-mf2.xml + xml + test + 259ABB0D + + + extra_files/base-mf3.osm + osm + test + A6EDBF7C + + + extra_files/base-mf3.xml + xml + test + 4D8977C5 + + + extra_files/base-mf4.osm + osm + test + 790B1EFB + + + extra_files/base-mf4.xml + xml + test + B03CE6CD + + + extra_files/base-sfa.osm + osm + test + 8A476DF0 extra_files/base-sfa.xml xml test - 5FF0A591 + 3D5B2006 + + + extra_files/base-sfa2.osm + osm + test + 5F60C790 + + + extra_files/base-sfa2.xml + xml + test + 2755E083 + + + extra_files/base-sfa3.osm + osm + test + 546682C5 + + + extra_files/base-sfa3.xml + xml + test + 8529104F + + + extra_files/base-sfd.osm + osm + test + 07D5F025 extra_files/base-sfd.xml xml test - AF7637CF + F6999140 + + + extra_files/base-sfd2.osm + osm + test + B48FA53E + + + extra_files/base-sfd2.xml + xml + test + BAD328BC + + + extra_files/error-ambient-with-garage.osm + osm + test + 850218F7 + + + extra_files/error-bills-args-not-all-same-size.osm + osm + test + 6E87BE55 + + + extra_files/error-conditioned-attic-with-one-floor-above-grade.osm + osm + test + 73F51753 + + + extra_files/error-cooling-system-and-heat-pump.osm + osm + test + 61FC826F + + + extra_files/error-dhw-indirect-without-boiler.osm + osm + test + 27765992 + + + extra_files/error-different-weather-station-epw.osm + osm + test + 169B4147 + + + extra_files/error-different-window-natvent-availability.osm + osm + test + 4D674396 + + + extra_files/error-emissions-args-not-all-same-size.osm + osm + test + 49E90104 + + + extra_files/error-emissions-args-not-all-specified.osm + osm + test + 52A18C9B + + + extra_files/error-emissions-natural-gas-args-not-all-specified.osm + osm + test + 82EA0A93 + + + extra_files/error-garage-too-deep.osm + osm + test + CE797B66 + + + extra_files/error-garage-too-wide.osm + osm + test + 34267B7A + + + extra_files/error-heating-system-and-heat-pump.osm + osm + test + 8511F65E + + + extra_files/error-hip-roof-and-protruding-garage.osm + osm + test + C118087D + + + extra_files/error-invalid-aspect-ratio.osm + osm + test + 63575D1B + + + extra_files/error-invalid-door-area.osm + osm + test + A36243F5 + + + extra_files/error-invalid-garage-protrusion.osm + osm + test + C2DC6B21 + + + extra_files/error-invalid-window-aspect-ratio.osm + osm + test + 725F90AE + + + extra_files/error-mf-all-adiabatic-walls.osm + osm + test + 232D9805 + + + extra_files/error-mf-bottom-crawlspace-zero-foundation-height.osm + osm + test + CCD576D7 + + + extra_files/error-mf-conditioned-attic.osm + osm + test + 9F938A97 + + + extra_files/error-mf-no-building-num-units.osm + osm + test + 113ED618 + + + extra_files/error-mf-two-stories.osm + osm + test + 62A1FFDA + + + extra_files/error-negative-foundation-height.osm + osm + test + FB359D6E + + + extra_files/error-protruding-garage-under-gable-roof.osm + osm + test + 358F46BE + + + extra_files/error-rim-joist-assembly-r-but-no-height.osm + osm + test + D8AC01AC + + + extra_files/error-rim-joist-height-but-no-assembly-r.osm + osm + test + 70456851 + + + extra_files/error-same-utility-bill-scenario-name.osm + osm + test + 24AD466B + + + extra_files/error-second-heating-system-but-no-primary-heating.osm + osm + test + D01C1269 + + + extra_files/error-second-heating-system-ducted-with-ducted-primary-heating.osm + osm + test + 0092DC33 + + + extra_files/error-sfa-above-apartment.osm + osm + test + 98D6F587 + + + extra_files/error-sfa-all-adiabatic-walls.osm + osm + test + A336C81F + + + extra_files/error-sfa-below-apartment.osm + osm + test + 88510855 + + + extra_files/error-sfa-no-building-num-units.osm + osm + test + E32541C6 + + + extra_files/error-sfa-no-non-adiabatic-walls.osm + osm + test + C6A780FB + + + extra_files/error-sfd-adiabatic-walls.osm + osm + test + 7CFA63C5 + + + extra_files/error-sfd-conditioned-basement-zero-foundation-height.osm + osm + test + 19360E20 + + + extra_files/error-sfd-with-shared-system.osm + osm + test + 27799D68 + + + extra_files/error-too-many-floors.osm + osm + test + 7DAF3E28 + + + extra_files/error-vented-attic-with-zero-floor-insulation.osm + osm + test + 7EE72FD2 + + + extra_files/error-vented-attic-with-zero-floor-insulation.xml + xml + test + E55385BC + + + extra_files/error-zero-number-of-bedrooms.osm + osm + test + 81816D49 + + + extra_files/extra-auto-duct-locations.osm + osm + test + 2809EE48 + + + extra_files/extra-auto-duct-locations.xml + xml + test + 2C479001 + + + extra_files/extra-auto.osm + osm + test + 85FEDE77 + + + extra_files/extra-auto.xml + xml + test + BB250DD5 + + + extra_files/extra-battery-attic.osm + osm + test + ACFF5DA7 + + + extra_files/extra-battery-attic.xml + xml + test + 05C4B25C + + + extra_files/extra-battery-crawlspace.osm + osm + test + BEEB0949 + + + extra_files/extra-battery-crawlspace.xml + xml + test + 39BF76BC + + + extra_files/extra-bills-fossil-fuel-rates.osm + osm + test + B7CF951F + + + extra_files/extra-bills-fossil-fuel-rates.xml + xml + test + 6B37F132 + + + extra_files/extra-dhw-solar-latitude.osm + osm + test + E6BE7A97 + + + extra_files/extra-dhw-solar-latitude.xml + xml + test + 8228F988 + + + extra_files/extra-ducts-attic.osm + osm + test + 59ACEB6C + + + extra_files/extra-ducts-attic.xml + xml + test + F6999140 + + + extra_files/extra-ducts-crawlspace.osm + osm + test + 4B756AE8 + + + extra_files/extra-ducts-crawlspace.xml + xml + test + 2B705FB1 + + + extra_files/extra-emissions-fossil-fuel-factors.osm + osm + test + 12139692 + + + extra_files/extra-emissions-fossil-fuel-factors.xml + xml + test + F7CBA81A + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.osm + osm + test + BA50CE82 + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml + xml + test + 165956AB + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.osm + osm + test + 4409F2AA + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml + xml + test + 7FA8E81F + + + extra_files/extra-enclosure-garage-atticroof-conditioned.osm + osm + test + EF3D471C + + + extra_files/extra-enclosure-garage-atticroof-conditioned.xml + xml + test + A6A5BC13 + + + extra_files/extra-enclosure-garage-partially-protruded.osm + osm + test + 8DFDAD5B + + + extra_files/extra-enclosure-garage-partially-protruded.xml + xml + test + 277C061B + + + extra_files/extra-enclosure-windows-shading.osm + osm + test + B5271F0D + + + extra_files/extra-enclosure-windows-shading.xml + xml + test + E9A2AFF5 + + + extra_files/extra-gas-hot-tub-heater-with-zero-kwh.osm + osm + test + 1E5417AA + + + extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml + xml + test + A7B6F187 + + + extra_files/extra-gas-pool-heater-with-zero-kwh.osm + osm + test + 2EF92A3F + + + extra_files/extra-gas-pool-heater-with-zero-kwh.xml + xml + test + 170D94FF + + + extra_files/extra-iecc-zone-different-than-epw.osm + osm + test + 2F8DFEF1 + + + extra_files/extra-iecc-zone-different-than-epw.xml + xml + test + 0F907273 + + + extra_files/extra-mf-ambient.osm + osm + test + 930C18EB + + + extra_files/extra-mf-ambient.xml + xml + test + AB2B3211 + + + extra_files/extra-mf-atticroof-flat.osm + osm + test + 2CDA73DE + + + extra_files/extra-mf-atticroof-flat.xml + xml + test + 73896F35 + + + extra_files/extra-mf-atticroof-vented.osm + osm + test + DF73EAE6 + + + extra_files/extra-mf-atticroof-vented.xml + xml + test + F60A0DF0 + + + extra_files/extra-mf-eaves.osm + osm + test + D5287B46 + + + extra_files/extra-mf-eaves.xml + xml + test + 2C16D65B + + + extra_files/extra-mf-exterior-corridor.osm + osm + test + A1761327 + + + extra_files/extra-mf-exterior-corridor.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-rear-units.osm + osm + test + 070E85FA + + + extra_files/extra-mf-rear-units.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-slab-left-bottom-rear-units.osm + osm + test + BA6BFD5B + + + extra_files/extra-mf-slab-left-bottom-rear-units.xml + xml + test + 7605C590 + + + extra_files/extra-mf-slab-left-bottom.osm + osm + test + BC7ECCD5 + + + extra_files/extra-mf-slab-left-bottom.xml + xml + test + 0405C24C + + + extra_files/extra-mf-slab-left-middle-rear-units.osm + osm + test + 0036A7F5 + + + extra_files/extra-mf-slab-left-middle-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-slab-left-middle.osm + osm + test + C3E1EC3F + + + extra_files/extra-mf-slab-left-middle.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-slab-left-top-rear-units.osm + osm + test + 5C172890 + + + extra_files/extra-mf-slab-left-top-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-slab-left-top.osm + osm + test + E22B5830 + + + extra_files/extra-mf-slab-left-top.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-slab-middle-bottom-rear-units.osm + osm + test + 9DD09175 + + + extra_files/extra-mf-slab-middle-bottom-rear-units.xml + xml + test + FACC6D3E + + + extra_files/extra-mf-slab-middle-bottom.osm + osm + test + E7C0AC96 + + + extra_files/extra-mf-slab-middle-bottom.xml + xml + test + 8B9952D5 + + + extra_files/extra-mf-slab-middle-middle-rear-units.osm + osm + test + 6E202D81 + + + extra_files/extra-mf-slab-middle-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-middle-middle.osm + osm + test + D9340320 + + + extra_files/extra-mf-slab-middle-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab-middle-top-rear-units.osm + osm + test + 5114044D + + + extra_files/extra-mf-slab-middle-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-middle-top.osm + osm + test + CBDEA4BE + + + extra_files/extra-mf-slab-middle-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab-rear-units.osm + osm + test + 270CE6D0 + + + extra_files/extra-mf-slab-rear-units.xml + xml + test + 7605C590 + + + extra_files/extra-mf-slab-right-bottom-rear-units.osm + osm + test + 8D41D6B3 + + + extra_files/extra-mf-slab-right-bottom-rear-units.xml + xml + test + FACC6D3E + + + extra_files/extra-mf-slab-right-bottom.osm + osm + test + 934C1B2B + + + extra_files/extra-mf-slab-right-bottom.xml + xml + test + 8B9952D5 + + + extra_files/extra-mf-slab-right-middle-rear-units.osm + osm + test + 5044CC39 + + + extra_files/extra-mf-slab-right-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-right-middle.osm + osm + test + 9E6AC950 + + + extra_files/extra-mf-slab-right-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab-right-top-rear-units.osm + osm + test + C3B46A24 + + + extra_files/extra-mf-slab-right-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-right-top.osm + osm + test + FE17CA24 + + + extra_files/extra-mf-slab-right-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab.osm + osm + test + F96FF6B1 + + + extra_files/extra-mf-slab.xml + xml + test + 0405C24C + + + extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.osm + osm + test + 69D63E6B + + + extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.xml + xml + test + D256CC5F + + + extra_files/extra-mf-unvented-crawlspace-left-bottom.osm + osm + test + 72567119 + + + extra_files/extra-mf-unvented-crawlspace-left-bottom.xml + xml + test + 16ABA66D + + + extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.osm + osm + test + 208B7F48 + + + extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-unvented-crawlspace-left-middle.osm + osm + test + 4B43F2C6 + + + extra_files/extra-mf-unvented-crawlspace-left-middle.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.osm + osm + test + 723E7FAF + + + extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-unvented-crawlspace-left-top.osm + osm + test + 3BB395F5 + + + extra_files/extra-mf-unvented-crawlspace-left-top.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.osm + osm + test + 31AE05B5 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.xml + xml + test + 5F6762DE + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom.osm + osm + test + 9FD6A5D0 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom.xml + xml + test + CDE985FA + + + extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.osm + osm + test + 8D8EB2A1 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle.osm + osm + test + 690095F6 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.osm + osm + test + 44089920 + + + extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-middle-top.osm + osm + test + 896B4666 + + + extra_files/extra-mf-unvented-crawlspace-middle-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace-rear-units.osm + osm + test + ADAC7345 + + + extra_files/extra-mf-unvented-crawlspace-rear-units.xml + xml + test + D256CC5F + + + extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.osm + osm + test + D305F061 + + + extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.xml + xml + test + 5F6762DE + + + extra_files/extra-mf-unvented-crawlspace-right-bottom.osm + osm + test + 28D7253A + + + extra_files/extra-mf-unvented-crawlspace-right-bottom.xml + xml + test + CDE985FA + + + extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.osm + osm + test + 18FDBD8F + + + extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-right-middle.osm + osm + test + 7899F841 + + + extra_files/extra-mf-unvented-crawlspace-right-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.osm + osm + test + E60F5FB6 + + + extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-right-top.osm + osm + test + BC30C1DA + + + extra_files/extra-mf-unvented-crawlspace-right-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace.osm + osm + test + F6A093F0 + + + extra_files/extra-mf-unvented-crawlspace.xml + xml + test + 16ABA66D + + + extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.osm + osm + test + A4DF6062 + + + extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.xml + xml + test + A21B42DD + + + extra_files/extra-mf-vented-crawlspace-left-bottom.osm + osm + test + 6AA9D510 + + + extra_files/extra-mf-vented-crawlspace-left-bottom.xml + xml + test + 2597EC51 + + + extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.osm + osm + test + 69F687F3 + + + extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-vented-crawlspace-left-middle.osm + osm + test + CD0DE226 + + + extra_files/extra-mf-vented-crawlspace-left-middle.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-vented-crawlspace-left-top-rear-units.osm + osm + test + 18FB03FA + + + extra_files/extra-mf-vented-crawlspace-left-top-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-vented-crawlspace-left-top.osm + osm + test + 59B1EDC9 + + + extra_files/extra-mf-vented-crawlspace-left-top.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.osm + osm + test + 9633E97D + + + extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.xml + xml + test + C40133FA + + + extra_files/extra-mf-vented-crawlspace-middle-bottom.osm + osm + test + EE5B8A95 + + + extra_files/extra-mf-vented-crawlspace-middle-bottom.xml + xml + test + 145576E8 + + + extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.osm + osm + test + 64AA6A1B + + + extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-middle-middle.osm + osm + test + 1894394F + + + extra_files/extra-mf-vented-crawlspace-middle-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.osm + osm + test + 2BFD57F5 + + + extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-middle-top.osm + osm + test + 47D6A1AC + + + extra_files/extra-mf-vented-crawlspace-middle-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace-rear-units.osm + osm + test + 6CF1685C + + + extra_files/extra-mf-vented-crawlspace-rear-units.xml + xml + test + A21B42DD + + + extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.osm + osm + test + B15EEA71 + + + extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.xml + xml + test + C40133FA + + + extra_files/extra-mf-vented-crawlspace-right-bottom.osm + osm + test + A1AAA9DF + + + extra_files/extra-mf-vented-crawlspace-right-bottom.xml + xml + test + 145576E8 + + + extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.osm + osm + test + 674CF404 + + + extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-right-middle.osm + osm + test + E21053B8 + + + extra_files/extra-mf-vented-crawlspace-right-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace-right-top-rear-units.osm + osm + test + EB8A1A17 + + + extra_files/extra-mf-vented-crawlspace-right-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-right-top.osm + osm + test + 7480EE78 + + + extra_files/extra-mf-vented-crawlspace-right-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace.osm + osm + test + 16D46105 + + + extra_files/extra-mf-vented-crawlspace.xml + xml + test + 2597EC51 + + + extra_files/extra-no-rim-joists.osm + osm + test + 616FF867 + + + extra_files/extra-no-rim-joists.xml + xml + test + 965E0D3D + + + extra_files/extra-pv-roofpitch.osm + osm + test + 9489D75E + + + extra_files/extra-pv-roofpitch.xml + xml + test + F6999140 + + + extra_files/extra-seasons-building-america.osm + osm + test + C795734D + + + extra_files/extra-seasons-building-america.xml + xml + test + C1E40019 + + + extra_files/extra-second-heating-system-boiler-to-heat-pump.osm + osm + test + 7A23BD14 + + + extra_files/extra-second-heating-system-boiler-to-heat-pump.xml + xml + test + D40B0729 + + + extra_files/extra-second-heating-system-boiler-to-heating-system.osm + osm + test + 907D92C7 + + + extra_files/extra-second-heating-system-boiler-to-heating-system.xml + xml + test + 401E1EF6 + + + extra_files/extra-second-heating-system-fireplace-to-heat-pump.osm + osm + test + A123EB19 + + + extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml + xml + test + 5CBD1D59 + + + extra_files/extra-second-heating-system-fireplace-to-heating-system.osm + osm + test + 8C4041F1 + + + extra_files/extra-second-heating-system-fireplace-to-heating-system.xml + xml + test + B6796D76 + + + extra_files/extra-second-heating-system-portable-heater-to-heat-pump.osm + osm + test + 07B50223 + + + extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml + xml + test + 3259706F + + + extra_files/extra-second-heating-system-portable-heater-to-heating-system.osm + osm + test + 94710DFB + + + extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml + xml + test + F47818CB + + + extra_files/extra-second-refrigerator.osm + osm + test + 0719BFEF + + + extra_files/extra-second-refrigerator.xml + xml + test + F6999140 + + + extra_files/extra-sfa-ambient.osm + osm + test + F98DE056 + + + extra_files/extra-sfa-ambient.xml + xml + test + D43626F1 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-gable.osm + osm + test + A3685A53 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml + xml + test + 9A0BD3F2 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-hip.osm + osm + test + D8B1B542 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml + xml + test + E40AD01A + + + extra_files/extra-sfa-atticroof-flat.osm + osm + test + E4F0418F + + + extra_files/extra-sfa-atticroof-flat.xml + xml + test + C90B6266 + + + extra_files/extra-sfa-conditioned-crawlspace.osm + osm + test + 26256EE5 + + + extra_files/extra-sfa-conditioned-crawlspace.xml + xml + test + EA81F0A1 + + + extra_files/extra-sfa-exterior-corridor.osm + osm + test + BA5454F6 + + + extra_files/extra-sfa-exterior-corridor.xml + xml + test + 3D5B2006 + + + extra_files/extra-sfa-rear-units.osm + osm + test + 36741B71 + + + extra_files/extra-sfa-rear-units.xml + xml + test + 3D5B2006 + + + extra_files/extra-sfa-slab-middle.osm + osm + test + F88A4307 + + + extra_files/extra-sfa-slab-middle.xml + xml + test + 7CE3AFA5 + + + extra_files/extra-sfa-slab-right.osm + osm + test + F48B3E43 + + + extra_files/extra-sfa-slab-right.xml + xml + test + 7CE3AFA5 + + + extra_files/extra-sfa-slab.osm + osm + test + 189A4405 + + + extra_files/extra-sfa-slab.xml + xml + test + C78CBE22 + + + extra_files/extra-sfa-unconditioned-basement-middle.osm + osm + test + D8A1A8D1 + + + extra_files/extra-sfa-unconditioned-basement-middle.xml + xml + test + F2F3AC7E + + + extra_files/extra-sfa-unconditioned-basement-right.osm + osm + test + 233AAE16 + + + extra_files/extra-sfa-unconditioned-basement-right.xml + xml + test + F2F3AC7E + + + extra_files/extra-sfa-unconditioned-basement.osm + osm + test + 1F889945 + + + extra_files/extra-sfa-unconditioned-basement.xml + xml + test + 62860C68 + + + extra_files/extra-sfa-unvented-crawlspace-middle.osm + osm + test + DD3DCFBC + + + extra_files/extra-sfa-unvented-crawlspace-middle.xml + xml + test + DF2D5F3C + + + extra_files/extra-sfa-unvented-crawlspace-right.osm + osm + test + F9BF6075 + + + extra_files/extra-sfa-unvented-crawlspace-right.xml + xml + test + DF2D5F3C + + + extra_files/extra-sfa-unvented-crawlspace.osm + osm + test + 70EE9F67 + + + extra_files/extra-sfa-unvented-crawlspace.xml + xml + test + EA9EF2E6 + + + extra_files/extra-sfa-vented-crawlspace-middle.osm + osm + test + 89BE1CA5 + + + extra_files/extra-sfa-vented-crawlspace-middle.xml + xml + test + F7E2BD9C + + + extra_files/extra-sfa-vented-crawlspace-right.osm + osm + test + B7EEC00E + + + extra_files/extra-sfa-vented-crawlspace-right.xml + xml + test + F7E2BD9C + + + extra_files/extra-sfa-vented-crawlspace.osm + osm + test + A40AA995 + + + extra_files/extra-sfa-vented-crawlspace.xml + xml + test + D5E96577 + + + extra_files/extra-state-code-different-than-epw.osm + osm + test + AA83A242 + + + extra_files/extra-state-code-different-than-epw.xml + xml + test + 4E351F9A + + + extra_files/extra-time-zone-different-than-epw.osm + osm + test + F27429AA + + + extra_files/extra-time-zone-different-than-epw.xml + xml + test + 1CDA2401 + + + extra_files/extra-water-heater-attic.osm + osm + test + 50F9C3CD + + + extra_files/extra-water-heater-attic.xml + xml + test + D37BE40E + + + extra_files/extra-water-heater-crawlspace.osm + osm + test + A6593123 + + + extra_files/extra-water-heater-crawlspace.xml + xml + test + A46113BC + + + extra_files/warning-conditioned-attic-with-floor-insulation.osm + osm + test + 34CE7BD3 + + + extra_files/warning-conditioned-attic-with-floor-insulation.xml + xml + test + 28AEC9B5 + + + extra_files/warning-conditioned-basement-with-ceiling-insulation.osm + osm + test + 6EAC1B66 + + + extra_files/warning-conditioned-basement-with-ceiling-insulation.xml + xml + test + F6999140 + + + extra_files/warning-mf-bottom-slab-non-zero-foundation-height.osm + osm + test + 08793854 + + + extra_files/warning-mf-bottom-slab-non-zero-foundation-height.xml + xml + test + 0405C24C + + + extra_files/warning-non-electric-heat-pump-water-heater.osm + osm + test + 3FF7A173 + + + extra_files/warning-non-electric-heat-pump-water-heater.xml + xml + test + A47167E4 + + + extra_files/warning-sfd-slab-non-zero-foundation-height.osm + osm + test + 4F5F0CF2 + + + extra_files/warning-sfd-slab-non-zero-foundation-height.xml + xml + test + BD8AF863 + + + extra_files/warning-slab-non-zero-foundation-height-above-grade.osm + osm + test + 9D500078 + + + extra_files/warning-slab-non-zero-foundation-height-above-grade.xml + xml + test + BD8AF863 + + + extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.osm + osm + test + 2313D3FF + + + extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml + xml + test + 12D79C35 + + + extra_files/warning-unvented-attic-with-floor-and-roof-insulation.osm + osm + test + 51BD31F6 + + + extra_files/warning-unvented-attic-with-floor-and-roof-insulation.xml + xml + test + DA47371D + + + extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.osm + osm + test + EBF9AC5F + + + extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml + xml + test + F096C9B4 + + + extra_files/warning-vented-attic-with-floor-and-roof-insulation.osm + osm + test + 37BCB893 + + + extra_files/warning-vented-attic-with-floor-and-roof-insulation.xml + xml + test + E50EC187 + + + extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.osm + osm + test + 3E996AFD + + + extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml + xml + test + 66E54CB2 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index 8ea8545b39..cbed450ca1 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -198,6 +198,9 @@ def test_workflows 'error-garage-too-wide.xml' => 'base-sfd.xml', 'error-garage-too-deep.xml' => 'base-sfd.xml', 'error-vented-attic-with-zero-floor-insulation.xml' => 'base-sfd.xml', + 'error-different-weather-station-epw.xml' => 'base-sfd.xml', + 'error-different-window-natvent-availability.xml' => 'base-sfd.xml', + 'error-same-utility-bill-scenario-name.xml' => 'base-sfd.xml', 'warning-non-electric-heat-pump-water-heater.xml' => 'base-sfd.xml', 'warning-sfd-slab-non-zero-foundation-height.xml' => 'base-sfd.xml', @@ -252,7 +255,10 @@ def test_workflows 'error-invalid-window-aspect-ratio.xml' => 'Window aspect ratio must be greater than zero.', 'error-garage-too-wide.xml' => 'Garage is as wide as the single-family detached unit.', 'error-garage-too-deep.xml' => 'Garage is as deep as the single-family detached unit.', - 'error-vented-attic-with-zero-floor-insulation.xml' => "Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'." + 'error-vented-attic-with-zero-floor-insulation.xml' => "Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'.", + 'error-different-weather-station-epw.xml' => 'MyBuilding: hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath=USA_CO_Denver.Intl.AP.725650_TMY3.epw; cannot set weather_station_epw_filepath=USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw.', + 'error-different-window-natvent-availability.xml' => 'hpxml.header.natvent_days_per_week=3; cannot set window_natvent_availability=4.', + 'error-same-utility-bill-scenario-name.xml' => "HPXML header already includes utility bill scenario 'Bills'." } expected_warnings = { @@ -628,8 +634,10 @@ def _set_measure_argument_values(hpxml_file, args) args['pool_heater_type'] = HPXML::HeaterTypeElectricResistance args['hot_tub_present'] = false args['hot_tub_heater_type'] = HPXML::HeaterTypeElectricResistance + args['utility_bill_scenario_names'] = 'Bills' elsif ['base-sfd2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') + args['utility_bill_scenario_names'] = 'Bills2' elsif ['base-sfa.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeSFA args['geometry_unit_cfa'] = 1800.0 @@ -646,8 +654,10 @@ def _set_measure_argument_values(hpxml_file, args) args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-sfa2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml') + args['utility_bill_scenario_names'] = 'Bills2' elsif ['base-sfa3.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml') + args['utility_bill_scenario_names'] = 'Bills3' elsif ['base-mf.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeApartment args['geometry_unit_cfa'] = 900.0 @@ -675,10 +685,13 @@ def _set_measure_argument_values(hpxml_file, args) args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-mf2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml') + args['utility_bill_scenario_names'] = 'Bills2' elsif ['base-mf3.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml') + args['utility_bill_scenario_names'] = 'Bills3' elsif ['base-mf4.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml') + args['utility_bill_scenario_names'] = 'Bills4' end # Extras @@ -1163,6 +1176,15 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_garage_depth'] = 40 elsif ['error-vented-attic-with-zero-floor-insulation.xml'].include? hpxml_file args['ceiling_assembly_r'] = 0 + elsif ['error-different-weather-station-epw.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') + args['weather_station_epw_filepath'] = 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw' + elsif ['error-different-window-natvent-availability.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') + args['window_natvent_availability'] = 4 + elsif ['error-same-utility-bill-scenario-name.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') + args['utility_bill_scenario_names'] = 'Bills' end # Warning From 7e85203caeba1e43be415a680913e180d8452e1b Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 26 Sep 2023 13:59:24 -0600 Subject: [PATCH 25/33] Fix CI failure. --- workflow/tests/hpxml_translator_test.rb | 56 +++++++++++++------------ 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index b87f430fe2..aa1ff0acb6 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -29,7 +29,7 @@ def test_simulations sample_files_dirs.each do |sample_files_dir| Dir["#{sample_files_dir}/*.xml"].sort.each do |xml| next if xml.end_with? '-10x.xml' - next if xml.include? 'base-multiple-buildings.xml' # Tested by test_multiple_buildings() + next if xml.include? 'base-multiple-buildings' # Tested by test_multiple_buildings() # FIXME: Need to address these files # Misc: next if xml.include? 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump' @@ -314,38 +314,40 @@ def test_template_osws end def test_multiple_buildings - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base-multiple-buildings.xml') - csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.csv') - run_log = File.join(File.dirname(xml), 'run', 'run.log') + sample_files_dir = File.join(File.dirname(__FILE__), '..', 'sample_files') + Dir["#{sample_files_dir}/base-multiple-buildings*.xml"].sort.each do |xml| + rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') + csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.csv') + run_log = File.join(File.dirname(xml), 'run', 'run.log') - # Check successful simulation when providing correct building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyBuilding_2" - system(command, err: File::NULL) - assert_equal(true, File.exist?(csv_output_path)) + # Check successful simulation when providing correct building ID + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyBuilding_2" + system(command, err: File::NULL) + assert_equal(true, File.exist?(csv_output_path)) - # Check that we have exactly one warning (i.e., check we are only validating a single Building element against schematron) - assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size) + # Check that we have exactly one warning (i.e., check we are only validating a single Building element against schematron) + assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size) - # Check unsuccessful simulation when providing incorrect building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyFoo" - system(command, err: File::NULL) - assert_equal(false, File.exist?(csv_output_path)) - assert_equal(1, File.readlines(run_log).select { |l| l.include? "Could not find Building element with ID 'MyFoo'." }.size) + # Check unsuccessful simulation when providing incorrect building ID + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyFoo" + system(command, err: File::NULL) + assert_equal(false, File.exist?(csv_output_path)) + assert_equal(1, File.readlines(run_log).select { |l| l.include? "Could not find Building element with ID 'MyFoo'." }.size) - # Check unsuccessful simulation when not providing building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\"" - system(command, err: File::NULL) - assert_equal(false, File.exist?(csv_output_path)) - assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' }.size) + # Check unsuccessful simulation when not providing building ID + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\"" + system(command, err: File::NULL) + assert_equal(false, File.exist?(csv_output_path)) + assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' }.size) - # Check successful simulation when running whole building - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id ALL" - system(command, err: File::NULL) - assert_equal(true, File.exist?(csv_output_path)) + # Check successful simulation when running whole building + command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id ALL" + system(command, err: File::NULL) + assert_equal(true, File.exist?(csv_output_path)) - # Check that we now have three warnings, one for each Building element - assert_equal(3, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size) + # Check that we now have three warnings, one for each Building element + assert_equal(3, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size) + end end def test_release_zips From 17ce9978ee624981061e06db1890bf25aa782527 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 27 Sep 2023 10:57:56 -0700 Subject: [PATCH 26/33] Refactor error checking on hpxml header inputs. --- BuildResidentialHPXML/measure.rb | 78 +- BuildResidentialHPXML/measure.xml | 756 ++++++++---------- .../tests/build_residential_hpxml_test.rb | 193 +++-- 3 files changed, 481 insertions(+), 546 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 9908ef35c4..03a35cddc8 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3396,11 +3396,10 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) hpxml = HPXML.new(hpxml_path: existing_hpxml_path, building_id: 'ALL') - if not validate_arguments_against_existing_hpxml(runner, hpxml, args) + if not set_header(runner, hpxml, args) return false end - set_header(hpxml, args) hpxml_bldg = add_building(hpxml, args) set_site(hpxml_bldg, args) set_neighbor_buildings(hpxml_bldg, args) @@ -3482,37 +3481,6 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) return hpxml_doc end - def self.validate_arguments_against_existing_hpxml(runner, hpxml, args) - errors = [] - - if !hpxml.header.natvent_days_per_week.nil? && args[:window_natvent_availability].is_initialized && (hpxml.header.natvent_days_per_week != args[:window_natvent_availability].get) - errors << "hpxml.header.natvent_days_per_week=#{hpxml.header.natvent_days_per_week}; cannot set window_natvent_availability=#{args[:window_natvent_availability].get}." - end - - if !hpxml.header.utility_bill_scenarios.empty? && args[:utility_bill_scenario_names].is_initialized - utility_bill_scenario_names = hpxml.header.utility_bill_scenarios.collect { |bill_scenario| bill_scenario.name } - bills_scenario_names = args[:utility_bill_scenario_names].get.split(',').map(&:strip) - bills_scenario_names.each do |bills_scenario_name| - if utility_bill_scenario_names.include?(bills_scenario_name) - errors << "HPXML header already includes utility bill scenario '#{bills_scenario_name}'." - end - end - end - - hpxml.buildings.each do |hpxml_bldg| - if hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath != args[:weather_station_epw_filepath] - errors << "#{hpxml_bldg.building_id}: hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath=#{hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath}; cannot set weather_station_epw_filepath=#{args[:weather_station_epw_filepath]}." - end - end - - errors.each do |error| - runner.registerError(error) - end - return true if errors.empty? - - return false - end - def self.validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) # Check for errors in the HPXML object errors = [] @@ -3600,7 +3568,9 @@ def self.create_geometry_envelope(runner, model, args) return true end - def self.set_header(hpxml, args) + def self.set_header(runner, hpxml, args) + errors = [] + hpxml.header.xml_type = 'HPXML' hpxml.header.xml_generated_by = 'BuildResidentialHPXML' hpxml.header.transaction = 'create' @@ -3620,18 +3590,33 @@ def self.set_header(hpxml, args) end if args[:software_info_program_used].is_initialized + if !hpxml.header.software_program_used.nil? && (hpxml.header.software_program_used != args[:software_info_program_used].get) + errors << "hpxml.header.software_program_used=#{hpxml.header.software_program_used}; cannot set software_info_program_used=#{args[:software_info_program_used].get}." + end hpxml.header.software_program_used = args[:software_info_program_used].get end if args[:software_info_program_version].is_initialized + if !hpxml.header.software_program_version.nil? && (hpxml.header.software_program_version != args[:software_info_program_version].get) + errors << "hpxml.header.software_program_version=#{hpxml.header.software_program_version}; cannot set software_info_program_version=#{args[:software_info_program_version].get}." + end hpxml.header.software_program_version = args[:software_info_program_version].get end if args[:simulation_control_timestep].is_initialized + if !hpxml.header.timestep.nil? && (hpxml.header.timestep != args[:simulation_control_timestep].get) + errors << "hpxml.header.timestep=#{hpxml.header.timestep}; cannot set simulation_control_timestep=#{args[:simulation_control_timestep].get}." + end hpxml.header.timestep = args[:simulation_control_timestep].get end if args[:simulation_control_run_period].is_initialized begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:simulation_control_run_period].get) + if (!hpxml.header.sim_begin_month.nil? && (hpxml.header.sim_begin_month != begin_month)) || + (!hpxml.header.sim_begin_day.nil? && (hpxml.header.sim_begin_day != begin_day)) || + (!hpxml.header.sim_end_month.nil? && (hpxml.header.sim_end_month != end_month)) || + (!hpxml.header.sim_end_day.nil? && (hpxml.header.sim_end_day != end_day)) + errors << "hpxml.header.sim_begin_month=#{hpxml.header.sim_begin_month}, hpxml.header.sim_begin_day=#{hpxml.header.sim_begin_day}, hpxml.header.sim_end_month=#{hpxml.header.sim_end_month}, hpxml.header.sim_end_day=#{hpxml.header.sim_end_day}; cannot set simulation_control_run_period=#{args[:simulation_control_run_period].get}." + end hpxml.header.sim_begin_month = begin_month hpxml.header.sim_begin_day = begin_day hpxml.header.sim_end_month = end_month @@ -3639,13 +3624,20 @@ def self.set_header(hpxml, args) end if args[:simulation_control_run_period_calendar_year].is_initialized + if !hpxml.header.sim_calendar_year.nil? && (hpxml.header.sim_calendar_year != Integer(args[:simulation_control_run_period_calendar_year].get)) + errors << "hpxml.header.sim_calendar_year=#{hpxml.header.sim_calendar_year}; cannot set simulation_control_run_period_calendar_year=#{args[:simulation_control_run_period_calendar_year].get}." + end hpxml.header.sim_calendar_year = args[:simulation_control_run_period_calendar_year].get end if args[:simulation_control_temperature_capacitance_multiplier].is_initialized + if !hpxml.header.temperature_capacitance_multiplier.nil? && (hpxml.header.temperature_capacitance_multiplier != Float(args[:simulation_control_temperature_capacitance_multiplier].get)) + errors << "hpxml.header.temperature_capacitance_multiplier=#{hpxml.header.temperature_capacitance_multiplier}; cannot set simulation_control_temperature_capacitance_multiplier=#{args[:simulation_control_temperature_capacitance_multiplier].get}." + end hpxml.header.temperature_capacitance_multiplier = args[:simulation_control_temperature_capacitance_multiplier].get end + existing_emissions_scenario_names = hpxml.header.emissions_scenarios.collect { |emissions_scenario| emissions_scenario.name } if args[:emissions_scenario_names].is_initialized emissions_scenario_names = args[:emissions_scenario_names].get.split(',').map(&:strip) emissions_types = args[:emissions_types].get.split(',').map(&:strip) @@ -3693,6 +3685,11 @@ def self.set_header(hpxml, args) fuel_values[HPXML::FuelTypeWoodPellets]) emissions_scenarios.each do |emissions_scenario| name, emissions_type, elec_units, elec_value_or_schedule_filepath, elec_num_headers, elec_column_num, fuel_units, natural_gas_value, propane_value, fuel_oil_value, coal_value, wood_value, wood_pellets_value = emissions_scenario + + if existing_emissions_scenario_names.include?(name) + errors << "HPXML header already includes an emissions scenario named '#{name}'." + end + elec_value = Float(elec_value_or_schedule_filepath) rescue nil if elec_value.nil? elec_schedule_filepath = elec_value_or_schedule_filepath @@ -3728,6 +3725,7 @@ def self.set_header(hpxml, args) end end + existing_bill_scenario_names = hpxml.header.utility_bill_scenarios.collect { |bill_scenario| bill_scenario.name } if args[:utility_bill_scenario_names].is_initialized bills_scenario_names = args[:utility_bill_scenario_names].get.split(',').map(&:strip) @@ -3819,6 +3817,11 @@ def self.set_header(hpxml, args) bills_scenarios.each do |bills_scenario| name, elec_tariff_filepath, elec_fixed_charge, natural_gas_fixed_charge, propane_fixed_charge, fuel_oil_fixed_charge, coal_fixed_charge, wood_fixed_charge, wood_pellets_fixed_charge, elec_marginal_rate, natural_gas_marginal_rate, propane_marginal_rate, fuel_oil_marginal_rate, coal_marginal_rate, wood_marginal_rate, wood_pellets_marginal_rate, pv_compensation_type, pv_net_metering_annual_excess_sellback_rate_type, pv_net_metering_annual_excess_sellback_rate, pv_feed_in_tariff_rate, pv_monthly_grid_connection_fee_unit, pv_monthly_grid_connection_fee = bills_scenario + + if existing_bill_scenario_names.include?(name) + errors << "HPXML header already includes a utility bill scenario named '#{name}'." + end + elec_tariff_filepath = (elec_tariff_filepath.to_s.include?('.') ? elec_tariff_filepath : nil) elec_fixed_charge = Float(elec_fixed_charge) rescue nil natural_gas_fixed_charge = Float(natural_gas_fixed_charge) rescue nil @@ -3878,6 +3881,13 @@ def self.set_header(hpxml, args) pv_monthly_grid_connection_fee_dollars: pv_monthly_grid_connection_fee_dollars) end end + + errors.each do |error| + runner.registerError(error) + end + return true if errors.empty? + + return false end def self.add_building(hpxml, args) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 6fe173d7a1..c85d4eab8d 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 70b763a8-5eb5-4215-a93e-4f3616137df7 - 2023-09-27T03:49:17Z + 85fa69ad-7415-4b19-ac75-f6c4fd15080d + 2023-09-27T17:52:25Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6756,7 +6756,7 @@ measure.rb rb script - C8C7DCBA + 45E839F4 geometry.rb @@ -6768,1891 +6768,1789 @@ build_residential_hpxml_test.rb rb test - B9085AFE + 4FC11DF2 extra_files/base-mf.osm osm test - 8A67671D + BD9959E8 extra_files/base-mf.xml xml test - D9D0C362 + 5A3162FF extra_files/base-mf2.osm osm test - 13A11CB6 + 82B9A1C8 extra_files/base-mf2.xml xml test - 259ABB0D + 9D8CCD42 extra_files/base-mf3.osm osm test - A6EDBF7C + 31599625 extra_files/base-mf3.xml xml test - 4D8977C5 + 2CEAF7F7 extra_files/base-mf4.osm osm test - 790B1EFB + 6FA7281D extra_files/base-mf4.xml xml test - B03CE6CD + ED3D4C32 extra_files/base-sfa.osm osm test - 8A476DF0 + 346AF8C8 extra_files/base-sfa.xml xml test - 3D5B2006 + 2C6F731A extra_files/base-sfa2.osm osm test - 5F60C790 + C2D5CCCD extra_files/base-sfa2.xml xml test - 2755E083 + 6041260A extra_files/base-sfa3.osm osm test - 546682C5 + 06774B39 extra_files/base-sfa3.xml xml test - 8529104F + 8374ECC9 + + + extra_files/base-sfd-header.osm + osm + test + 1DFCB94B + + + extra_files/base-sfd-header.xml + xml + test + 0F8B9674 extra_files/base-sfd.osm osm test - 07D5F025 + 957F095D extra_files/base-sfd.xml xml test - F6999140 + B4DA5D01 extra_files/base-sfd2.osm osm test - B48FA53E + 392060A6 extra_files/base-sfd2.xml xml test - BAD328BC + 4FBA27DD extra_files/error-ambient-with-garage.osm osm test - 850218F7 + 37D281EF extra_files/error-bills-args-not-all-same-size.osm osm test - 6E87BE55 + 3E8CE008 extra_files/error-conditioned-attic-with-one-floor-above-grade.osm osm test - 73F51753 + 7F0FDAF6 extra_files/error-cooling-system-and-heat-pump.osm osm test - 61FC826F + 64C7DC8A extra_files/error-dhw-indirect-without-boiler.osm osm test - 27765992 + 80441CE8 - extra_files/error-different-weather-station-epw.osm + extra_files/error-different-simulation-control.osm osm test - 169B4147 + 2D3FD3F9 + + + extra_files/error-different-software-program.osm + osm + test + 1675C853 extra_files/error-different-window-natvent-availability.osm osm test - 4D674396 + 115E6EB6 + + + extra_files/error-different-window-natvent-availability.xml + xml + test + 9A40243A extra_files/error-emissions-args-not-all-same-size.osm osm test - 49E90104 + F9A9F3A7 extra_files/error-emissions-args-not-all-specified.osm osm test - 52A18C9B + 18985C9C extra_files/error-emissions-natural-gas-args-not-all-specified.osm osm test - 82EA0A93 + B666B540 extra_files/error-garage-too-deep.osm osm test - CE797B66 + D6F3BA88 extra_files/error-garage-too-wide.osm osm test - 34267B7A + 105F81BC extra_files/error-heating-system-and-heat-pump.osm osm test - 8511F65E + 264C8550 extra_files/error-hip-roof-and-protruding-garage.osm osm test - C118087D + F44F71A9 extra_files/error-invalid-aspect-ratio.osm osm test - 63575D1B + 7BABA004 extra_files/error-invalid-door-area.osm osm test - A36243F5 + 5ADF915D extra_files/error-invalid-garage-protrusion.osm osm test - C2DC6B21 + 7F6BC492 extra_files/error-invalid-window-aspect-ratio.osm osm test - 725F90AE + 72915EF4 extra_files/error-mf-all-adiabatic-walls.osm osm test - 232D9805 + 505C8CDE extra_files/error-mf-bottom-crawlspace-zero-foundation-height.osm osm test - CCD576D7 + E40910C8 extra_files/error-mf-conditioned-attic.osm osm test - 9F938A97 + E871750F extra_files/error-mf-no-building-num-units.osm osm test - 113ED618 + 7C1EB13C extra_files/error-mf-two-stories.osm osm test - 62A1FFDA + 747DD442 extra_files/error-negative-foundation-height.osm osm test - FB359D6E + ED4FF305 extra_files/error-protruding-garage-under-gable-roof.osm osm test - 358F46BE + BB1E3FFB extra_files/error-rim-joist-assembly-r-but-no-height.osm osm test - D8AC01AC + 9CD57AB6 extra_files/error-rim-joist-height-but-no-assembly-r.osm osm test - 70456851 + F5256245 + + + extra_files/error-same-emissions-scenario-name.osm + osm + test + 72511DF4 extra_files/error-same-utility-bill-scenario-name.osm osm test - 24AD466B + 04647912 extra_files/error-second-heating-system-but-no-primary-heating.osm osm test - D01C1269 + 7FAFC960 extra_files/error-second-heating-system-ducted-with-ducted-primary-heating.osm osm test - 0092DC33 + AE580346 extra_files/error-sfa-above-apartment.osm osm test - 98D6F587 + 8647F045 extra_files/error-sfa-all-adiabatic-walls.osm osm test - A336C81F + 2C664392 extra_files/error-sfa-below-apartment.osm osm test - 88510855 + D08A8E60 extra_files/error-sfa-no-building-num-units.osm osm test - E32541C6 + C24DB451 extra_files/error-sfa-no-non-adiabatic-walls.osm osm test - C6A780FB + 123D86E5 extra_files/error-sfd-adiabatic-walls.osm osm test - 7CFA63C5 + 2D3EBA15 extra_files/error-sfd-conditioned-basement-zero-foundation-height.osm osm test - 19360E20 + 8869EAB6 extra_files/error-sfd-with-shared-system.osm osm test - 27799D68 + 2FED2B9C extra_files/error-too-many-floors.osm osm test - 7DAF3E28 + C6028C04 extra_files/error-vented-attic-with-zero-floor-insulation.osm osm test - 7EE72FD2 + 540F8CB6 extra_files/error-vented-attic-with-zero-floor-insulation.xml xml test - E55385BC + E56C3E85 extra_files/error-zero-number-of-bedrooms.osm osm test - 81816D49 + A4A6B40A extra_files/extra-auto-duct-locations.osm osm test - 2809EE48 + DE27B10F extra_files/extra-auto-duct-locations.xml xml test - 2C479001 + 25588468 extra_files/extra-auto.osm osm test - 85FEDE77 + 00EA5669 extra_files/extra-auto.xml xml test - BB250DD5 + 15C00059 extra_files/extra-battery-attic.osm osm test - ACFF5DA7 + 8631EA8C extra_files/extra-battery-attic.xml xml test - 05C4B25C + BB1822E2 extra_files/extra-battery-crawlspace.osm osm test - BEEB0949 + 1791384E extra_files/extra-battery-crawlspace.xml xml test - 39BF76BC + 35100B42 extra_files/extra-bills-fossil-fuel-rates.osm osm test - B7CF951F + 7B9A916D extra_files/extra-bills-fossil-fuel-rates.xml xml test - 6B37F132 + 77F514FB extra_files/extra-dhw-solar-latitude.osm osm test - E6BE7A97 + AB58350F extra_files/extra-dhw-solar-latitude.xml xml test - 8228F988 + F2B3C3D4 extra_files/extra-ducts-attic.osm osm test - 59ACEB6C + F504571D extra_files/extra-ducts-attic.xml xml test - F6999140 + B4DA5D01 extra_files/extra-ducts-crawlspace.osm osm test - 4B756AE8 + F1C03B73 extra_files/extra-ducts-crawlspace.xml xml test - 2B705FB1 + A5CE0813 extra_files/extra-emissions-fossil-fuel-factors.osm osm test - 12139692 + FD12C5D9 extra_files/extra-emissions-fossil-fuel-factors.xml xml test - F7CBA81A + CAA0B1DC extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.osm osm test - BA50CE82 + 0148294A extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml xml test - 165956AB + 534704EA extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.osm osm test - 4409F2AA + 687DB8EE extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml xml test - 7FA8E81F + 50150E8C extra_files/extra-enclosure-garage-atticroof-conditioned.osm osm test - EF3D471C + D7D37954 extra_files/extra-enclosure-garage-atticroof-conditioned.xml xml test - A6A5BC13 + 9994CE61 extra_files/extra-enclosure-garage-partially-protruded.osm osm test - 8DFDAD5B + E8DAEAED extra_files/extra-enclosure-garage-partially-protruded.xml xml test - 277C061B + CB68542B extra_files/extra-enclosure-windows-shading.osm osm test - B5271F0D + 560DBCE4 extra_files/extra-enclosure-windows-shading.xml xml test - E9A2AFF5 + 1139C3F3 extra_files/extra-gas-hot-tub-heater-with-zero-kwh.osm osm test - 1E5417AA + 218CD492 extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml xml test - A7B6F187 + 197F2C09 extra_files/extra-gas-pool-heater-with-zero-kwh.osm osm test - 2EF92A3F + 0AC9F259 extra_files/extra-gas-pool-heater-with-zero-kwh.xml xml test - 170D94FF + 59D527D2 extra_files/extra-iecc-zone-different-than-epw.osm osm test - 2F8DFEF1 + 35778ADB extra_files/extra-iecc-zone-different-than-epw.xml xml test - 0F907273 + 4DD3BE32 extra_files/extra-mf-ambient.osm osm test - 930C18EB + 06F3B277 extra_files/extra-mf-ambient.xml xml test - AB2B3211 + 02CFF8EB extra_files/extra-mf-atticroof-flat.osm osm test - 2CDA73DE + 615BD5AF extra_files/extra-mf-atticroof-flat.xml xml test - 73896F35 + 77F247AE extra_files/extra-mf-atticroof-vented.osm osm test - DF73EAE6 + B2DA84B6 extra_files/extra-mf-atticroof-vented.xml xml test - F60A0DF0 + 6D3CB8F6 extra_files/extra-mf-eaves.osm osm test - D5287B46 + C785458F extra_files/extra-mf-eaves.xml xml test - 2C16D65B + 3077906F extra_files/extra-mf-exterior-corridor.osm osm test - A1761327 + 8A60D2E8 extra_files/extra-mf-exterior-corridor.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-rear-units.osm osm test - 070E85FA + FA6724EE extra_files/extra-mf-rear-units.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-slab-left-bottom-rear-units.osm osm test - BA6BFD5B + 26F01641 extra_files/extra-mf-slab-left-bottom-rear-units.xml xml test - 7605C590 + D5B70DC8 extra_files/extra-mf-slab-left-bottom.osm osm test - BC7ECCD5 + BAC14173 extra_files/extra-mf-slab-left-bottom.xml xml test - 0405C24C + 3A2F0A60 extra_files/extra-mf-slab-left-middle-rear-units.osm osm test - 0036A7F5 + BE720DA0 extra_files/extra-mf-slab-left-middle-rear-units.xml xml test - 60B13281 + B4A02CFB extra_files/extra-mf-slab-left-middle.osm osm test - C3E1EC3F + 45A195D7 extra_files/extra-mf-slab-left-middle.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-slab-left-top-rear-units.osm osm test - 5C172890 + 55C99E1A extra_files/extra-mf-slab-left-top-rear-units.xml xml test - 60B13281 + B4A02CFB extra_files/extra-mf-slab-left-top.osm osm test - E22B5830 + EFB82AD9 extra_files/extra-mf-slab-left-top.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-slab-middle-bottom-rear-units.osm osm test - 9DD09175 + 4B4B1236 extra_files/extra-mf-slab-middle-bottom-rear-units.xml xml test - FACC6D3E + 402F5C58 extra_files/extra-mf-slab-middle-bottom.osm osm test - E7C0AC96 + D59B9788 extra_files/extra-mf-slab-middle-bottom.xml xml test - 8B9952D5 + 53C18443 extra_files/extra-mf-slab-middle-middle-rear-units.osm osm test - 6E202D81 + 91A22D43 extra_files/extra-mf-slab-middle-middle-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-slab-middle-middle.osm osm test - D9340320 + 6E4713CD extra_files/extra-mf-slab-middle-middle.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-slab-middle-top-rear-units.osm osm test - 5114044D + 7764D37A extra_files/extra-mf-slab-middle-top-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-slab-middle-top.osm osm test - CBDEA4BE + DAD520D9 extra_files/extra-mf-slab-middle-top.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-slab-rear-units.osm osm test - 270CE6D0 + 720FFFC9 extra_files/extra-mf-slab-rear-units.xml xml test - 7605C590 + D5B70DC8 extra_files/extra-mf-slab-right-bottom-rear-units.osm osm test - 8D41D6B3 + F14552ED extra_files/extra-mf-slab-right-bottom-rear-units.xml xml test - FACC6D3E + 402F5C58 extra_files/extra-mf-slab-right-bottom.osm osm test - 934C1B2B + E7B10BFE extra_files/extra-mf-slab-right-bottom.xml xml test - 8B9952D5 + 53C18443 extra_files/extra-mf-slab-right-middle-rear-units.osm osm test - 5044CC39 + 748AF34C extra_files/extra-mf-slab-right-middle-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-slab-right-middle.osm osm test - 9E6AC950 + F8E65F43 extra_files/extra-mf-slab-right-middle.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-slab-right-top-rear-units.osm osm test - C3B46A24 + 46C75132 extra_files/extra-mf-slab-right-top-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-slab-right-top.osm osm test - FE17CA24 + 04BBBD09 extra_files/extra-mf-slab-right-top.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-slab.osm osm test - F96FF6B1 + 08F770D6 extra_files/extra-mf-slab.xml xml test - 0405C24C + 3A2F0A60 extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.osm osm test - 69D63E6B + 00237569 extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.xml xml test - D256CC5F + 7F3955CE extra_files/extra-mf-unvented-crawlspace-left-bottom.osm osm test - 72567119 + 3B59CC0D extra_files/extra-mf-unvented-crawlspace-left-bottom.xml xml test - 16ABA66D + B67220D3 extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.osm osm test - 208B7F48 + 9D9ABEB7 extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.xml xml test - 60B13281 + B4A02CFB extra_files/extra-mf-unvented-crawlspace-left-middle.osm osm test - 4B43F2C6 + A779F17B extra_files/extra-mf-unvented-crawlspace-left-middle.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.osm osm test - 723E7FAF + 5DAA34DB extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.xml xml test - 60B13281 + B4A02CFB extra_files/extra-mf-unvented-crawlspace-left-top.osm osm test - 3BB395F5 + 58649F06 extra_files/extra-mf-unvented-crawlspace-left-top.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.osm osm test - 31AE05B5 + ECCC04EC extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.xml xml test - 5F6762DE + A827AD96 extra_files/extra-mf-unvented-crawlspace-middle-bottom.osm osm test - 9FD6A5D0 + 6CD5F1E0 extra_files/extra-mf-unvented-crawlspace-middle-bottom.xml xml test - CDE985FA + 75202C1B extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.osm osm test - 8D8EB2A1 + F5C4D5A1 extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-unvented-crawlspace-middle-middle.osm osm test - 690095F6 + E2932493 extra_files/extra-mf-unvented-crawlspace-middle-middle.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.osm osm test - 44089920 + 068E65DB extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-unvented-crawlspace-middle-top.osm osm test - 896B4666 + 6EB88F53 extra_files/extra-mf-unvented-crawlspace-middle-top.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-unvented-crawlspace-rear-units.osm osm test - ADAC7345 + 6210634C extra_files/extra-mf-unvented-crawlspace-rear-units.xml xml test - D256CC5F + 7F3955CE extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.osm osm test - D305F061 + 1884D1C4 extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.xml xml test - 5F6762DE + A827AD96 extra_files/extra-mf-unvented-crawlspace-right-bottom.osm osm test - 28D7253A + 4E5ED9D2 extra_files/extra-mf-unvented-crawlspace-right-bottom.xml xml test - CDE985FA + 75202C1B extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.osm osm test - 18FDBD8F + 6C2E6372 extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-unvented-crawlspace-right-middle.osm osm test - 7899F841 + 2817CA92 extra_files/extra-mf-unvented-crawlspace-right-middle.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.osm osm test - E60F5FB6 + 13ECB6C2 extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-unvented-crawlspace-right-top.osm osm test - BC30C1DA + F97D0B1B extra_files/extra-mf-unvented-crawlspace-right-top.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-unvented-crawlspace.osm osm test - F6A093F0 + F175885F extra_files/extra-mf-unvented-crawlspace.xml xml test - 16ABA66D + B67220D3 extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.osm osm test - A4DF6062 + 940937D5 extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.xml xml test - A21B42DD + C8EBF017 extra_files/extra-mf-vented-crawlspace-left-bottom.osm osm test - 6AA9D510 + DBF037BD extra_files/extra-mf-vented-crawlspace-left-bottom.xml xml test - 2597EC51 + 98E4820C extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.osm osm test - 69F687F3 + F603D0D2 extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.xml xml test - 60B13281 + B4A02CFB extra_files/extra-mf-vented-crawlspace-left-middle.osm osm test - CD0DE226 + B5E14FA8 extra_files/extra-mf-vented-crawlspace-left-middle.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-vented-crawlspace-left-top-rear-units.osm osm test - 18FB03FA + 2263DFFC extra_files/extra-mf-vented-crawlspace-left-top-rear-units.xml xml test - 60B13281 + B4A02CFB extra_files/extra-mf-vented-crawlspace-left-top.osm osm test - 59B1EDC9 + 32547EE7 extra_files/extra-mf-vented-crawlspace-left-top.xml xml test - D9D0C362 + 5A3162FF extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.osm osm test - 9633E97D + 792E4AF6 extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.xml xml test - C40133FA + 7DA6470B extra_files/extra-mf-vented-crawlspace-middle-bottom.osm osm test - EE5B8A95 + 5A1F1B00 extra_files/extra-mf-vented-crawlspace-middle-bottom.xml xml test - 145576E8 + 0D07481F extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.osm osm test - 64AA6A1B + A9F3E207 extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-vented-crawlspace-middle-middle.osm osm test - 1894394F + 0D284524 extra_files/extra-mf-vented-crawlspace-middle-middle.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.osm osm test - 2BFD57F5 + A740EA87 extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-vented-crawlspace-middle-top.osm osm test - 47D6A1AC + 290BE5CC extra_files/extra-mf-vented-crawlspace-middle-top.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-vented-crawlspace-rear-units.osm osm test - 6CF1685C + 726BEB7A extra_files/extra-mf-vented-crawlspace-rear-units.xml xml test - A21B42DD + C8EBF017 extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.osm osm test - B15EEA71 + 4EB8C631 extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.xml xml test - C40133FA + 7DA6470B extra_files/extra-mf-vented-crawlspace-right-bottom.osm osm test - A1AAA9DF + 91E84F3B extra_files/extra-mf-vented-crawlspace-right-bottom.xml xml test - 145576E8 + 0D07481F extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.osm osm test - 674CF404 + B9D11EFF extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-vented-crawlspace-right-middle.osm osm test - E21053B8 + D64E6F75 extra_files/extra-mf-vented-crawlspace-right-middle.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-vented-crawlspace-right-top-rear-units.osm osm test - EB8A1A17 + 4688623E extra_files/extra-mf-vented-crawlspace-right-top-rear-units.xml xml test - F6F665D8 + F3168BEC extra_files/extra-mf-vented-crawlspace-right-top.osm osm test - 7480EE78 + 037BC87E extra_files/extra-mf-vented-crawlspace-right-top.xml xml test - 71E6D44E + 66AA7E1C extra_files/extra-mf-vented-crawlspace.osm osm test - 16D46105 + 3490C55E extra_files/extra-mf-vented-crawlspace.xml xml test - 2597EC51 + 98E4820C extra_files/extra-no-rim-joists.osm osm test - 616FF867 + 736045E0 extra_files/extra-no-rim-joists.xml xml test - 965E0D3D + 7E616258 extra_files/extra-pv-roofpitch.osm osm test - 9489D75E + BBB3CDB2 extra_files/extra-pv-roofpitch.xml xml test - F6999140 + B4DA5D01 extra_files/extra-seasons-building-america.osm osm test - C795734D + B53017C1 extra_files/extra-seasons-building-america.xml xml test - C1E40019 + 83A7CC58 extra_files/extra-second-heating-system-boiler-to-heat-pump.osm osm test - 7A23BD14 + 5905368F extra_files/extra-second-heating-system-boiler-to-heat-pump.xml xml test - D40B0729 + 1A0C858B extra_files/extra-second-heating-system-boiler-to-heating-system.osm osm test - 907D92C7 + 31A3F236 extra_files/extra-second-heating-system-boiler-to-heating-system.xml xml test - 401E1EF6 + A0D2A393 extra_files/extra-second-heating-system-fireplace-to-heat-pump.osm osm test - A123EB19 + 58EA8A69 extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml xml test - 5CBD1D59 + 4E1BF9BD extra_files/extra-second-heating-system-fireplace-to-heating-system.osm osm test - 8C4041F1 + 5F36F172 extra_files/extra-second-heating-system-fireplace-to-heating-system.xml xml test - B6796D76 + A0EDC722 extra_files/extra-second-heating-system-portable-heater-to-heat-pump.osm osm test - 07B50223 + FD026756 extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml xml test - 3259706F + 0D75280A extra_files/extra-second-heating-system-portable-heater-to-heating-system.osm osm test - 94710DFB + 4E27458D extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml xml test - F47818CB + 1D992A02 extra_files/extra-second-refrigerator.osm osm test - 0719BFEF + 8DE0FC68 extra_files/extra-second-refrigerator.xml xml test - F6999140 + B4DA5D01 extra_files/extra-sfa-ambient.osm osm test - F98DE056 + 7502A4B6 extra_files/extra-sfa-ambient.xml xml test - D43626F1 + 35AA1608 extra_files/extra-sfa-atticroof-conditioned-eaves-gable.osm osm test - A3685A53 + F91F5A55 extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml xml test - 9A0BD3F2 + 83FB2F03 extra_files/extra-sfa-atticroof-conditioned-eaves-hip.osm osm test - D8B1B542 + 9B14536E extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml xml test - E40AD01A + 768623E0 extra_files/extra-sfa-atticroof-flat.osm osm test - E4F0418F + 6F8201C1 extra_files/extra-sfa-atticroof-flat.xml xml test - C90B6266 + B50C0FF5 extra_files/extra-sfa-conditioned-crawlspace.osm osm test - 26256EE5 + 1DB7716A extra_files/extra-sfa-conditioned-crawlspace.xml xml test - EA81F0A1 + 3A8FFAE8 extra_files/extra-sfa-exterior-corridor.osm osm test - BA5454F6 + 756EF4D5 extra_files/extra-sfa-exterior-corridor.xml xml test - 3D5B2006 + 2C6F731A extra_files/extra-sfa-rear-units.osm osm test - 36741B71 + B30FD376 extra_files/extra-sfa-rear-units.xml xml test - 3D5B2006 + 2C6F731A extra_files/extra-sfa-slab-middle.osm osm test - F88A4307 + 8BEEC66F extra_files/extra-sfa-slab-middle.xml xml test - 7CE3AFA5 + A0F77DE5 extra_files/extra-sfa-slab-right.osm osm test - F48B3E43 + 3634EFF8 extra_files/extra-sfa-slab-right.xml xml test - 7CE3AFA5 + A0F77DE5 extra_files/extra-sfa-slab.osm osm test - 189A4405 + 02FBFA7C extra_files/extra-sfa-slab.xml xml test - C78CBE22 + C1A665A0 extra_files/extra-sfa-unconditioned-basement-middle.osm osm test - D8A1A8D1 + 1FFA2F85 extra_files/extra-sfa-unconditioned-basement-middle.xml xml test - F2F3AC7E + F38F5E29 extra_files/extra-sfa-unconditioned-basement-right.osm osm test - 233AAE16 + 13D566E7 extra_files/extra-sfa-unconditioned-basement-right.xml xml test - F2F3AC7E + F38F5E29 extra_files/extra-sfa-unconditioned-basement.osm osm test - 1F889945 + C9599AFE extra_files/extra-sfa-unconditioned-basement.xml xml test - 62860C68 + BCB97E3E extra_files/extra-sfa-unvented-crawlspace-middle.osm osm test - DD3DCFBC + 7076106E extra_files/extra-sfa-unvented-crawlspace-middle.xml xml test - DF2D5F3C + 768CE328 extra_files/extra-sfa-unvented-crawlspace-right.osm osm test - F9BF6075 + 11AFE345 extra_files/extra-sfa-unvented-crawlspace-right.xml xml test - DF2D5F3C + 768CE328 extra_files/extra-sfa-unvented-crawlspace.osm osm test - 70EE9F67 + 7CC3AD20 extra_files/extra-sfa-unvented-crawlspace.xml xml test - EA9EF2E6 + 1DC0CB4B extra_files/extra-sfa-vented-crawlspace-middle.osm osm test - 89BE1CA5 + D6DE0C1D extra_files/extra-sfa-vented-crawlspace-middle.xml xml test - F7E2BD9C + 7BDC9301 extra_files/extra-sfa-vented-crawlspace-right.osm osm test - B7EEC00E + 437A45AB extra_files/extra-sfa-vented-crawlspace-right.xml xml test - F7E2BD9C + 7BDC9301 extra_files/extra-sfa-vented-crawlspace.osm osm test - A40AA995 + 7353C11E extra_files/extra-sfa-vented-crawlspace.xml xml test - D5E96577 + 4B50C8B2 extra_files/extra-state-code-different-than-epw.osm osm test - AA83A242 + 49C3C11B extra_files/extra-state-code-different-than-epw.xml xml test - 4E351F9A + 526A1030 extra_files/extra-time-zone-different-than-epw.osm osm test - F27429AA + 30C2CB97 extra_files/extra-time-zone-different-than-epw.xml xml test - 1CDA2401 + B2723248 extra_files/extra-water-heater-attic.osm osm test - 50F9C3CD + 83559FB9 extra_files/extra-water-heater-attic.xml xml test - D37BE40E + 2BE08808 extra_files/extra-water-heater-crawlspace.osm osm test - A6593123 + 9FFEF814 extra_files/extra-water-heater-crawlspace.xml xml test - A46113BC - - - extra_files/warning-conditioned-attic-with-floor-insulation.osm - osm - test - 34CE7BD3 - - - extra_files/warning-conditioned-attic-with-floor-insulation.xml - xml - test - 28AEC9B5 - - - extra_files/warning-conditioned-basement-with-ceiling-insulation.osm - osm - test - 6EAC1B66 - - - extra_files/warning-conditioned-basement-with-ceiling-insulation.xml - xml - test - F6999140 - - - extra_files/warning-mf-bottom-slab-non-zero-foundation-height.osm - osm - test - 08793854 - - - extra_files/warning-mf-bottom-slab-non-zero-foundation-height.xml - xml - test - 0405C24C - - - extra_files/warning-non-electric-heat-pump-water-heater.osm - osm - test - 3FF7A173 - - - extra_files/warning-non-electric-heat-pump-water-heater.xml - xml - test - A47167E4 - - - extra_files/warning-sfd-slab-non-zero-foundation-height.osm - osm - test - 4F5F0CF2 - - - extra_files/warning-sfd-slab-non-zero-foundation-height.xml - xml - test - BD8AF863 - - - extra_files/warning-slab-non-zero-foundation-height-above-grade.osm - osm - test - 9D500078 - - - extra_files/warning-slab-non-zero-foundation-height-above-grade.xml - xml - test - BD8AF863 - - - extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.osm - osm - test - 2313D3FF - - - extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml - xml - test - 12D79C35 - - - extra_files/warning-unvented-attic-with-floor-and-roof-insulation.osm - osm - test - 51BD31F6 - - - extra_files/warning-unvented-attic-with-floor-and-roof-insulation.xml - xml - test - DA47371D - - - extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.osm - osm - test - EBF9AC5F - - - extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml - xml - test - F096C9B4 - - - extra_files/warning-vented-attic-with-floor-and-roof-insulation.osm - osm - test - 37BCB893 - - - extra_files/warning-vented-attic-with-floor-and-roof-insulation.xml - xml - test - E50EC187 - - - extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.osm - osm - test - 3E996AFD - - - extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml - xml - test - 66E54CB2 + F1DDA46A diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index cbed450ca1..1cbbb58b78 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -33,6 +33,8 @@ def test_workflows 'base-mf3.xml' => 'base-mf.xml', 'base-mf4.xml' => 'base-mf.xml', + 'base-sfd-header.xml' => 'base-sfd.xml', + # Extra files to test 'extra-auto.xml' => 'base-sfd.xml', 'extra-auto-duct-locations.xml' => 'extra-auto.xml', @@ -198,9 +200,10 @@ def test_workflows 'error-garage-too-wide.xml' => 'base-sfd.xml', 'error-garage-too-deep.xml' => 'base-sfd.xml', 'error-vented-attic-with-zero-floor-insulation.xml' => 'base-sfd.xml', - 'error-different-weather-station-epw.xml' => 'base-sfd.xml', - 'error-different-window-natvent-availability.xml' => 'base-sfd.xml', - 'error-same-utility-bill-scenario-name.xml' => 'base-sfd.xml', + 'error-different-software-program.xml' => 'base-sfd-header.xml', + 'error-different-simulation-control.xml' => 'base-sfd-header.xml', + 'error-same-emissions-scenario-name.xml' => 'base-sfd-header.xml', + 'error-same-utility-bill-scenario-name.xml' => 'base-sfd-header.xml', 'warning-non-electric-heat-pump-water-heater.xml' => 'base-sfd.xml', 'warning-sfd-slab-non-zero-foundation-height.xml' => 'base-sfd.xml', @@ -216,63 +219,68 @@ def test_workflows } expected_errors = { - 'error-heating-system-and-heat-pump.xml' => 'Multiple central heating systems are not currently supported.', - 'error-cooling-system-and-heat-pump.xml' => 'Multiple central cooling systems are not currently supported.', - 'error-sfd-conditioned-basement-zero-foundation-height.xml' => "Foundation type of 'ConditionedBasement' cannot have a height of zero.", - 'error-sfd-adiabatic-walls.xml' => 'No adiabatic surfaces can be applied to single-family detached homes.', - 'error-mf-conditioned-basement' => 'Conditioned basement/crawlspace foundation type for apartment units is not currently supported.', - 'error-mf-conditioned-crawlspace' => 'Conditioned basement/crawlspace foundation type for apartment units is not currently supported.', - 'error-mf-bottom-crawlspace-zero-foundation-height.xml' => "Foundation type of 'UnventedCrawlspace' cannot have a height of zero.", - 'error-second-heating-system-but-no-primary-heating.xml' => 'A second heating system was specified without a primary heating system.', - 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' => "A ducted heat pump with 'separate' ducted backup is not supported.", - 'error-sfa-no-building-num-units.xml' => 'Did not specify the number of units in the building for single-family attached or apartment units.', - 'error-sfa-above-apartment.xml' => 'Single-family attached units cannot be above another unit.', - 'error-sfa-below-apartment.xml' => 'Single-family attached units cannot be below another unit.', - 'error-sfa-all-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.', - 'error-mf-no-building-num-units.xml' => 'Did not specify the number of units in the building for single-family attached or apartment units.', - 'error-mf-all-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.', - 'error-mf-two-stories.xml' => 'Apartment units can only have one above-grade floor.', - 'error-mf-conditioned-attic.xml' => 'Conditioned attic type for apartment units is not currently supported.', - 'error-dhw-indirect-without-boiler.xml' => 'Must specify a boiler when modeling an indirect water heater type.', - 'error-conditioned-attic-with-one-floor-above-grade.xml' => 'Units with a conditioned attic must have at least two above-grade floors.', - 'error-zero-number-of-bedrooms.xml' => 'Number of bedrooms must be greater than zero.', - 'error-sfd-with-shared-system.xml' => 'Specified a shared system for a single-family detached unit.', - 'error-rim-joist-height-but-no-assembly-r.xml' => 'Specified a rim joist height but no rim joist assembly R-value.', - 'error-rim-joist-assembly-r-but-no-height.xml' => 'Specified a rim joist assembly R-value but no rim joist height.', - 'error-emissions-args-not-all-specified.xml' => 'Did not specify all required emissions arguments.', - 'error-emissions-args-not-all-same-size.xml' => 'One or more emissions arguments does not have enough comma-separated elements specified.', - 'error-emissions-natural-gas-args-not-all-specified.xml' => 'Did not specify fossil fuel emissions units for natural gas emissions values.', - 'error-bills-args-not-all-same-size.xml' => 'One or more utility bill arguments does not have enough comma-separated elements specified.', - 'error-invalid-aspect-ratio.xml' => 'Aspect ratio must be greater than zero.', - 'error-negative-foundation-height.xml' => 'Foundation height cannot be negative.', - 'error-too-many-floors.xml' => 'Number of above-grade floors must be six or less.', - 'error-invalid-garage-protrusion.xml' => 'Garage protrusion fraction must be between zero and one.', - 'error-sfa-no-non-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.', - 'error-hip-roof-and-protruding-garage.xml' => 'Cannot handle protruding garage and hip roof.', - 'error-protruding-garage-under-gable-roof.xml' => 'Cannot handle protruding garage and attic ridge running from front to back.', - 'error-ambient-with-garage.xml' => 'Cannot handle garages with an ambient foundation type.', - 'error-invalid-door-area.xml' => 'Door area cannot be negative.', - 'error-invalid-window-aspect-ratio.xml' => 'Window aspect ratio must be greater than zero.', - 'error-garage-too-wide.xml' => 'Garage is as wide as the single-family detached unit.', - 'error-garage-too-deep.xml' => 'Garage is as deep as the single-family detached unit.', - 'error-vented-attic-with-zero-floor-insulation.xml' => "Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'.", - 'error-different-weather-station-epw.xml' => 'MyBuilding: hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath=USA_CO_Denver.Intl.AP.725650_TMY3.epw; cannot set weather_station_epw_filepath=USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw.', - 'error-different-window-natvent-availability.xml' => 'hpxml.header.natvent_days_per_week=3; cannot set window_natvent_availability=4.', - 'error-same-utility-bill-scenario-name.xml' => "HPXML header already includes utility bill scenario 'Bills'." + 'error-heating-system-and-heat-pump.xml' => ['Multiple central heating systems are not currently supported.'], + 'error-cooling-system-and-heat-pump.xml' => ['Multiple central cooling systems are not currently supported.'], + 'error-sfd-conditioned-basement-zero-foundation-height.xml' => ["Foundation type of 'ConditionedBasement' cannot have a height of zero."], + 'error-sfd-adiabatic-walls.xml' => ['No adiabatic surfaces can be applied to single-family detached homes.'], + 'error-mf-conditioned-basement' => ['Conditioned basement/crawlspace foundation type for apartment units is not currently supported.'], + 'error-mf-conditioned-crawlspace' => ['Conditioned basement/crawlspace foundation type for apartment units is not currently supported.'], + 'error-mf-bottom-crawlspace-zero-foundation-height.xml' => ["Foundation type of 'UnventedCrawlspace' cannot have a height of zero."], + 'error-second-heating-system-but-no-primary-heating.xml' => ['A second heating system was specified without a primary heating system.'], + 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' => ["A ducted heat pump with 'separate' ducted backup is not supported."], + 'error-sfa-no-building-num-units.xml' => ['Did not specify the number of units in the building for single-family attached or apartment units.'], + 'error-sfa-above-apartment.xml' => ['Single-family attached units cannot be above another unit.'], + 'error-sfa-below-apartment.xml' => ['Single-family attached units cannot be below another unit.'], + 'error-sfa-all-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'], + 'error-mf-no-building-num-units.xml' => ['Did not specify the number of units in the building for single-family attached or apartment units.'], + 'error-mf-all-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'], + 'error-mf-two-stories.xml' => ['Apartment units can only have one above-grade floor.'], + 'error-mf-conditioned-attic.xml' => ['Conditioned attic type for apartment units is not currently supported.'], + 'error-dhw-indirect-without-boiler.xml' => ['Must specify a boiler when modeling an indirect water heater type.'], + 'error-conditioned-attic-with-one-floor-above-grade.xml' => ['Units with a conditioned attic must have at least two above-grade floors.'], + 'error-zero-number-of-bedrooms.xml' => ['Number of bedrooms must be greater than zero.'], + 'error-sfd-with-shared-system.xml' => ['Specified a shared system for a single-family detached unit.'], + 'error-rim-joist-height-but-no-assembly-r.xml' => ['Specified a rim joist height but no rim joist assembly R-value.'], + 'error-rim-joist-assembly-r-but-no-height.xml' => ['Specified a rim joist assembly R-value but no rim joist height.'], + 'error-emissions-args-not-all-specified.xml' => ['Did not specify all required emissions arguments.'], + 'error-emissions-args-not-all-same-size.xml' => ['One or more emissions arguments does not have enough comma-separated elements specified.'], + 'error-emissions-natural-gas-args-not-all-specified.xml' => ['Did not specify fossil fuel emissions units for natural gas emissions values.'], + 'error-bills-args-not-all-same-size.xml' => ['One or more utility bill arguments does not have enough comma-separated elements specified.'], + 'error-invalid-aspect-ratio.xml' => ['Aspect ratio must be greater than zero.'], + 'error-negative-foundation-height.xml' => ['Foundation height cannot be negative.'], + 'error-too-many-floors.xml' => ['Number of above-grade floors must be six or less.'], + 'error-invalid-garage-protrusion.xml' => ['Garage protrusion fraction must be between zero and one.'], + 'error-sfa-no-non-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'], + 'error-hip-roof-and-protruding-garage.xml' => ['Cannot handle protruding garage and hip roof.'], + 'error-protruding-garage-under-gable-roof.xml' => ['Cannot handle protruding garage and attic ridge running from front to back.'], + 'error-ambient-with-garage.xml' => ['Cannot handle garages with an ambient foundation type.'], + 'error-invalid-door-area.xml' => ['Door area cannot be negative.'], + 'error-invalid-window-aspect-ratio.xml' => ['Window aspect ratio must be greater than zero.'], + 'error-garage-too-wide.xml' => ['Garage is as wide as the single-family detached unit.'], + 'error-garage-too-deep.xml' => ['Garage is as deep as the single-family detached unit.'], + 'error-vented-attic-with-zero-floor-insulation.xml' => ["Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'."], + 'error-different-software-program.xml' => ['hpxml.header.software_program_used=Program; cannot set software_info_program_used=Program2.', + 'hpxml.header.software_program_version=1; cannot set software_info_program_version=2.'], + 'error-different-simulation-control.xml' => ['hpxml.header.timestep=60; cannot set simulation_control_timestep=10.', + 'hpxml.header.sim_begin_month=1, hpxml.header.sim_begin_day=1, hpxml.header.sim_end_month=12, hpxml.header.sim_end_day=31; cannot set simulation_control_run_period=Jan 2 - Dec 30.', + 'hpxml.header.sim_calendar_year=2007; cannot set simulation_control_run_period_calendar_year=2008.', + 'hpxml.header.temperature_capacitance_multiplier=1.0; cannot set simulation_control_temperature_capacitance_multiplier=2.0.'], + 'error-same-emissions-scenario-name.xml' => ["HPXML header already includes an emissions scenario named 'Emissions'."], + 'error-same-utility-bill-scenario-name.xml' => ["HPXML header already includes a utility bill scenario named 'Bills'."] } expected_warnings = { - 'warning-non-electric-heat-pump-water-heater.xml' => 'Cannot model a heat pump water heater with non-electric fuel type.', - 'warning-sfd-slab-non-zero-foundation-height.xml' => "Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero.", - 'warning-mf-bottom-slab-non-zero-foundation-height.xml' => "Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero.", - 'warning-slab-non-zero-foundation-height-above-grade.xml' => 'Specified a slab foundation type with a non-zero height above grade.', - 'warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.', - 'warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.', - 'warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.', - 'warning-vented-attic-with-floor-and-roof-insulation.xml' => 'Home with unconditioned attic type has both ceiling insulation and roof insulation.', - 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => 'Home with unconditioned attic type has both ceiling insulation and roof insulation.', - 'warning-conditioned-basement-with-ceiling-insulation.xml' => 'Home with conditioned basement has floor insulation.', - 'warning-conditioned-attic-with-floor-insulation.xml' => 'Home with conditioned attic has ceiling insulation.', + 'warning-non-electric-heat-pump-water-heater.xml' => ['Cannot model a heat pump water heater with non-electric fuel type.'], + 'warning-sfd-slab-non-zero-foundation-height.xml' => ["Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero."], + 'warning-mf-bottom-slab-non-zero-foundation-height.xml' => ["Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero."], + 'warning-slab-non-zero-foundation-height-above-grade.xml' => ['Specified a slab foundation type with a non-zero height above grade.'], + 'warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'], + 'warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'], + 'warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'], + 'warning-vented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'], + 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'], + 'warning-conditioned-basement-with-ceiling-insulation.xml' => ['Home with conditioned basement has floor insulation.'], + 'warning-conditioned-attic-with-floor-insulation.xml' => ['Home with conditioned attic has ceiling insulation.'] } schema_path = File.join(File.dirname(__FILE__), '../..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd') @@ -634,10 +642,8 @@ def _set_measure_argument_values(hpxml_file, args) args['pool_heater_type'] = HPXML::HeaterTypeElectricResistance args['hot_tub_present'] = false args['hot_tub_heater_type'] = HPXML::HeaterTypeElectricResistance - args['utility_bill_scenario_names'] = 'Bills' elsif ['base-sfd2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') - args['utility_bill_scenario_names'] = 'Bills2' elsif ['base-sfa.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeSFA args['geometry_unit_cfa'] = 1800.0 @@ -654,10 +660,8 @@ def _set_measure_argument_values(hpxml_file, args) args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-sfa2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml') - args['utility_bill_scenario_names'] = 'Bills2' elsif ['base-sfa3.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml') - args['utility_bill_scenario_names'] = 'Bills3' elsif ['base-mf.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeApartment args['geometry_unit_cfa'] = 900.0 @@ -685,13 +689,21 @@ def _set_measure_argument_values(hpxml_file, args) args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal elsif ['base-mf2.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml') - args['utility_bill_scenario_names'] = 'Bills2' elsif ['base-mf3.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml') - args['utility_bill_scenario_names'] = 'Bills3' elsif ['base-mf4.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml') - args['utility_bill_scenario_names'] = 'Bills4' + elsif ['base-sfd-header.xml'].include? hpxml_file + args['software_info_program_used'] = 'Program' + args['software_info_program_version'] = '1' + args['simulation_control_run_period'] = 'Jan 1 - Dec 31' + args['simulation_control_run_period_calendar_year'] = 2007 + args['simulation_control_temperature_capacitance_multiplier'] = 1.0 + args['emissions_scenario_names'] = 'Emissions' + args['emissions_types'] = 'CO2e' + args['emissions_electricity_units'] = 'kg/MWh' + args['emissions_electricity_values_or_filepaths'] = '1' + args['utility_bill_scenario_names'] = 'Bills' end # Extras @@ -1176,15 +1188,26 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_garage_depth'] = 40 elsif ['error-vented-attic-with-zero-floor-insulation.xml'].include? hpxml_file args['ceiling_assembly_r'] = 0 - elsif ['error-different-weather-station-epw.xml'].include? hpxml_file - args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') - args['weather_station_epw_filepath'] = 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw' - elsif ['error-different-window-natvent-availability.xml'].include? hpxml_file - args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') - args['window_natvent_availability'] = 4 + elsif ['error-different-software-program.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['software_info_program_used'] = 'Program2' + args['software_info_program_version'] = '2' + args['emissions_scenario_names'] = 'Emissions2' + args['utility_bill_scenario_names'] = 'Bills2' + elsif ['error-different-simulation-control.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['simulation_control_timestep'] = 10 + args['simulation_control_run_period'] = 'Jan 2 - Dec 30' + args['simulation_control_run_period_calendar_year'] = 2008 + args['simulation_control_temperature_capacitance_multiplier'] = 2.0 + args['emissions_scenario_names'] = 'Emissions2' + args['utility_bill_scenario_names'] = 'Bills2' + elsif ['error-same-emissions-scenario-name.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['utility_bill_scenario_names'] = 'Bills2' elsif ['error-same-utility-bill-scenario-name.xml'].include? hpxml_file - args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') - args['utility_bill_scenario_names'] = 'Bills' + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['emissions_scenario_names'] = 'Emissions2' end # Warning @@ -1238,23 +1261,27 @@ def _set_measure_argument_values(hpxml_file, args) end end - def _test_measure(runner, expected_error, expected_warning) + def _test_measure(runner, expected_errors, expected_warnings) # check warnings/errors - if not expected_error.nil? - if runner.result.stepErrors.select { |s| s.include?(expected_error) }.size <= 0 - runner.result.stepErrors.each do |s| - puts "ERROR: #{s}" + if not expected_errors.nil? + expected_errors.each do |expected_error| + if runner.result.stepErrors.select { |s| s.include?(expected_error) }.size <= 0 + runner.result.stepErrors.each do |s| + puts "ERROR: #{s}" + end end + assert(runner.result.stepErrors.select { |s| s.include?(expected_error) }.size > 0) end - assert(runner.result.stepErrors.select { |s| s.include?(expected_error) }.size > 0) end - if not expected_warning.nil? - if runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size <= 0 - runner.result.stepWarnings.each do |s| - puts "WARNING: #{s}" + if not expected_warnings.nil? + expected_warnings.each do |expected_warning| + if runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size <= 0 + runner.result.stepWarnings.each do |s| + puts "WARNING: #{s}" + end end + assert(runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size > 0) end - assert(runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size > 0) end end end From 6bee34ee7c33cc9c97e4bb200e5fd0f33471c3d7 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 27 Sep 2023 11:37:01 -0700 Subject: [PATCH 27/33] Possible merge conflict in tasks.rb. --- tasks.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks.rb b/tasks.rb index ee3c9b7c8c..0532b9cb1c 100644 --- a/tasks.rb +++ b/tasks.rb @@ -218,6 +218,7 @@ def apply_hpxml_modification_ashrae_140(hpxml) def apply_hpxml_modification(hpxml_file, hpxml) # Set detailed HPXML values for sample files + hpxml_bldg = hpxml.buildings[0] # ------------ # # HPXML Header # From 7f6a43b6e9a1a464cf3e9ae2d60a5e4b889ff4b6 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 27 Sep 2023 14:49:28 -0700 Subject: [PATCH 28/33] Update logic for catching header issues. --- BuildResidentialHPXML/measure.rb | 103 +- BuildResidentialHPXML/measure.xml | 1076 +---------------- .../tests/build_residential_hpxml_test.rb | 10 +- 3 files changed, 166 insertions(+), 1023 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 03a35cddc8..f2cea89583 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3568,6 +3568,25 @@ def self.create_geometry_envelope(runner, model, args) return true end + def self.unavailable_period_exists(hpxml, column_name, begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability = nil) + hpxml.header.unavailable_periods.each do |unavailable_period| + begin_hour = 0 if begin_hour.nil? + end_hour = 24 if end_hour.nil? + + next unless (unavailable_period.column_name == column_name) && + (unavailable_period.begin_month == begin_month) && + (unavailable_period.begin_day == begin_day) && + (unavailable_period.begin_hour == begin_hour) && + (unavailable_period.end_month == end_month) && + (unavailable_period.end_day == end_day) && + (unavailable_period.end_hour == end_hour) + if unavailable_period.natvent_availability == natvent_availability + return true + end + end + return false + end + def self.set_header(runner, hpxml, args) errors = [] @@ -3577,7 +3596,12 @@ def self.set_header(runner, hpxml, args) if args[:schedules_vacancy_period].is_initialized begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_vacancy_period].get) - hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: HPXML::ScheduleUnavailable) + + natvent_availability = HPXML::ScheduleUnavailable + + if not unavailable_period_exists(hpxml, 'Vacancy', begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability) + hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability) + end end if args[:schedules_power_outage_period].is_initialized begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_power_outage_period].get) @@ -3586,7 +3610,9 @@ def self.set_header(runner, hpxml, args) natvent_availability = args[:schedules_power_outage_window_natvent_availability].get end - hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability) + if not unavailable_period_exists(hpxml, 'Power Outage', begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability) + hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability) + end end if args[:software_info_program_used].is_initialized @@ -3637,7 +3663,6 @@ def self.set_header(runner, hpxml, args) hpxml.header.temperature_capacitance_multiplier = args[:simulation_control_temperature_capacitance_multiplier].get end - existing_emissions_scenario_names = hpxml.header.emissions_scenarios.collect { |emissions_scenario| emissions_scenario.name } if args[:emissions_scenario_names].is_initialized emissions_scenario_names = args[:emissions_scenario_names].get.split(',').map(&:strip) emissions_types = args[:emissions_types].get.split(',').map(&:strip) @@ -3686,10 +3711,6 @@ def self.set_header(runner, hpxml, args) emissions_scenarios.each do |emissions_scenario| name, emissions_type, elec_units, elec_value_or_schedule_filepath, elec_num_headers, elec_column_num, fuel_units, natural_gas_value, propane_value, fuel_oil_value, coal_value, wood_value, wood_pellets_value = emissions_scenario - if existing_emissions_scenario_names.include?(name) - errors << "HPXML header already includes an emissions scenario named '#{name}'." - end - elec_value = Float(elec_value_or_schedule_filepath) rescue nil if elec_value.nil? elec_schedule_filepath = elec_value_or_schedule_filepath @@ -3703,6 +3724,36 @@ def self.set_header(runner, hpxml, args) wood_value = Float(wood_value) rescue nil wood_pellets_value = Float(wood_pellets_value) rescue nil + emissions_scenario_exists = false + hpxml.header.emissions_scenarios.each do |es| + next if es.name != name + + if (!emissions_type.nil? && es.emissions_type != emissions_type) || + (!wood_pellets_value.nil? && es.elec_units != elec_units) || + (!elec_value.nil? && es.elec_value != elec_value) || + (!elec_schedule_filepath.nil? && es.elec_schedule_filepath != elec_schedule_filepath) || + (!elec_num_headers.nil? && es.elec_schedule_number_of_header_rows != elec_num_headers) || + (!elec_column_num.nil? && es.elec_schedule_column_number != elec_column_num) || + (!fuel_units.nil? && es.natural_gas_units != fuel_units) || + (!natural_gas_value.nil? && es.natural_gas_value != natural_gas_value) || + (!fuel_units.nil? && es.propane_units != fuel_units) || + (!propane_value.nil? && es.propane_value != propane_value) || + (!fuel_units.nil? && es.fuel_oil_units != fuel_units) || + (!fuel_oil_value.nil? && es.fuel_oil_value != fuel_oil_value) || + (!fuel_units.nil? && es.coal_units != fuel_units) || + (!coal_value.nil? && es.coal_value != coal_value) || + (!fuel_units.nil? && es.wood_units != fuel_units) || + (!wood_value.nil? && es.wood_value != wood_value) || + (!fuel_units.nil? && es.wood_pellets_units != fuel_units) || + (!wood_pellets_value.nil? && es.wood_pellets_value != wood_pellets_value) + errors << "HPXML header already includes an emissions scenario named '#{name}'." + else + emissions_scenario_exists = true + end + end + + next unless not emissions_scenario_exists + hpxml.header.emissions_scenarios.add(name: name, emissions_type: emissions_type, elec_units: elec_units, @@ -3725,7 +3776,6 @@ def self.set_header(runner, hpxml, args) end end - existing_bill_scenario_names = hpxml.header.utility_bill_scenarios.collect { |bill_scenario| bill_scenario.name } if args[:utility_bill_scenario_names].is_initialized bills_scenario_names = args[:utility_bill_scenario_names].get.split(',').map(&:strip) @@ -3818,10 +3868,6 @@ def self.set_header(runner, hpxml, args) bills_scenarios.each do |bills_scenario| name, elec_tariff_filepath, elec_fixed_charge, natural_gas_fixed_charge, propane_fixed_charge, fuel_oil_fixed_charge, coal_fixed_charge, wood_fixed_charge, wood_pellets_fixed_charge, elec_marginal_rate, natural_gas_marginal_rate, propane_marginal_rate, fuel_oil_marginal_rate, coal_marginal_rate, wood_marginal_rate, wood_pellets_marginal_rate, pv_compensation_type, pv_net_metering_annual_excess_sellback_rate_type, pv_net_metering_annual_excess_sellback_rate, pv_feed_in_tariff_rate, pv_monthly_grid_connection_fee_unit, pv_monthly_grid_connection_fee = bills_scenario - if existing_bill_scenario_names.include?(name) - errors << "HPXML header already includes a utility bill scenario named '#{name}'." - end - elec_tariff_filepath = (elec_tariff_filepath.to_s.include?('.') ? elec_tariff_filepath : nil) elec_fixed_charge = Float(elec_fixed_charge) rescue nil natural_gas_fixed_charge = Float(natural_gas_fixed_charge) rescue nil @@ -3857,6 +3903,39 @@ def self.set_header(runner, hpxml, args) pv_monthly_grid_connection_fee_dollars = Float(pv_monthly_grid_connection_fee) rescue nil end + utility_bill_scenario_exists = false + hpxml.header.utility_bill_scenarios.each do |ubs| + next if ubs.name != name + + if (!elec_tariff_filepath.nil? && ubs.elec_tariff_filepath != elec_tariff_filepath) || + (!elec_fixed_charge.nil? && ubs.elec_fixed_charge != elec_fixed_charge) || + (!natural_gas_fixed_charge.nil? && ubs.natural_gas_fixed_charge != natural_gas_fixed_charge) || + (!propane_fixed_charge.nil? && ubs.propane_fixed_charge != propane_fixed_charge) || + (!fuel_oil_fixed_charge.nil? && ubs.fuel_oil_fixed_charge != fuel_oil_fixed_charge) || + (!coal_fixed_charge.nil? && ubs.coal_fixed_charge != coal_fixed_charge) || + (!wood_fixed_charge.nil? && ubs.wood_fixed_charge != wood_fixed_charge) || + (!wood_pellets_fixed_charge.nil? && ubs.wood_pellets_fixed_charge != wood_pellets_fixed_charge) || + (!elec_marginal_rate.nil? && ubs.elec_marginal_rate != elec_marginal_rate) || + (!natural_gas_marginal_rate.nil? && ubs.natural_gas_marginal_rate != natural_gas_marginal_rate) || + (!propane_marginal_rate.nil? && ubs.propane_marginal_rate != propane_marginal_rate) || + (!fuel_oil_marginal_rate.nil? && ubs.fuel_oil_marginal_rate != fuel_oil_marginal_rate) || + (!coal_marginal_rate.nil? && ubs.coal_marginal_rate != coal_marginal_rate) || + (!wood_marginal_rate.nil? && ubs.wood_marginal_rate != wood_marginal_rate) || + (!wood_pellets_marginal_rate.nil? && ubs.wood_pellets_marginal_rate != wood_pellets_marginal_rate) || + (!pv_compensation_type.nil? && ubs.pv_compensation_type != pv_compensation_type) || + (!pv_net_metering_annual_excess_sellback_rate_type.nil? && ubs.pv_net_metering_annual_excess_sellback_rate_type != pv_net_metering_annual_excess_sellback_rate_type) || + (!pv_net_metering_annual_excess_sellback_rate.nil? && ubs.pv_net_metering_annual_excess_sellback_rate != pv_net_metering_annual_excess_sellback_rate) || + (!pv_feed_in_tariff_rate.nil? && ubs.pv_feed_in_tariff_rate != pv_feed_in_tariff_rate) || + (!pv_monthly_grid_connection_fee_dollars_per_kw.nil? && ubs.pv_monthly_grid_connection_fee_dollars_per_kw != pv_monthly_grid_connection_fee_dollars_per_kw) || + (!pv_monthly_grid_connection_fee_dollars.nil? && ubs.pv_monthly_grid_connection_fee_dollars != pv_monthly_grid_connection_fee_dollars) + errors << "HPXML header already includes a utility bill scenario named '#{name}'." + else + utility_bill_scenario_exists = true + end + end + + next unless not utility_bill_scenario_exists + hpxml.header.utility_bill_scenarios.add(name: name, elec_tariff_filepath: elec_tariff_filepath, elec_fixed_charge: elec_fixed_charge, diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index c85d4eab8d..9a27a64e94 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 85fa69ad-7415-4b19-ac75-f6c4fd15080d - 2023-09-27T17:52:25Z + c50e8c82-3fa0-4805-940b-19f9b99cdb2c + 2023-09-27T21:48:10Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6756,7 +6756,7 @@ measure.rb rb script - 45E839F4 + 6F587783 geometry.rb @@ -6768,13 +6768,7 @@ build_residential_hpxml_test.rb rb test - 4FC11DF2 - - - extra_files/base-mf.osm - osm - test - BD9959E8 + F9A75CF1 extra_files/base-mf.xml @@ -6782,72 +6776,36 @@ test 5A3162FF - - extra_files/base-mf2.osm - osm - test - 82B9A1C8 - extra_files/base-mf2.xml xml test 9D8CCD42 - - extra_files/base-mf3.osm - osm - test - 31599625 - extra_files/base-mf3.xml xml test 2CEAF7F7 - - extra_files/base-mf4.osm - osm - test - 6FA7281D - extra_files/base-mf4.xml xml test ED3D4C32 - - extra_files/base-sfa.osm - osm - test - 346AF8C8 - extra_files/base-sfa.xml xml test 2C6F731A - - extra_files/base-sfa2.osm - osm - test - C2D5CCCD - extra_files/base-sfa2.xml xml test 6041260A - - extra_files/base-sfa3.osm - osm - test - 06774B39 - extra_files/base-sfa3.xml xml @@ -6855,22 +6813,16 @@ 8374ECC9 - extra_files/base-sfd-header.osm - osm + extra_files/base-sfd-header-no-duplicates.xml + xml test - 1DFCB94B + 548CECAA extra_files/base-sfd-header.xml xml test - 0F8B9674 - - - extra_files/base-sfd.osm - osm - test - 957F095D + 5C715601 extra_files/base-sfd.xml @@ -6878,12 +6830,6 @@ test B4DA5D01 - - extra_files/base-sfd2.osm - osm - test - 392060A6 - extra_files/base-sfd2.xml xml @@ -6891,280 +6837,16 @@ 4FBA27DD - extra_files/error-ambient-with-garage.osm - osm - test - 37D281EF - - - extra_files/error-bills-args-not-all-same-size.osm - osm - test - 3E8CE008 - - - extra_files/error-conditioned-attic-with-one-floor-above-grade.osm - osm - test - 7F0FDAF6 - - - extra_files/error-cooling-system-and-heat-pump.osm - osm - test - 64C7DC8A - - - extra_files/error-dhw-indirect-without-boiler.osm - osm - test - 80441CE8 - - - extra_files/error-different-simulation-control.osm - osm - test - 2D3FD3F9 - - - extra_files/error-different-software-program.osm - osm - test - 1675C853 - - - extra_files/error-different-window-natvent-availability.osm - osm - test - 115E6EB6 - - - extra_files/error-different-window-natvent-availability.xml + extra_files/error-same-emissions-scenario-name.xml xml test - 9A40243A - - - extra_files/error-emissions-args-not-all-same-size.osm - osm - test - F9A9F3A7 - - - extra_files/error-emissions-args-not-all-specified.osm - osm - test - 18985C9C - - - extra_files/error-emissions-natural-gas-args-not-all-specified.osm - osm - test - B666B540 - - - extra_files/error-garage-too-deep.osm - osm - test - D6F3BA88 - - - extra_files/error-garage-too-wide.osm - osm - test - 105F81BC - - - extra_files/error-heating-system-and-heat-pump.osm - osm - test - 264C8550 - - - extra_files/error-hip-roof-and-protruding-garage.osm - osm - test - F44F71A9 - - - extra_files/error-invalid-aspect-ratio.osm - osm - test - 7BABA004 - - - extra_files/error-invalid-door-area.osm - osm - test - 5ADF915D - - - extra_files/error-invalid-garage-protrusion.osm - osm - test - 7F6BC492 - - - extra_files/error-invalid-window-aspect-ratio.osm - osm - test - 72915EF4 - - - extra_files/error-mf-all-adiabatic-walls.osm - osm - test - 505C8CDE - - - extra_files/error-mf-bottom-crawlspace-zero-foundation-height.osm - osm - test - E40910C8 - - - extra_files/error-mf-conditioned-attic.osm - osm - test - E871750F - - - extra_files/error-mf-no-building-num-units.osm - osm - test - 7C1EB13C - - - extra_files/error-mf-two-stories.osm - osm - test - 747DD442 - - - extra_files/error-negative-foundation-height.osm - osm - test - ED4FF305 - - - extra_files/error-protruding-garage-under-gable-roof.osm - osm - test - BB1E3FFB - - - extra_files/error-rim-joist-assembly-r-but-no-height.osm - osm - test - 9CD57AB6 - - - extra_files/error-rim-joist-height-but-no-assembly-r.osm - osm - test - F5256245 - - - extra_files/error-same-emissions-scenario-name.osm - osm - test - 72511DF4 - - - extra_files/error-same-utility-bill-scenario-name.osm - osm - test - 04647912 - - - extra_files/error-second-heating-system-but-no-primary-heating.osm - osm - test - 7FAFC960 - - - extra_files/error-second-heating-system-ducted-with-ducted-primary-heating.osm - osm - test - AE580346 - - - extra_files/error-sfa-above-apartment.osm - osm - test - 8647F045 - - - extra_files/error-sfa-all-adiabatic-walls.osm - osm - test - 2C664392 - - - extra_files/error-sfa-below-apartment.osm - osm - test - D08A8E60 - - - extra_files/error-sfa-no-building-num-units.osm - osm - test - C24DB451 - - - extra_files/error-sfa-no-non-adiabatic-walls.osm - osm - test - 123D86E5 - - - extra_files/error-sfd-adiabatic-walls.osm - osm - test - 2D3EBA15 - - - extra_files/error-sfd-conditioned-basement-zero-foundation-height.osm - osm - test - 8869EAB6 - - - extra_files/error-sfd-with-shared-system.osm - osm - test - 2FED2B9C - - - extra_files/error-too-many-floors.osm - osm - test - C6028C04 - - - extra_files/error-vented-attic-with-zero-floor-insulation.osm - osm - test - 540F8CB6 + 5E92034C extra_files/error-vented-attic-with-zero-floor-insulation.xml xml test - E56C3E85 - - - extra_files/error-zero-number-of-bedrooms.osm - osm - test - A4A6B40A - - - extra_files/extra-auto-duct-locations.osm - osm - test - DE27B10F + F21A31E8 extra_files/extra-auto-duct-locations.xml @@ -7172,455 +6854,227 @@ test 25588468 - - extra_files/extra-auto.osm - osm - test - 00EA5669 - extra_files/extra-auto.xml xml test 15C00059 - - extra_files/extra-battery-attic.osm - osm - test - 8631EA8C - extra_files/extra-battery-attic.xml xml test BB1822E2 - - extra_files/extra-battery-crawlspace.osm - osm - test - 1791384E - extra_files/extra-battery-crawlspace.xml xml test 35100B42 - - extra_files/extra-bills-fossil-fuel-rates.osm - osm - test - 7B9A916D - extra_files/extra-bills-fossil-fuel-rates.xml xml test 77F514FB - - extra_files/extra-dhw-solar-latitude.osm - osm - test - AB58350F - extra_files/extra-dhw-solar-latitude.xml xml test F2B3C3D4 - - extra_files/extra-ducts-attic.osm - osm - test - F504571D - extra_files/extra-ducts-attic.xml xml test B4DA5D01 - - extra_files/extra-ducts-crawlspace.osm - osm - test - F1C03B73 - extra_files/extra-ducts-crawlspace.xml xml test A5CE0813 - - extra_files/extra-emissions-fossil-fuel-factors.osm - osm - test - FD12C5D9 - extra_files/extra-emissions-fossil-fuel-factors.xml xml test CAA0B1DC - - extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.osm - osm - test - 0148294A - extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml xml test 534704EA - - extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.osm - osm - test - 687DB8EE - extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml xml test 50150E8C - - extra_files/extra-enclosure-garage-atticroof-conditioned.osm - osm - test - D7D37954 - extra_files/extra-enclosure-garage-atticroof-conditioned.xml xml test 9994CE61 - - extra_files/extra-enclosure-garage-partially-protruded.osm - osm - test - E8DAEAED - extra_files/extra-enclosure-garage-partially-protruded.xml xml test CB68542B - - extra_files/extra-enclosure-windows-shading.osm - osm - test - 560DBCE4 - extra_files/extra-enclosure-windows-shading.xml xml test 1139C3F3 - - extra_files/extra-gas-hot-tub-heater-with-zero-kwh.osm - osm - test - 218CD492 - extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml xml test 197F2C09 - - extra_files/extra-gas-pool-heater-with-zero-kwh.osm - osm - test - 0AC9F259 - extra_files/extra-gas-pool-heater-with-zero-kwh.xml xml test 59D527D2 - - extra_files/extra-iecc-zone-different-than-epw.osm - osm - test - 35778ADB - extra_files/extra-iecc-zone-different-than-epw.xml xml test 4DD3BE32 - - extra_files/extra-mf-ambient.osm - osm - test - 06F3B277 - extra_files/extra-mf-ambient.xml xml test 02CFF8EB - - extra_files/extra-mf-atticroof-flat.osm - osm - test - 615BD5AF - extra_files/extra-mf-atticroof-flat.xml xml test 77F247AE - - extra_files/extra-mf-atticroof-vented.osm - osm - test - B2DA84B6 - extra_files/extra-mf-atticroof-vented.xml xml test 6D3CB8F6 - - extra_files/extra-mf-eaves.osm - osm - test - C785458F - extra_files/extra-mf-eaves.xml xml test 3077906F - - extra_files/extra-mf-exterior-corridor.osm - osm - test - 8A60D2E8 - extra_files/extra-mf-exterior-corridor.xml xml test 5A3162FF - - extra_files/extra-mf-rear-units.osm - osm - test - FA6724EE - extra_files/extra-mf-rear-units.xml xml test 5A3162FF - - extra_files/extra-mf-slab-left-bottom-rear-units.osm - osm - test - 26F01641 - extra_files/extra-mf-slab-left-bottom-rear-units.xml xml test D5B70DC8 - - extra_files/extra-mf-slab-left-bottom.osm - osm - test - BAC14173 - extra_files/extra-mf-slab-left-bottom.xml xml test 3A2F0A60 - - extra_files/extra-mf-slab-left-middle-rear-units.osm - osm - test - BE720DA0 - extra_files/extra-mf-slab-left-middle-rear-units.xml xml test B4A02CFB - - extra_files/extra-mf-slab-left-middle.osm - osm - test - 45A195D7 - extra_files/extra-mf-slab-left-middle.xml xml test 5A3162FF - - extra_files/extra-mf-slab-left-top-rear-units.osm - osm - test - 55C99E1A - extra_files/extra-mf-slab-left-top-rear-units.xml xml test B4A02CFB - - extra_files/extra-mf-slab-left-top.osm - osm - test - EFB82AD9 - extra_files/extra-mf-slab-left-top.xml xml test 5A3162FF - - extra_files/extra-mf-slab-middle-bottom-rear-units.osm - osm - test - 4B4B1236 - extra_files/extra-mf-slab-middle-bottom-rear-units.xml xml test 402F5C58 - - extra_files/extra-mf-slab-middle-bottom.osm - osm - test - D59B9788 - extra_files/extra-mf-slab-middle-bottom.xml xml test 53C18443 - - extra_files/extra-mf-slab-middle-middle-rear-units.osm - osm - test - 91A22D43 - extra_files/extra-mf-slab-middle-middle-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-slab-middle-middle.osm - osm - test - 6E4713CD - extra_files/extra-mf-slab-middle-middle.xml xml test 66AA7E1C - - extra_files/extra-mf-slab-middle-top-rear-units.osm - osm - test - 7764D37A - extra_files/extra-mf-slab-middle-top-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-slab-middle-top.osm - osm - test - DAD520D9 - extra_files/extra-mf-slab-middle-top.xml xml test 66AA7E1C - - extra_files/extra-mf-slab-rear-units.osm - osm - test - 720FFFC9 - extra_files/extra-mf-slab-rear-units.xml xml test D5B70DC8 - - extra_files/extra-mf-slab-right-bottom-rear-units.osm - osm - test - F14552ED - extra_files/extra-mf-slab-right-bottom-rear-units.xml xml test 402F5C58 - - extra_files/extra-mf-slab-right-bottom.osm - osm - test - E7B10BFE - extra_files/extra-mf-slab-right-bottom.xml xml test - 53C18443 - - - extra_files/extra-mf-slab-right-middle-rear-units.osm - osm - test - 748AF34C + 53C18443 extra_files/extra-mf-slab-right-middle-rear-units.xml @@ -7628,804 +7082,402 @@ test F3168BEC - - extra_files/extra-mf-slab-right-middle.osm - osm - test - F8E65F43 - extra_files/extra-mf-slab-right-middle.xml xml test 66AA7E1C - - extra_files/extra-mf-slab-right-top-rear-units.osm - osm - test - 46C75132 - extra_files/extra-mf-slab-right-top-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-slab-right-top.osm - osm - test - 04BBBD09 - extra_files/extra-mf-slab-right-top.xml xml test 66AA7E1C - - extra_files/extra-mf-slab.osm - osm - test - 08F770D6 - extra_files/extra-mf-slab.xml xml test 3A2F0A60 - - extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.osm - osm - test - 00237569 - extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.xml xml test 7F3955CE - - extra_files/extra-mf-unvented-crawlspace-left-bottom.osm - osm - test - 3B59CC0D - extra_files/extra-mf-unvented-crawlspace-left-bottom.xml xml test B67220D3 - - extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.osm - osm - test - 9D9ABEB7 - extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.xml xml test B4A02CFB - - extra_files/extra-mf-unvented-crawlspace-left-middle.osm - osm - test - A779F17B - extra_files/extra-mf-unvented-crawlspace-left-middle.xml xml test 5A3162FF - - extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.osm - osm - test - 5DAA34DB - extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.xml xml test B4A02CFB - - extra_files/extra-mf-unvented-crawlspace-left-top.osm - osm - test - 58649F06 - extra_files/extra-mf-unvented-crawlspace-left-top.xml xml test 5A3162FF - - extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.osm - osm - test - ECCC04EC - extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.xml xml test A827AD96 - - extra_files/extra-mf-unvented-crawlspace-middle-bottom.osm - osm - test - 6CD5F1E0 - extra_files/extra-mf-unvented-crawlspace-middle-bottom.xml xml test 75202C1B - - extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.osm - osm - test - F5C4D5A1 - extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-unvented-crawlspace-middle-middle.osm - osm - test - E2932493 - extra_files/extra-mf-unvented-crawlspace-middle-middle.xml xml test 66AA7E1C - - extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.osm - osm - test - 068E65DB - extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-unvented-crawlspace-middle-top.osm - osm - test - 6EB88F53 - extra_files/extra-mf-unvented-crawlspace-middle-top.xml xml test 66AA7E1C - - extra_files/extra-mf-unvented-crawlspace-rear-units.osm - osm - test - 6210634C - extra_files/extra-mf-unvented-crawlspace-rear-units.xml xml test 7F3955CE - - extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.osm - osm - test - 1884D1C4 - extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.xml xml test A827AD96 - - extra_files/extra-mf-unvented-crawlspace-right-bottom.osm - osm - test - 4E5ED9D2 - extra_files/extra-mf-unvented-crawlspace-right-bottom.xml xml test 75202C1B - - extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.osm - osm - test - 6C2E6372 - extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-unvented-crawlspace-right-middle.osm - osm - test - 2817CA92 - extra_files/extra-mf-unvented-crawlspace-right-middle.xml xml test 66AA7E1C - - extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.osm - osm - test - 13ECB6C2 - extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-unvented-crawlspace-right-top.osm - osm - test - F97D0B1B - extra_files/extra-mf-unvented-crawlspace-right-top.xml xml test 66AA7E1C - - extra_files/extra-mf-unvented-crawlspace.osm - osm - test - F175885F - extra_files/extra-mf-unvented-crawlspace.xml xml test B67220D3 - - extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.osm - osm - test - 940937D5 - extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.xml xml test C8EBF017 - - extra_files/extra-mf-vented-crawlspace-left-bottom.osm - osm - test - DBF037BD - extra_files/extra-mf-vented-crawlspace-left-bottom.xml xml test 98E4820C - - extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.osm - osm - test - F603D0D2 - extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.xml xml test B4A02CFB - - extra_files/extra-mf-vented-crawlspace-left-middle.osm - osm - test - B5E14FA8 - extra_files/extra-mf-vented-crawlspace-left-middle.xml xml test 5A3162FF - - extra_files/extra-mf-vented-crawlspace-left-top-rear-units.osm - osm - test - 2263DFFC - extra_files/extra-mf-vented-crawlspace-left-top-rear-units.xml xml test B4A02CFB - - extra_files/extra-mf-vented-crawlspace-left-top.osm - osm - test - 32547EE7 - extra_files/extra-mf-vented-crawlspace-left-top.xml xml test 5A3162FF - - extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.osm - osm - test - 792E4AF6 - extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.xml xml test 7DA6470B - - extra_files/extra-mf-vented-crawlspace-middle-bottom.osm - osm - test - 5A1F1B00 - extra_files/extra-mf-vented-crawlspace-middle-bottom.xml xml test 0D07481F - - extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.osm - osm - test - A9F3E207 - extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-vented-crawlspace-middle-middle.osm - osm - test - 0D284524 - extra_files/extra-mf-vented-crawlspace-middle-middle.xml xml test 66AA7E1C - - extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.osm - osm - test - A740EA87 - extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-vented-crawlspace-middle-top.osm - osm - test - 290BE5CC - extra_files/extra-mf-vented-crawlspace-middle-top.xml xml test 66AA7E1C - - extra_files/extra-mf-vented-crawlspace-rear-units.osm - osm - test - 726BEB7A - extra_files/extra-mf-vented-crawlspace-rear-units.xml xml test C8EBF017 - - extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.osm - osm - test - 4EB8C631 - extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.xml xml test 7DA6470B - - extra_files/extra-mf-vented-crawlspace-right-bottom.osm - osm - test - 91E84F3B - extra_files/extra-mf-vented-crawlspace-right-bottom.xml xml test 0D07481F - - extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.osm - osm - test - B9D11EFF - extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-vented-crawlspace-right-middle.osm - osm - test - D64E6F75 - extra_files/extra-mf-vented-crawlspace-right-middle.xml xml test 66AA7E1C - - extra_files/extra-mf-vented-crawlspace-right-top-rear-units.osm - osm - test - 4688623E - extra_files/extra-mf-vented-crawlspace-right-top-rear-units.xml xml test F3168BEC - - extra_files/extra-mf-vented-crawlspace-right-top.osm - osm - test - 037BC87E - extra_files/extra-mf-vented-crawlspace-right-top.xml xml test 66AA7E1C - - extra_files/extra-mf-vented-crawlspace.osm - osm - test - 3490C55E - extra_files/extra-mf-vented-crawlspace.xml xml test 98E4820C - - extra_files/extra-no-rim-joists.osm - osm - test - 736045E0 - extra_files/extra-no-rim-joists.xml xml test 7E616258 - - extra_files/extra-pv-roofpitch.osm - osm - test - BBB3CDB2 - extra_files/extra-pv-roofpitch.xml xml test B4DA5D01 - - extra_files/extra-seasons-building-america.osm - osm - test - B53017C1 - extra_files/extra-seasons-building-america.xml xml test 83A7CC58 - - extra_files/extra-second-heating-system-boiler-to-heat-pump.osm - osm - test - 5905368F - extra_files/extra-second-heating-system-boiler-to-heat-pump.xml xml test 1A0C858B - - extra_files/extra-second-heating-system-boiler-to-heating-system.osm - osm - test - 31A3F236 - extra_files/extra-second-heating-system-boiler-to-heating-system.xml xml test A0D2A393 - - extra_files/extra-second-heating-system-fireplace-to-heat-pump.osm - osm - test - 58EA8A69 - extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml xml test 4E1BF9BD - - extra_files/extra-second-heating-system-fireplace-to-heating-system.osm - osm - test - 5F36F172 - extra_files/extra-second-heating-system-fireplace-to-heating-system.xml xml test A0EDC722 - - extra_files/extra-second-heating-system-portable-heater-to-heat-pump.osm - osm - test - FD026756 - extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml xml test 0D75280A - - extra_files/extra-second-heating-system-portable-heater-to-heating-system.osm - osm - test - 4E27458D - extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml xml test 1D992A02 - - extra_files/extra-second-refrigerator.osm - osm - test - 8DE0FC68 - extra_files/extra-second-refrigerator.xml xml test B4DA5D01 - - extra_files/extra-sfa-ambient.osm - osm - test - 7502A4B6 - extra_files/extra-sfa-ambient.xml xml test 35AA1608 - - extra_files/extra-sfa-atticroof-conditioned-eaves-gable.osm - osm - test - F91F5A55 - extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml xml test 83FB2F03 - - extra_files/extra-sfa-atticroof-conditioned-eaves-hip.osm - osm - test - 9B14536E - extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml xml test 768623E0 - - extra_files/extra-sfa-atticroof-flat.osm - osm - test - 6F8201C1 - extra_files/extra-sfa-atticroof-flat.xml xml test B50C0FF5 - - extra_files/extra-sfa-conditioned-crawlspace.osm - osm - test - 1DB7716A - extra_files/extra-sfa-conditioned-crawlspace.xml xml test 3A8FFAE8 - - extra_files/extra-sfa-exterior-corridor.osm - osm - test - 756EF4D5 - extra_files/extra-sfa-exterior-corridor.xml xml test 2C6F731A - - extra_files/extra-sfa-rear-units.osm - osm - test - B30FD376 - extra_files/extra-sfa-rear-units.xml xml test 2C6F731A - - extra_files/extra-sfa-slab-middle.osm - osm - test - 8BEEC66F - extra_files/extra-sfa-slab-middle.xml xml test A0F77DE5 - - extra_files/extra-sfa-slab-right.osm - osm - test - 3634EFF8 - extra_files/extra-sfa-slab-right.xml xml test A0F77DE5 - - extra_files/extra-sfa-slab.osm - osm - test - 02FBFA7C - extra_files/extra-sfa-slab.xml xml test C1A665A0 - - extra_files/extra-sfa-unconditioned-basement-middle.osm - osm - test - 1FFA2F85 - extra_files/extra-sfa-unconditioned-basement-middle.xml xml test F38F5E29 - - extra_files/extra-sfa-unconditioned-basement-right.osm - osm - test - 13D566E7 - extra_files/extra-sfa-unconditioned-basement-right.xml xml test F38F5E29 - - extra_files/extra-sfa-unconditioned-basement.osm - osm - test - C9599AFE - extra_files/extra-sfa-unconditioned-basement.xml xml @@ -8433,124 +7485,130 @@ BCB97E3E - extra_files/extra-sfa-unvented-crawlspace-middle.osm - osm + extra_files/extra-sfa-unvented-crawlspace-middle.xml + xml test - 7076106E + 768CE328 - extra_files/extra-sfa-unvented-crawlspace-middle.xml + extra_files/extra-sfa-unvented-crawlspace-right.xml xml test 768CE328 - extra_files/extra-sfa-unvented-crawlspace-right.osm - osm + extra_files/extra-sfa-unvented-crawlspace.xml + xml test - 11AFE345 + 1DC0CB4B - extra_files/extra-sfa-unvented-crawlspace-right.xml + extra_files/extra-sfa-vented-crawlspace-middle.xml xml test - 768CE328 + 7BDC9301 - extra_files/extra-sfa-unvented-crawlspace.osm - osm + extra_files/extra-sfa-vented-crawlspace-right.xml + xml test - 7CC3AD20 + 7BDC9301 - extra_files/extra-sfa-unvented-crawlspace.xml + extra_files/extra-sfa-vented-crawlspace.xml xml test - 1DC0CB4B + 4B50C8B2 + + + extra_files/extra-state-code-different-than-epw.xml + xml + test + 526A1030 - extra_files/extra-sfa-vented-crawlspace-middle.osm - osm + extra_files/extra-time-zone-different-than-epw.xml + xml test - D6DE0C1D + B2723248 - extra_files/extra-sfa-vented-crawlspace-middle.xml + extra_files/extra-water-heater-attic.xml xml test - 7BDC9301 + 2BE08808 - extra_files/extra-sfa-vented-crawlspace-right.osm - osm + extra_files/extra-water-heater-crawlspace.xml + xml test - 437A45AB + F1DDA46A - extra_files/extra-sfa-vented-crawlspace-right.xml + extra_files/warning-conditioned-attic-with-floor-insulation.xml xml test - 7BDC9301 + CF53D2A2 - extra_files/extra-sfa-vented-crawlspace.osm - osm + extra_files/warning-conditioned-basement-with-ceiling-insulation.xml + xml test - 7353C11E + B4DA5D01 - extra_files/extra-sfa-vented-crawlspace.xml + extra_files/warning-mf-bottom-slab-non-zero-foundation-height.xml xml test - 4B50C8B2 + 3A2F0A60 - extra_files/extra-state-code-different-than-epw.osm - osm + extra_files/warning-non-electric-heat-pump-water-heater.xml + xml test - 49C3C11B + 3454469A - extra_files/extra-state-code-different-than-epw.xml + extra_files/warning-sfd-slab-non-zero-foundation-height.xml xml test - 526A1030 + 5B2DFE90 - extra_files/extra-time-zone-different-than-epw.osm - osm + extra_files/warning-slab-non-zero-foundation-height-above-grade.xml + xml test - 30C2CB97 + 5B2DFE90 - extra_files/extra-time-zone-different-than-epw.xml + extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml xml test - B2723248 + 906EAF83 - extra_files/extra-water-heater-attic.osm - osm + extra_files/warning-unvented-attic-with-floor-and-roof-insulation.xml + xml test - 83559FB9 + 22DC5B1B - extra_files/extra-water-heater-attic.xml + extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml xml test - 2BE08808 + A93EF766 - extra_files/extra-water-heater-crawlspace.osm - osm + extra_files/warning-vented-attic-with-floor-and-roof-insulation.xml + xml test - 9FFEF814 + A501921C - extra_files/extra-water-heater-crawlspace.xml + extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml xml test - F1DDA46A + 0B56C24A diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index 1cbbb58b78..edf2e1f975 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -34,6 +34,7 @@ def test_workflows 'base-mf4.xml' => 'base-mf.xml', 'base-sfd-header.xml' => 'base-sfd.xml', + 'base-sfd-header-no-duplicates.xml' => 'base-sfd-header.xml', # Extra files to test 'extra-auto.xml' => 'base-sfd.xml', @@ -696,6 +697,9 @@ def _set_measure_argument_values(hpxml_file, args) elsif ['base-sfd-header.xml'].include? hpxml_file args['software_info_program_used'] = 'Program' args['software_info_program_version'] = '1' + args['schedules_vacancy_period'] = 'Jan 2 - Jan 5' + args['schedules_power_outage_period'] = 'Feb 10 - Feb 12' + args['schedules_power_outage_window_natvent_availability'] = HPXML::ScheduleAvailable args['simulation_control_run_period'] = 'Jan 1 - Dec 31' args['simulation_control_run_period_calendar_year'] = 2007 args['simulation_control_temperature_capacitance_multiplier'] = 1.0 @@ -704,6 +708,8 @@ def _set_measure_argument_values(hpxml_file, args) args['emissions_electricity_units'] = 'kg/MWh' args['emissions_electricity_values_or_filepaths'] = '1' args['utility_bill_scenario_names'] = 'Bills' + elsif ['base-sfd-header-no-duplicates.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') end # Extras @@ -1204,10 +1210,10 @@ def _set_measure_argument_values(hpxml_file, args) args['utility_bill_scenario_names'] = 'Bills2' elsif ['error-same-emissions-scenario-name.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') - args['utility_bill_scenario_names'] = 'Bills2' + args['emissions_types'] = 'CO2' elsif ['error-same-utility-bill-scenario-name.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') - args['emissions_scenario_names'] = 'Emissions2' + args['utility_bill_electricity_fixed_charges'] = '13.0' end # Warning From 4902b2839b6217becb7fdb70e750d1ea9de15bc2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 28 Sep 2023 08:41:10 -0700 Subject: [PATCH 29/33] Update same emissions scenario name in sample file. --- BuildResidentialHPXML/measure.xml | 844 +----------------- workflow/hpxml_inputs.json | 2 +- workflow/sample_files/base-misc-emissions.xml | 2 +- 3 files changed, 4 insertions(+), 844 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 9a27a64e94..4451dcdb87 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - c50e8c82-3fa0-4805-940b-19f9b99cdb2c - 2023-09-27T21:48:10Z + 5126c8b9-f3b3-4dab-bcd4-270688bed888 + 2023-09-28T15:40:33Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6770,845 +6770,5 @@ test F9A75CF1 - - extra_files/base-mf.xml - xml - test - 5A3162FF - - - extra_files/base-mf2.xml - xml - test - 9D8CCD42 - - - extra_files/base-mf3.xml - xml - test - 2CEAF7F7 - - - extra_files/base-mf4.xml - xml - test - ED3D4C32 - - - extra_files/base-sfa.xml - xml - test - 2C6F731A - - - extra_files/base-sfa2.xml - xml - test - 6041260A - - - extra_files/base-sfa3.xml - xml - test - 8374ECC9 - - - extra_files/base-sfd-header-no-duplicates.xml - xml - test - 548CECAA - - - extra_files/base-sfd-header.xml - xml - test - 5C715601 - - - extra_files/base-sfd.xml - xml - test - B4DA5D01 - - - extra_files/base-sfd2.xml - xml - test - 4FBA27DD - - - extra_files/error-same-emissions-scenario-name.xml - xml - test - 5E92034C - - - extra_files/error-vented-attic-with-zero-floor-insulation.xml - xml - test - F21A31E8 - - - extra_files/extra-auto-duct-locations.xml - xml - test - 25588468 - - - extra_files/extra-auto.xml - xml - test - 15C00059 - - - extra_files/extra-battery-attic.xml - xml - test - BB1822E2 - - - extra_files/extra-battery-crawlspace.xml - xml - test - 35100B42 - - - extra_files/extra-bills-fossil-fuel-rates.xml - xml - test - 77F514FB - - - extra_files/extra-dhw-solar-latitude.xml - xml - test - F2B3C3D4 - - - extra_files/extra-ducts-attic.xml - xml - test - B4DA5D01 - - - extra_files/extra-ducts-crawlspace.xml - xml - test - A5CE0813 - - - extra_files/extra-emissions-fossil-fuel-factors.xml - xml - test - CAA0B1DC - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml - xml - test - 534704EA - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml - xml - test - 50150E8C - - - extra_files/extra-enclosure-garage-atticroof-conditioned.xml - xml - test - 9994CE61 - - - extra_files/extra-enclosure-garage-partially-protruded.xml - xml - test - CB68542B - - - extra_files/extra-enclosure-windows-shading.xml - xml - test - 1139C3F3 - - - extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml - xml - test - 197F2C09 - - - extra_files/extra-gas-pool-heater-with-zero-kwh.xml - xml - test - 59D527D2 - - - extra_files/extra-iecc-zone-different-than-epw.xml - xml - test - 4DD3BE32 - - - extra_files/extra-mf-ambient.xml - xml - test - 02CFF8EB - - - extra_files/extra-mf-atticroof-flat.xml - xml - test - 77F247AE - - - extra_files/extra-mf-atticroof-vented.xml - xml - test - 6D3CB8F6 - - - extra_files/extra-mf-eaves.xml - xml - test - 3077906F - - - extra_files/extra-mf-exterior-corridor.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-rear-units.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-slab-left-bottom-rear-units.xml - xml - test - D5B70DC8 - - - extra_files/extra-mf-slab-left-bottom.xml - xml - test - 3A2F0A60 - - - extra_files/extra-mf-slab-left-middle-rear-units.xml - xml - test - B4A02CFB - - - extra_files/extra-mf-slab-left-middle.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-slab-left-top-rear-units.xml - xml - test - B4A02CFB - - - extra_files/extra-mf-slab-left-top.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-slab-middle-bottom-rear-units.xml - xml - test - 402F5C58 - - - extra_files/extra-mf-slab-middle-bottom.xml - xml - test - 53C18443 - - - extra_files/extra-mf-slab-middle-middle-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-slab-middle-middle.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-slab-middle-top-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-slab-middle-top.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-slab-rear-units.xml - xml - test - D5B70DC8 - - - extra_files/extra-mf-slab-right-bottom-rear-units.xml - xml - test - 402F5C58 - - - extra_files/extra-mf-slab-right-bottom.xml - xml - test - 53C18443 - - - extra_files/extra-mf-slab-right-middle-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-slab-right-middle.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-slab-right-top-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-slab-right-top.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-slab.xml - xml - test - 3A2F0A60 - - - extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.xml - xml - test - 7F3955CE - - - extra_files/extra-mf-unvented-crawlspace-left-bottom.xml - xml - test - B67220D3 - - - extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.xml - xml - test - B4A02CFB - - - extra_files/extra-mf-unvented-crawlspace-left-middle.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.xml - xml - test - B4A02CFB - - - extra_files/extra-mf-unvented-crawlspace-left-top.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.xml - xml - test - A827AD96 - - - extra_files/extra-mf-unvented-crawlspace-middle-bottom.xml - xml - test - 75202C1B - - - extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-unvented-crawlspace-middle-middle.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-unvented-crawlspace-middle-top.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-unvented-crawlspace-rear-units.xml - xml - test - 7F3955CE - - - extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.xml - xml - test - A827AD96 - - - extra_files/extra-mf-unvented-crawlspace-right-bottom.xml - xml - test - 75202C1B - - - extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-unvented-crawlspace-right-middle.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-unvented-crawlspace-right-top.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-unvented-crawlspace.xml - xml - test - B67220D3 - - - extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.xml - xml - test - C8EBF017 - - - extra_files/extra-mf-vented-crawlspace-left-bottom.xml - xml - test - 98E4820C - - - extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.xml - xml - test - B4A02CFB - - - extra_files/extra-mf-vented-crawlspace-left-middle.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-vented-crawlspace-left-top-rear-units.xml - xml - test - B4A02CFB - - - extra_files/extra-mf-vented-crawlspace-left-top.xml - xml - test - 5A3162FF - - - extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.xml - xml - test - 7DA6470B - - - extra_files/extra-mf-vented-crawlspace-middle-bottom.xml - xml - test - 0D07481F - - - extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-vented-crawlspace-middle-middle.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-vented-crawlspace-middle-top.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-vented-crawlspace-rear-units.xml - xml - test - C8EBF017 - - - extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.xml - xml - test - 7DA6470B - - - extra_files/extra-mf-vented-crawlspace-right-bottom.xml - xml - test - 0D07481F - - - extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-vented-crawlspace-right-middle.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-vented-crawlspace-right-top-rear-units.xml - xml - test - F3168BEC - - - extra_files/extra-mf-vented-crawlspace-right-top.xml - xml - test - 66AA7E1C - - - extra_files/extra-mf-vented-crawlspace.xml - xml - test - 98E4820C - - - extra_files/extra-no-rim-joists.xml - xml - test - 7E616258 - - - extra_files/extra-pv-roofpitch.xml - xml - test - B4DA5D01 - - - extra_files/extra-seasons-building-america.xml - xml - test - 83A7CC58 - - - extra_files/extra-second-heating-system-boiler-to-heat-pump.xml - xml - test - 1A0C858B - - - extra_files/extra-second-heating-system-boiler-to-heating-system.xml - xml - test - A0D2A393 - - - extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml - xml - test - 4E1BF9BD - - - extra_files/extra-second-heating-system-fireplace-to-heating-system.xml - xml - test - A0EDC722 - - - extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml - xml - test - 0D75280A - - - extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml - xml - test - 1D992A02 - - - extra_files/extra-second-refrigerator.xml - xml - test - B4DA5D01 - - - extra_files/extra-sfa-ambient.xml - xml - test - 35AA1608 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml - xml - test - 83FB2F03 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml - xml - test - 768623E0 - - - extra_files/extra-sfa-atticroof-flat.xml - xml - test - B50C0FF5 - - - extra_files/extra-sfa-conditioned-crawlspace.xml - xml - test - 3A8FFAE8 - - - extra_files/extra-sfa-exterior-corridor.xml - xml - test - 2C6F731A - - - extra_files/extra-sfa-rear-units.xml - xml - test - 2C6F731A - - - extra_files/extra-sfa-slab-middle.xml - xml - test - A0F77DE5 - - - extra_files/extra-sfa-slab-right.xml - xml - test - A0F77DE5 - - - extra_files/extra-sfa-slab.xml - xml - test - C1A665A0 - - - extra_files/extra-sfa-unconditioned-basement-middle.xml - xml - test - F38F5E29 - - - extra_files/extra-sfa-unconditioned-basement-right.xml - xml - test - F38F5E29 - - - extra_files/extra-sfa-unconditioned-basement.xml - xml - test - BCB97E3E - - - extra_files/extra-sfa-unvented-crawlspace-middle.xml - xml - test - 768CE328 - - - extra_files/extra-sfa-unvented-crawlspace-right.xml - xml - test - 768CE328 - - - extra_files/extra-sfa-unvented-crawlspace.xml - xml - test - 1DC0CB4B - - - extra_files/extra-sfa-vented-crawlspace-middle.xml - xml - test - 7BDC9301 - - - extra_files/extra-sfa-vented-crawlspace-right.xml - xml - test - 7BDC9301 - - - extra_files/extra-sfa-vented-crawlspace.xml - xml - test - 4B50C8B2 - - - extra_files/extra-state-code-different-than-epw.xml - xml - test - 526A1030 - - - extra_files/extra-time-zone-different-than-epw.xml - xml - test - B2723248 - - - extra_files/extra-water-heater-attic.xml - xml - test - 2BE08808 - - - extra_files/extra-water-heater-crawlspace.xml - xml - test - F1DDA46A - - - extra_files/warning-conditioned-attic-with-floor-insulation.xml - xml - test - CF53D2A2 - - - extra_files/warning-conditioned-basement-with-ceiling-insulation.xml - xml - test - B4DA5D01 - - - extra_files/warning-mf-bottom-slab-non-zero-foundation-height.xml - xml - test - 3A2F0A60 - - - extra_files/warning-non-electric-heat-pump-water-heater.xml - xml - test - 3454469A - - - extra_files/warning-sfd-slab-non-zero-foundation-height.xml - xml - test - 5B2DFE90 - - - extra_files/warning-slab-non-zero-foundation-height-above-grade.xml - xml - test - 5B2DFE90 - - - extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml - xml - test - 906EAF83 - - - extra_files/warning-unvented-attic-with-floor-and-roof-insulation.xml - xml - test - 22DC5B1B - - - extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml - xml - test - A93EF766 - - - extra_files/warning-vented-attic-with-floor-and-roof-insulation.xml - xml - test - A501921C - - - extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml - xml - test - 0B56C24A - diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 1ced03e913..fa7765edc3 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3062,7 +3062,7 @@ }, "sample_files/base-misc-emissions.xml": { "parent_hpxml": "sample_files/base-pv-battery.xml", - "emissions_scenario_names": "Cambium Hourly MidCase LRMER RMPA, Cambium Hourly LowRECosts LRMER RMPA, Cambium Annual MidCase AER National, eGRID RMPA, eGRID RMPA", + "emissions_scenario_names": "Cambium Hourly MidCase LRMER RMPA, Cambium Hourly LowRECosts LRMER RMPA, Cambium Annual MidCase AER National, eGRID RMPA, eGRID RMPA 2", "emissions_types": "CO2e, CO2e, CO2e, SO2, NOx", "emissions_electricity_units": "kg/MWh, kg/MWh, kg/MWh, lb/MWh, lb/MWh", "emissions_electricity_values_or_filepaths": "../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv, ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv, 392.6, 0.384, 0.67", diff --git a/workflow/sample_files/base-misc-emissions.xml b/workflow/sample_files/base-misc-emissions.xml index 636b889b6d..038eadf039 100644 --- a/workflow/sample_files/base-misc-emissions.xml +++ b/workflow/sample_files/base-misc-emissions.xml @@ -53,7 +53,7 @@ - eGRID RMPA + eGRID RMPA 2 NOx electricity From 0c7f5957cf4915097e64f8d7934b6f4fcecd5c9f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 29 Sep 2023 09:30:36 -0600 Subject: [PATCH 30/33] Allow emissions same name but different type. --- BuildResidentialHPXML/measure.rb | 8 +++++--- BuildResidentialHPXML/measure.xml | 6 +++--- workflow/hpxml_inputs.json | 2 +- workflow/sample_files/base-misc-emissions.xml | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index f2cea89583..7e1e67844e 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3726,10 +3726,12 @@ def self.set_header(runner, hpxml, args) emissions_scenario_exists = false hpxml.header.emissions_scenarios.each do |es| - next if es.name != name + if (es.name != name) || (es.name == name && es.emissions_type != emissions_type) + next + end - if (!emissions_type.nil? && es.emissions_type != emissions_type) || - (!wood_pellets_value.nil? && es.elec_units != elec_units) || + if (es.emissions_type != emissions_type) || + (!elec_units.nil? && es.elec_units != elec_units) || (!elec_value.nil? && es.elec_value != elec_value) || (!elec_schedule_filepath.nil? && es.elec_schedule_filepath != elec_schedule_filepath) || (!elec_num_headers.nil? && es.elec_schedule_number_of_header_rows != elec_num_headers) || diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 4451dcdb87..f80b69f1cd 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 5126c8b9-f3b3-4dab-bcd4-270688bed888 - 2023-09-28T15:40:33Z + e49803f2-ffec-4d23-8dd6-0c2922b956a6 + 2023-09-29T15:29:35Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6756,7 +6756,7 @@ measure.rb rb script - 6F587783 + 53F68391 geometry.rb diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index fa7765edc3..1ced03e913 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3062,7 +3062,7 @@ }, "sample_files/base-misc-emissions.xml": { "parent_hpxml": "sample_files/base-pv-battery.xml", - "emissions_scenario_names": "Cambium Hourly MidCase LRMER RMPA, Cambium Hourly LowRECosts LRMER RMPA, Cambium Annual MidCase AER National, eGRID RMPA, eGRID RMPA 2", + "emissions_scenario_names": "Cambium Hourly MidCase LRMER RMPA, Cambium Hourly LowRECosts LRMER RMPA, Cambium Annual MidCase AER National, eGRID RMPA, eGRID RMPA", "emissions_types": "CO2e, CO2e, CO2e, SO2, NOx", "emissions_electricity_units": "kg/MWh, kg/MWh, kg/MWh, lb/MWh, lb/MWh", "emissions_electricity_values_or_filepaths": "../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv, ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv, 392.6, 0.384, 0.67", diff --git a/workflow/sample_files/base-misc-emissions.xml b/workflow/sample_files/base-misc-emissions.xml index 038eadf039..636b889b6d 100644 --- a/workflow/sample_files/base-misc-emissions.xml +++ b/workflow/sample_files/base-misc-emissions.xml @@ -53,7 +53,7 @@ - eGRID RMPA 2 + eGRID RMPA NOx electricity From b97017bd50c540f6b3eab42316cff68c4f2bc40a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 29 Sep 2023 12:24:35 -0600 Subject: [PATCH 31/33] Change a value for bad emissions scenario file. --- BuildResidentialHPXML/measure.xml | 6 +++--- BuildResidentialHPXML/tests/build_residential_hpxml_test.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 29fb4d23b2..8207c960cf 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 3e22237b-50df-4850-8b3b-1792449b9f9d - 2023-09-29T15:41:58Z + fe5831cf-3c2e-4ebc-83a6-4ba4905947f6 + 2023-09-29T18:23:36Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6768,7 +6768,7 @@ build_residential_hpxml_test.rb rb test - 2958DFFF + 9D0DB037 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index f5285e4eac..b997f63b4c 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -1210,7 +1210,7 @@ def _set_measure_argument_values(hpxml_file, args) args['utility_bill_scenario_names'] = 'Bills2' elsif ['error-same-emissions-scenario-name.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') - args['emissions_types'] = 'CO2' + args['emissions_electricity_values_or_filepaths'] = '2' elsif ['error-same-utility-bill-scenario-name.xml'].include? hpxml_file args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') args['utility_bill_electricity_fixed_charges'] = '13.0' From 4ee7943a3aa217af641daf498802ecbaeb07c6a2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Sat, 30 Sep 2023 22:57:42 +0000 Subject: [PATCH 32/33] Latest results. --- workflow/tests/base_results/results.csv | 19 +++++++++++++++++++ workflow/tests/base_results/results_bills.csv | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 3a162c9dac..93f5fa7c4e 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,5 +1,9 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h) base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.604,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.655,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.541,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.593,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,9.69,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,7.932,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -14,6 +18,8 @@ base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0 base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,6.821,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.374,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,9.228,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 @@ -42,6 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,12000.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.302,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6182.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1828.0,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 @@ -368,6 +375,10 @@ base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0. base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.837,44.387,31.49,12.04,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.184,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.278,0.0,5.223,10.64,0.694,0.0,9.152,0.0,0.0,2402.4,2793.8,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.1,3721.9,3.03,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,14.961,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.82,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,0.0,17.463,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 @@ -378,6 +389,13 @@ base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0. base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 base-misc-unit-multiplier.xml,587.805,587.805,359.494,359.494,228.311,0.0,0.0,0.0,0.0,0.0,0.0,3.766,0.0,0.0,43.015,8.308,91.643,0.0,0.0,45.096,0.0,3.337,0.0,0.0,0.0,0.0,22.196,0.0,0.0,3.185,3.653,15.127,15.28,0.0,21.142,83.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,228.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,213.813,0.0,139.93,92.334,6.142,0.0,0.0,0.0,0.0,21153.7,32997.9,32997.9,230.559,179.022,0.0,35.434,36.347,5.115,75.009,6.283,105.049,-125.571,0.0,0.0,0.0,82.756,-0.61,48.04,0.0,7.281,0.0,49.403,-89.083,-24.996,0.0,-0.43,-4.539,-0.505,27.076,-0.241,-19.169,117.259,0.0,0.0,0.0,-63.111,-0.571,-11.653,-30.638,-1.645,0.0,31.116,78.697,20.1,13548.2,9976.1,113995.0,26158.3,0.0,360000.0,240000.0,0.0,6.8,91.76,322350.0,85950.0,75080.0,0.0,5750.0,68400.0,0.0,0.0,19490.0,21710.0,45970.0,187860.0,53280.0,70370.0,0.0,2070.0,2650.0,0.0,0.0,0.0,20100.0,6190.0,33200.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,8.303,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,0.0,21.139,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,14.961,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,23.361,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,5.721,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,5.993,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,14.961,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,17.976,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.804,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,88.105,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,556.25,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -385,6 +403,7 @@ base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0. base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.458,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,3.942,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.097,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.9,3061.0,3173.9,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21149.0,5662.8,1.882,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 3881e0a895..3f96601519 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -1,5 +1,9 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: Total (USD),Net Metering w/ Wholesale Excess Rate: Total (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Energy (USD),Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: Total (USD),Net Metering w/ Retail Excess Rate: Total (USD),Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Net Metering w/ Retail Excess Rate: Electricity: Energy (USD),Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (USD),Feed-In Tariff: Electricity: PV Credit (USD),Feed-In Tariff: Electricity: Total (USD),Feed-In Tariff: Natural Gas: Fixed (USD),Feed-In Tariff: Natural Gas: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) base-appliances-coal.xml,1816.09,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-portable.xml,1519.05,144.0,1217.36,0.0,1361.36,144.0,13.69,157.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-whole-home.xml,1520.67,144.0,1219.21,0.0,1363.21,144.0,13.46,157.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-multiple.xml,1516.92,144.0,1214.51,0.0,1358.51,144.0,14.41,158.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier.xml,1518.17,144.0,1216.64,0.0,1360.64,144.0,13.53,157.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-gas.xml,1794.65,144.0,1220.28,0.0,1364.28,144.0,286.37,430.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-modified.xml,1876.16,144.0,1355.48,0.0,1499.48,144.0,232.68,376.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-none.xml,1592.3,144.0,1041.89,0.0,1185.89,144.0,262.41,406.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -14,6 +18,8 @@ base-atticroof-flat.xml,1787.49,144.0,1288.51,0.0,1432.51,144.0,210.98,354.98,0. base-atticroof-radiant-barrier.xml,1545.61,144.0,1213.91,0.0,1357.91,144.0,43.7,187.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-unvented-insulated-roof.xml,1818.41,144.0,1294.27,0.0,1438.27,144.0,236.14,380.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-vented.xml,1834.62,144.0,1306.81,0.0,1450.81,144.0,239.81,383.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery-scheduled.xml,1910.91,144.0,1381.06,0.0,1525.06,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery.xml,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-attached-2stories.xml,1738.01,144.0,1269.36,0.0,1413.36,144.0,180.65,324.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-attached-atticroof-cathedral.xml,2299.05,144.0,1366.45,0.0,1510.45,144.0,644.6,788.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-attached-infil-compartmentalization-test.xml,1522.06,144.0,1098.74,0.0,1242.74,144.0,135.32,279.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -42,6 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1170.49,144.0,1026.49,0.0,1170.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1348.3,144.0,1003.45,0.0,1147.45,144.0,56.85,200.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -368,6 +375,10 @@ base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,862.47,144.0,1319.36,-986.74,476.62,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,766.71,108.0,1261.65,-988.78,380.86,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629.51,465.0,1264.29,-1482.92,246.37,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.55,465.0,1264.29,-2013.87,-284.59,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-324.27,210.0,1264.29,-2181.7,-707.41,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-bills.xml,1803.43,144.0,1264.29,0.0,1408.29,144.0,251.14,395.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-defaults.xml,1072.55,144.0,1155.6,-713.71,585.89,144.0,342.66,486.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-emissions.xml,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery-scheduled.xml,2298.24,144.0,1381.06,0.0,1525.06,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-generators.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-ground-conductivity.xml,1822.54,144.0,1316.42,0.0,1460.42,144.0,218.12,362.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-loads-large-uncommon.xml,3692.47,144.0,2510.26,0.0,2654.26,144.0,743.94,887.94,0.0,0.0,0.0,0.0,67.83,67.83,0.0,82.44,82.44,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -378,6 +389,13 @@ base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,41 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-unit-multiplier.xml,15900.15,144.0,13193.58,0.0,13337.58,144.0,2418.57,2562.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,74.2,74.2,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-ah.xml,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-round-trip-efficiency.xml,932.54,144.0,1389.33,-986.64,546.69,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-scheduled.xml,924.95,144.0,1381.06,-985.96,539.1,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery.xml,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery-scheduled.xml,1011.74,144.0,1381.06,-1286.5,238.56,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery.xml,978.76,144.0,1348.76,-1287.18,205.58,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-generators.xml,949.25,144.0,1319.36,-1287.29,176.07,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv.xml,862.47,144.0,1319.36,-986.74,476.62,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-0-runperiod-1-month.xml,128.93,12.0,15.82,0.0,27.82,12.0,89.11,101.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -385,6 +403,7 @@ base-residents-0.xml,921.81,144.0,266.37,0.0,410.37,144.0,367.44,511.44,0.0,0.0, base-residents-1-misc-loads-large-uncommon.xml,2787.99,144.0,1908.19,0.0,2052.19,144.0,441.53,585.53,0.0,0.0,0.0,0.0,70.81,70.81,0.0,79.46,79.46,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon2.xml,2522.05,144.0,1819.16,0.0,1963.16,144.0,244.19,388.19,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.46,79.46,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1.xml,1593.48,144.0,1041.14,0.0,1185.14,144.0,264.34,408.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-5.xml,1332.1,144.0,1468.92,-743.15,869.77,144.0,318.33,462.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-all-10-mins.xml,1870.03,144.0,1328.3,0.0,1472.3,144.0,253.73,397.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-mixed-timesteps-power-outage.xml,1392.56,144.0,1051.79,0.0,1195.79,144.0,52.77,196.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-mixed-timesteps.xml,1637.97,144.0,1262.22,0.0,1406.22,144.0,87.75,231.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 807e7465c709b245f4841aec9ce09ccabb6cd5cc Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 3 Oct 2023 08:05:15 -0700 Subject: [PATCH 33/33] Few review items. --- BuildResidentialHPXML/measure.rb | 40 +++++++++---------- BuildResidentialHPXML/measure.xml | 8 ++-- .../tests/build_residential_hpxml_test.rb | 14 +++---- ReportSimulationOutput/measure.xml | 6 +-- 4 files changed, 33 insertions(+), 35 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 4ad18742d3..a76557e7a3 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -3569,6 +3569,8 @@ def self.create_geometry_envelope(runner, model, args) end def self.unavailable_period_exists(hpxml, column_name, begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability = nil) + natvent_availability = HPXML::ScheduleUnavailable if natvent_availability.nil? + hpxml.header.unavailable_periods.each do |unavailable_period| begin_hour = 0 if begin_hour.nil? end_hour = 24 if end_hour.nil? @@ -3579,10 +3581,10 @@ def self.unavailable_period_exists(hpxml, column_name, begin_month, begin_day, b (unavailable_period.begin_hour == begin_hour) && (unavailable_period.end_month == end_month) && (unavailable_period.end_day == end_day) && - (unavailable_period.end_hour == end_hour) - if unavailable_period.natvent_availability == natvent_availability - return true - end + (unavailable_period.end_hour == end_hour) && + (unavailable_period.natvent_availability == natvent_availability) + + return true end return false end @@ -3597,10 +3599,8 @@ def self.set_header(runner, hpxml, args) if args[:schedules_vacancy_period].is_initialized begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_vacancy_period].get) - natvent_availability = HPXML::ScheduleUnavailable - - if not unavailable_period_exists(hpxml, 'Vacancy', begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability) - hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability) + if not unavailable_period_exists(hpxml, 'Vacancy', begin_month, begin_day, begin_hour, end_month, end_day, end_hour) + hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: HPXML::ScheduleUnavailable) end end if args[:schedules_power_outage_period].is_initialized @@ -3617,20 +3617,20 @@ def self.set_header(runner, hpxml, args) if args[:software_info_program_used].is_initialized if !hpxml.header.software_program_used.nil? && (hpxml.header.software_program_used != args[:software_info_program_used].get) - errors << "hpxml.header.software_program_used=#{hpxml.header.software_program_used}; cannot set software_info_program_used=#{args[:software_info_program_used].get}." + errors << "'Software Info: Program Used' cannot vary across dwelling units." end hpxml.header.software_program_used = args[:software_info_program_used].get end if args[:software_info_program_version].is_initialized if !hpxml.header.software_program_version.nil? && (hpxml.header.software_program_version != args[:software_info_program_version].get) - errors << "hpxml.header.software_program_version=#{hpxml.header.software_program_version}; cannot set software_info_program_version=#{args[:software_info_program_version].get}." + errors << "'Software Info: Program Version' cannot vary across dwelling units." end hpxml.header.software_program_version = args[:software_info_program_version].get end if args[:simulation_control_timestep].is_initialized if !hpxml.header.timestep.nil? && (hpxml.header.timestep != args[:simulation_control_timestep].get) - errors << "hpxml.header.timestep=#{hpxml.header.timestep}; cannot set simulation_control_timestep=#{args[:simulation_control_timestep].get}." + errors << "'Simulation Control: Timestep' cannot vary across dwelling units." end hpxml.header.timestep = args[:simulation_control_timestep].get end @@ -3641,7 +3641,7 @@ def self.set_header(runner, hpxml, args) (!hpxml.header.sim_begin_day.nil? && (hpxml.header.sim_begin_day != begin_day)) || (!hpxml.header.sim_end_month.nil? && (hpxml.header.sim_end_month != end_month)) || (!hpxml.header.sim_end_day.nil? && (hpxml.header.sim_end_day != end_day)) - errors << "hpxml.header.sim_begin_month=#{hpxml.header.sim_begin_month}, hpxml.header.sim_begin_day=#{hpxml.header.sim_begin_day}, hpxml.header.sim_end_month=#{hpxml.header.sim_end_month}, hpxml.header.sim_end_day=#{hpxml.header.sim_end_day}; cannot set simulation_control_run_period=#{args[:simulation_control_run_period].get}." + errors << "'Simulation Control: Run Period' cannot vary across dwelling units." end hpxml.header.sim_begin_month = begin_month hpxml.header.sim_begin_day = begin_day @@ -3651,14 +3651,14 @@ def self.set_header(runner, hpxml, args) if args[:simulation_control_run_period_calendar_year].is_initialized if !hpxml.header.sim_calendar_year.nil? && (hpxml.header.sim_calendar_year != Integer(args[:simulation_control_run_period_calendar_year].get)) - errors << "hpxml.header.sim_calendar_year=#{hpxml.header.sim_calendar_year}; cannot set simulation_control_run_period_calendar_year=#{args[:simulation_control_run_period_calendar_year].get}." + errors << "'Simulation Control: Run Period Calendar Year' cannot vary across dwelling units." end hpxml.header.sim_calendar_year = args[:simulation_control_run_period_calendar_year].get end if args[:simulation_control_temperature_capacitance_multiplier].is_initialized if !hpxml.header.temperature_capacitance_multiplier.nil? && (hpxml.header.temperature_capacitance_multiplier != Float(args[:simulation_control_temperature_capacitance_multiplier].get)) - errors << "hpxml.header.temperature_capacitance_multiplier=#{hpxml.header.temperature_capacitance_multiplier}; cannot set simulation_control_temperature_capacitance_multiplier=#{args[:simulation_control_temperature_capacitance_multiplier].get}." + errors << "'Simulation Control: Temperature Capacitance Multiplier' cannot vary across dwelling units." end hpxml.header.temperature_capacitance_multiplier = args[:simulation_control_temperature_capacitance_multiplier].get end @@ -3726,7 +3726,7 @@ def self.set_header(runner, hpxml, args) emissions_scenario_exists = false hpxml.header.emissions_scenarios.each do |es| - if (es.name != name) || (es.name == name && es.emissions_type != emissions_type) + if (es.name != name) || (es.emissions_type != emissions_type) next end @@ -3748,13 +3748,13 @@ def self.set_header(runner, hpxml, args) (!wood_value.nil? && es.wood_value != wood_value) || (!fuel_units.nil? && es.wood_pellets_units != fuel_units) || (!wood_pellets_value.nil? && es.wood_pellets_value != wood_pellets_value) - errors << "HPXML header already includes an emissions scenario named '#{name}'." + errors << "HPXML header already includes an emissions scenario named '#{name}' with type '#{emissions_type}'." else emissions_scenario_exists = true end end - next unless not emissions_scenario_exists + next if emissions_scenario_exists hpxml.header.emissions_scenarios.add(name: name, emissions_type: emissions_type, @@ -3936,7 +3936,7 @@ def self.set_header(runner, hpxml, args) end end - next unless not utility_bill_scenario_exists + next if utility_bill_scenario_exists hpxml.header.utility_bill_scenarios.add(name: name, elec_tariff_filepath: elec_tariff_filepath, @@ -3966,9 +3966,7 @@ def self.set_header(runner, hpxml, args) errors.each do |error| runner.registerError(error) end - return true if errors.empty? - - return false + return errors.empty? end def self.add_building(hpxml, args) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 8207c960cf..a5485ebac2 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - fe5831cf-3c2e-4ebc-83a6-4ba4905947f6 - 2023-09-29T18:23:36Z + 158958f4-24a0-465c-aca9-7c7bab723fc2 + 2023-10-03T15:04:52Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6756,7 +6756,7 @@ measure.rb rb script - 7CA2AE71 + E436A82D geometry.rb @@ -6768,7 +6768,7 @@ build_residential_hpxml_test.rb rb test - 9D0DB037 + B79B8310 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index b997f63b4c..6a12c2e37b 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -260,13 +260,13 @@ def test_workflows 'error-garage-too-wide.xml' => ['Garage is as wide as the single-family detached unit.'], 'error-garage-too-deep.xml' => ['Garage is as deep as the single-family detached unit.'], 'error-vented-attic-with-zero-floor-insulation.xml' => ["Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'."], - 'error-different-software-program.xml' => ['hpxml.header.software_program_used=Program; cannot set software_info_program_used=Program2.', - 'hpxml.header.software_program_version=1; cannot set software_info_program_version=2.'], - 'error-different-simulation-control.xml' => ['hpxml.header.timestep=60; cannot set simulation_control_timestep=10.', - 'hpxml.header.sim_begin_month=1, hpxml.header.sim_begin_day=1, hpxml.header.sim_end_month=12, hpxml.header.sim_end_day=31; cannot set simulation_control_run_period=Jan 2 - Dec 30.', - 'hpxml.header.sim_calendar_year=2007; cannot set simulation_control_run_period_calendar_year=2008.', - 'hpxml.header.temperature_capacitance_multiplier=1.0; cannot set simulation_control_temperature_capacitance_multiplier=2.0.'], - 'error-same-emissions-scenario-name.xml' => ["HPXML header already includes an emissions scenario named 'Emissions'."], + 'error-different-software-program.xml' => ["'Software Info: Program Used' cannot vary across dwelling units.", + "'Software Info: Program Version' cannot vary across dwelling units."], + 'error-different-simulation-control.xml' => ["'Simulation Control: Timestep' cannot vary across dwelling units.", + "'Simulation Control: Run Period' cannot vary across dwelling units.", + "'Simulation Control: Run Period Calendar Year' cannot vary across dwelling units.", + "'Simulation Control: Temperature Capacitance Multiplier' cannot vary across dwelling units."], + 'error-same-emissions-scenario-name.xml' => ["HPXML header already includes an emissions scenario named 'Emissions' with type 'CO2e'."], 'error-same-utility-bill-scenario-name.xml' => ["HPXML header already includes a utility bill scenario named 'Bills'."] } diff --git a/ReportSimulationOutput/measure.xml b/ReportSimulationOutput/measure.xml index 67e70ba29f..10834c39b6 100644 --- a/ReportSimulationOutput/measure.xml +++ b/ReportSimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.1 report_simulation_output df9d170c-c21a-4130-866d-0d46b06073fd - 7120637b-1f10-4fb6-955d-dceb3693030f - 2023-09-30T21:03:31Z + 0b85a7d5-ef92-4f90-aaf5-40ae69f145e7 + 2023-10-03T14:41:36Z 9BF1E6AC ReportSimulationOutput HPXML Simulation Output Report @@ -1917,7 +1917,7 @@ measure.rb rb script - 3B29B397 + F4DCBAFD output_report_test.rb