diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000..90fb947aa1 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +# Declare files that will always have CRLF line endings on checkout. + +workflow/**/*.xml text eol=crlf diff --git a/.gitignore b/.gitignore index a0fcb5bb27..d9c6bb29f2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.ruby-version /coverage /docs/_build /results diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 41db0b187d..1902c9c89c 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -181,6 +181,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument unit_type_choices << HPXML::ResidentialTypeSFD unit_type_choices << HPXML::ResidentialTypeSFA unit_type_choices << HPXML::ResidentialTypeApartment + unit_type_choices << HPXML::ResidentialTypeManufactured arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_unit_type', unit_type_choices, true) arg.setDisplayName('Geometry: Unit Type') @@ -317,6 +318,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument foundation_type_choices << HPXML::FoundationTypeBasementConditioned foundation_type_choices << HPXML::FoundationTypeAmbient foundation_type_choices << HPXML::FoundationTypeAboveApartment # I.e., adiabatic + foundation_type_choices << "#{HPXML::FoundationTypeBellyAndWing}WithSkirt" + foundation_type_choices << "#{HPXML::FoundationTypeBellyAndWing}NoSkirt" arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_foundation_type', foundation_type_choices, true) arg.setDisplayName('Geometry: Foundation Type') @@ -1007,9 +1010,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument heating_system_type_choices << HPXML::HVACTypeBoiler heating_system_type_choices << HPXML::HVACTypeElectricResistance heating_system_type_choices << HPXML::HVACTypeStove - heating_system_type_choices << HPXML::HVACTypePortableHeater + heating_system_type_choices << HPXML::HVACTypeSpaceHeater heating_system_type_choices << HPXML::HVACTypeFireplace - heating_system_type_choices << HPXML::HVACTypeFixedHeater heating_system_type_choices << "Shared #{HPXML::HVACTypeBoiler} w/ Baseboard" heating_system_type_choices << "Shared #{HPXML::HVACTypeBoiler} w/ Ductless Fan Coil" @@ -1357,9 +1359,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument heating_system_2_type_choices << HPXML::HVACTypeBoiler heating_system_2_type_choices << HPXML::HVACTypeElectricResistance heating_system_2_type_choices << HPXML::HVACTypeStove - heating_system_2_type_choices << HPXML::HVACTypePortableHeater + heating_system_2_type_choices << HPXML::HVACTypeSpaceHeater heating_system_2_type_choices << HPXML::HVACTypeFireplace - heating_system_2_type_choices << HPXML::HVACTypeFixedHeater arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_2_type', heating_system_2_type_choices, true) arg.setDisplayName('Heating System 2: Type') @@ -1450,6 +1451,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument duct_location_choices << HPXML::LocationOtherHeatedSpace duct_location_choices << HPXML::LocationOtherMultifamilyBufferSpace duct_location_choices << HPXML::LocationOtherNonFreezingSpace + duct_location_choices << HPXML::LocationManufacturedHomeBelly arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('ducts_leakage_units', duct_leakage_units_choices, true) arg.setDisplayName('Ducts: Leakage Units') @@ -3499,7 +3501,7 @@ def self.create_geometry_envelope(runner, model, args) args[:geometry_foundation_height] = 0.0 args[:geometry_foundation_height_above_grade] = 0.0 args[:geometry_rim_joist_height] = 0.0 - elsif args[:geometry_foundation_type] == HPXML::FoundationTypeAmbient + elsif (args[:geometry_foundation_type] == HPXML::FoundationTypeAmbient) || args[:geometry_foundation_type].start_with?(HPXML::FoundationTypeBellyAndWing) args[:geometry_rim_joist_height] = 0.0 end @@ -3514,6 +3516,8 @@ def self.create_geometry_envelope(runner, model, args) success = Geometry.create_single_family_attached(model: model, **args) elsif args[:geometry_unit_type] == HPXML::ResidentialTypeApartment success = Geometry.create_apartment(model: model, **args) + elsif args[:geometry_unit_type] == HPXML::ResidentialTypeManufactured + success = Geometry.create_single_family_detached(runner: runner, model: model, **args) end return false if not success @@ -3895,7 +3899,7 @@ def self.set_site(hpxml, args) hpxml.site.vertical_surroundings = HPXML::VerticalSurroundingsNoAboveOrBelow end end - elsif [HPXML::ResidentialTypeSFD].include? args[:geometry_unit_type] + elsif [HPXML::ResidentialTypeSFD, HPXML::ResidentialTypeManufactured].include? args[:geometry_unit_type] hpxml.site.surroundings = HPXML::SurroundingsStandAlone hpxml.site.vertical_surroundings = HPXML::VerticalSurroundingsNoAboveOrBelow end @@ -4368,10 +4372,6 @@ def self.set_slabs(hpxml, model, args, sorted_surfaces) exposed_perimeter -= Geometry.get_unexposed_garage_perimeter(**args) end - if [HPXML::LocationLivingSpace, HPXML::LocationGarage].include? interior_adjacent_to - depth_below_grade = 0 - end - if args[:slab_under_width] == 999 under_slab_insulation_spans_entire_slab = true else @@ -4400,7 +4400,6 @@ def self.set_slabs(hpxml, model, args, sorted_surfaces) perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], under_slab_insulation_r_value: args[:slab_under_insulation_r], under_slab_insulation_spans_entire_slab: under_slab_insulation_spans_entire_slab, - depth_below_grade: depth_below_grade, carpet_fraction: carpet_fraction, carpet_r_value: carpet_r_value) @surface_ids[surface.name.to_s] = hpxml.slabs[-1].id @@ -4450,7 +4449,7 @@ def self.set_windows(hpxml, model, args, sorted_subsurfaces) end # Get max z coordinate of this window - sub_surface_z = Geometry.getSurfaceZValues([sub_surface]).max + UnitConversions.convert(sub_surface.space.get.zOrigin, 'm', 'ft') + sub_surface_z = Geometry.get_surface_z_values([sub_surface]).max + UnitConversions.convert(sub_surface.space.get.zOrigin, 'm', 'ft') overhangs_depth = args[:geometry_eaves_depth] overhangs_distance_to_top_of_window = eaves_z - sub_surface_z # difference between max z coordinates of eaves and this window @@ -4603,19 +4602,33 @@ def self.set_foundations(hpxml, args) next unless (foundation_locations.include? surface.interior_adjacent_to) || (foundation_locations.include? surface.exterior_adjacent_to) || (surf_type == 'slabs' && surface.interior_adjacent_to == HPXML::LocationLivingSpace) || - (surf_type == 'floors' && surface.exterior_adjacent_to == HPXML::LocationOutside) + (surf_type == 'floors' && [HPXML::LocationOutside, HPXML::LocationManufacturedHomeUnderBelly].include?(surface.exterior_adjacent_to)) surf_hash['ids'] << surface.id end end + if args[:geometry_foundation_type].start_with?(HPXML::FoundationTypeBellyAndWing) + foundation_type = HPXML::FoundationTypeBellyAndWing + if args[:geometry_foundation_type].end_with?('WithSkirt') + belly_wing_skirt_present = true + elsif args[:geometry_foundation_type].end_with?('NoSkirt') + belly_wing_skirt_present = false + else + fail 'Unepected belly and wing foundation type.' + end + else + foundation_type = args[:geometry_foundation_type] + end + hpxml.foundations.add(id: "Foundation#{hpxml.foundations.size + 1}", - foundation_type: args[:geometry_foundation_type], + foundation_type: foundation_type, attached_to_slab_idrefs: surf_ids['slabs']['ids'], attached_to_floor_idrefs: surf_ids['floors']['ids'], attached_to_foundation_wall_idrefs: surf_ids['foundation_walls']['ids'], attached_to_wall_idrefs: surf_ids['walls']['ids'], - attached_to_rim_joist_idrefs: surf_ids['rim_joists']['ids']) + attached_to_rim_joist_idrefs: surf_ids['rim_joists']['ids'], + belly_wing_skirt_present: belly_wing_skirt_present) end def self.set_heating_systems(hpxml, args) @@ -4639,9 +4652,8 @@ def self.set_heating_systems(hpxml, args) heating_efficiency_afue = args[:heating_system_heating_efficiency] elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFireplace, - HPXML::HVACTypeFixedHeater].include?(heating_system_type) + HPXML::HVACTypeSpaceHeater, + HPXML::HVACTypeFireplace].include?(heating_system_type) heating_efficiency_percent = args[:heating_system_heating_efficiency] end @@ -4941,7 +4953,7 @@ def self.set_secondary_heating_systems(hpxml, args) if [HPXML::HVACTypeFurnace, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace].include?(heating_system_type) || heating_system_type.include?(HPXML::HVACTypeBoiler) heating_efficiency_afue = args[:heating_system_2_heating_efficiency] - elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, HPXML::HVACTypePortableHeater, HPXML::HVACTypeFireplace].include?(heating_system_type) + elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeFireplace].include?(heating_system_type) heating_efficiency_percent = args[:heating_system_2_heating_efficiency] end @@ -5001,6 +5013,8 @@ def self.set_hvac_distribution(hpxml, args) # FanCoil? fan_coil_distribution_systems = [] hpxml.heating_systems.each do |heating_system| + next unless heating_system.primary_system + if args[:heating_system_type].include?('Fan Coil') fan_coil_distribution_systems << heating_system end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 45eb7f8820..a595ea1230 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 61a17495-a6d8-4328-a2c6-341c8ef4300c - 20230519T183248Z + 88fef79c-0316-4d9a-bd2a-20c5e8cfa794 + 2023-07-14T15:38:31Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -553,6 +553,10 @@ apartment unit apartment unit + + manufactured home + manufactured home + @@ -808,6 +812,14 @@ AboveApartment AboveApartment + + BellyAndWingWithSkirt + BellyAndWingWithSkirt + + + BellyAndWingNoSkirt + BellyAndWingNoSkirt + @@ -2082,17 +2094,13 @@ Stove - PortableHeater - PortableHeater + SpaceHeater + SpaceHeater Fireplace Fireplace - - FixedHeater - FixedHeater - Shared Boiler w/ Baseboard Shared Boiler w/ Baseboard @@ -2802,17 +2810,13 @@ Stove - PortableHeater - PortableHeater + SpaceHeater + SpaceHeater Fireplace Fireplace - - FixedHeater - FixedHeater - @@ -3052,6 +3056,10 @@ other non-freezing space other non-freezing space + + manufactured home belly + manufactured home belly + @@ -3175,6 +3183,10 @@ other non-freezing space other non-freezing space + + manufactured home belly + manufactured home belly + @@ -6670,18 +6682,6 @@ - - geometry.rb - rb - resource - E8F9FEA0 - - - build_residential_hpxml_test.rb - rb - test - 010244DB - OpenStudio @@ -6691,7 +6691,19 @@ measure.rb rb script - AE26AEE7 + 86A85792 + + + geometry.rb + rb + resource + 6D43B4D8 + + + build_residential_hpxml_test.rb + rb + test + D9387578 diff --git a/BuildResidentialHPXML/resources/geometry.rb b/BuildResidentialHPXML/resources/geometry.rb index 7d2187a383..e792dc142e 100644 --- a/BuildResidentialHPXML/resources/geometry.rb +++ b/BuildResidentialHPXML/resources/geometry.rb @@ -80,7 +80,7 @@ def self.get_adiabatic_adjacent_surface(model:, next if surface == adjacent_surface next if adjacent_surface.surfaceType != adjacentSurfaceType next if adjacent_surface.outsideBoundaryCondition != 'Adiabatic' - next unless Geometry.has_same_vertices(surface, adjacent_surface) + next unless has_same_vertices(surface, adjacent_surface) return adjacent_surface end @@ -547,7 +547,7 @@ def self.create_single_family_detached(runner:, HPXML::FoundationTypeCrawlspaceConditioned, HPXML::FoundationTypeBasementUnconditioned, HPXML::FoundationTypeBasementConditioned, - HPXML::FoundationTypeAmbient].include? foundation_type + HPXML::FoundationTypeAmbient].include?(foundation_type) || foundation_type.start_with?(HPXML::FoundationTypeBellyAndWing) z = -foundation_height @@ -577,6 +577,8 @@ def self.create_single_family_detached(runner:, foundation_space_name = HPXML::LocationBasementConditioned elsif foundation_type == HPXML::FoundationTypeAmbient foundation_space_name = HPXML::LocationOutside + elsif foundation_type.start_with?(HPXML::FoundationTypeBellyAndWing) + foundation_space_name = HPXML::LocationManufacturedHomeUnderBelly end foundation_zone.setName(foundation_space_name) foundation_space.setName(foundation_space_name) @@ -832,9 +834,9 @@ def self.create_single_family_detached(runner:, end def self.has_same_vertices(surface1, surface2) - if getSurfaceXValues([surface1]).sort == getSurfaceXValues([surface2]).sort && - getSurfaceYValues([surface1]).sort == getSurfaceYValues([surface2]).sort && - getSurfaceZValues([surface1]).sort == getSurfaceZValues([surface2]).sort && + if get_surface_x_values([surface1]).sort == get_surface_x_values([surface2]).sort && + get_surface_y_values([surface1]).sort == get_surface_y_values([surface2]).sort && + get_surface_z_values([surface1]).sort == get_surface_z_values([surface2]).sort && surface1.space.get.zOrigin.round(5) == surface2.space.get.zOrigin.round(5) return true end @@ -862,7 +864,7 @@ def self.get_space_floor_z(space) space.surfaces.each do |surface| next unless surface.surfaceType.downcase == 'floor' - return getSurfaceZValues([surface])[0] + return get_surface_z_values([surface])[0] end end @@ -1364,13 +1366,13 @@ def self.add_window_to_wall(surface, win_width, win_height, win_center_x, win_ce multy = 1 end if (facade == Constants.FacadeBack) || (facade == Constants.FacadeLeft) - leftx = getSurfaceXValues([surface]).max - lefty = getSurfaceYValues([surface]).max + leftx = get_surface_x_values([surface]).max + lefty = get_surface_y_values([surface]).max else - leftx = getSurfaceXValues([surface]).min - lefty = getSurfaceYValues([surface]).min + leftx = get_surface_x_values([surface]).min + lefty = get_surface_y_values([surface]).min end - bottomz = getSurfaceZValues([surface]).min + bottomz = get_surface_z_values([surface]).min [upperleft, lowerleft, lowerright, upperright].each do |coord| newx = UnitConversions.convert(leftx + multx * coord[0], 'ft', 'm') newy = UnitConversions.convert(lefty + multy * coord[0], 'ft', 'm') @@ -1412,9 +1414,9 @@ def self.is_rectangular_wall(surface) return false end - xvalues = getSurfaceXValues([surface]) - yvalues = getSurfaceYValues([surface]) - zvalues = getSurfaceZValues([surface]) + xvalues = get_surface_x_values([surface]) + yvalues = get_surface_y_values([surface]) + zvalues = get_surface_z_values([surface]) if not (((xvalues.uniq.size == 1) && (yvalues.uniq.size == 2)) || ((xvalues.uniq.size == 2) && (yvalues.uniq.size == 1))) return false @@ -1483,7 +1485,7 @@ def self.create_doors(runner:, min_story_avail_walls = [] min_story_avail_wall_minz = 99999 avail_walls.each do |avail_wall| - zvalues = getSurfaceZValues([avail_wall]) + zvalues = get_surface_z_values([avail_wall]) minz = zvalues.min + avail_wall.space.get.zOrigin if minz < min_story_avail_wall_minz min_story_avail_walls.clear @@ -1544,13 +1546,13 @@ def self.create_doors(runner:, multy = 1 end if (facade == Constants.FacadeBack) || (facade == Constants.FacadeLeft) - leftx = getSurfaceXValues([min_story_avail_wall]).max - lefty = getSurfaceYValues([min_story_avail_wall]).max + leftx = get_surface_x_values([min_story_avail_wall]).max + lefty = get_surface_y_values([min_story_avail_wall]).max else - leftx = getSurfaceXValues([min_story_avail_wall]).min - lefty = getSurfaceYValues([min_story_avail_wall]).min + leftx = get_surface_x_values([min_story_avail_wall]).min + lefty = get_surface_y_values([min_story_avail_wall]).min end - bottomz = getSurfaceZValues([min_story_avail_wall]).min + bottomz = get_surface_z_values([min_story_avail_wall]).min [upperleft, lowerleft, lowerright, upperright].each do |coord| newx = UnitConversions.convert(leftx + multx * coord[0], 'ft', 'm') @@ -1681,8 +1683,8 @@ def self.create_single_family_attached(model:, next unless adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -1782,7 +1784,7 @@ def self.create_single_family_attached(model:, os_facade = get_facade_for_surface(surface) if adb_facades.include? os_facade surface.setOutsideBoundaryCondition('Adiabatic') - elsif getSurfaceZValues([surface]).min < 0 + elsif get_surface_z_values([surface]).min < 0 surface.setOutsideBoundaryCondition('Foundation') if foundation_type != HPXML::FoundationTypeAmbient surface.setOutsideBoundaryCondition('Outdoors') if foundation_type == HPXML::FoundationTypeAmbient else @@ -1835,8 +1837,8 @@ def self.create_single_family_attached(model:, next unless adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -2057,8 +2059,8 @@ def self.create_apartment(model:, if surface.surfaceType == 'Wall' if adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -2141,7 +2143,7 @@ def self.create_apartment(model:, os_facade = get_facade_for_surface(surface) if adb_facades.include?(os_facade) && (os_facade != 'RoofCeiling') && (os_facade != 'Floor') surface.setOutsideBoundaryCondition('Adiabatic') - elsif getSurfaceZValues([surface]).min < 0 + elsif get_surface_z_values([surface]).min < 0 surface.setOutsideBoundaryCondition('Foundation') if foundation_type != HPXML::FoundationTypeAmbient surface.setOutsideBoundaryCondition('Outdoors') if foundation_type == HPXML::FoundationTypeAmbient else @@ -2191,8 +2193,8 @@ def self.create_apartment(model:, next unless adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -2226,7 +2228,7 @@ def self.create_apartment(model:, # Shift all spaces up by foundation height for ambient foundation def self.apply_ambient_foundation_shift(model, foundation_type, foundation_height) - if foundation_type == HPXML::FoundationTypeAmbient + if [HPXML::FoundationTypeAmbient, HPXML::FoundationTypeBellyAndWing].include?(foundation_type) m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) m[2, 3] = -foundation_height model.getSpaces.each do |space| @@ -2368,9 +2370,9 @@ def self.get_edges_for_surfaces(surfaces, use_top_edge) edge_counter = 0 surfaces.each do |surface| if use_top_edge - matchz = getSurfaceZValues([surface]).max + matchz = get_surface_z_values([surface]).max else - matchz = getSurfaceZValues([surface]).min + matchz = get_surface_z_values([surface]).min end # get vertices @@ -2428,46 +2430,6 @@ def self.get_facade_for_surface(surface) return facade end - # Return an array of x values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. - def self.getSurfaceXValues(surfaceArray) - xValueArray = [] - surfaceArray.each do |surface| - surface.vertices.each do |vertex| - xValueArray << UnitConversions.convert(vertex.x, 'm', 'ft').round(5) - end - end - return xValueArray - end - - # Return an array of y values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. - def self.getSurfaceYValues(surfaceArray) - yValueArray = [] - surfaceArray.each do |surface| - surface.vertices.each do |vertex| - yValueArray << UnitConversions.convert(vertex.y, 'm', 'ft').round(5) - end - end - return yValueArray - end - - def self.get_surface_length(surface) - xvalues = getSurfaceXValues([surface]) - yvalues = getSurfaceYValues([surface]) - xrange = xvalues.max - xvalues.min - yrange = yvalues.max - yvalues.min - if xrange > yrange - return xrange - end - - return yrange - end - - def self.get_surface_height(surface) - zvalues = getSurfaceZValues([surface]) - zrange = zvalues.max - zvalues.min - return zrange - end - def self.get_conditioned_attic_height(spaces) # gable roof type get_conditioned_spaces(spaces).each do |space| @@ -2494,8 +2456,8 @@ def self.get_conditioned_attic_height(spaces) end def self.surface_is_rim_joist(surface, height) - return false unless (height - Geometry.get_surface_height(surface)).abs < 0.00001 - return false unless Geometry.getSurfaceZValues([surface]).max > 0 + return false unless (height - get_surface_height(surface)).abs < 0.00001 + return false unless get_surface_z_values([surface]).max > 0 return true end diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index 96be8fa38c..16fbfa5789 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -680,7 +680,7 @@ def _set_measure_argument_values(hpxml_file, args) args['ducts_return_leakage_to_outside_value'] = 0.0 args['ducts_supply_location'] = HPXML::LocationLivingSpace args['ducts_return_location'] = HPXML::LocationLivingSpace - args['heating_system_2_type'] = HPXML::HVACTypePortableHeater + args['heating_system_2_type'] = HPXML::HVACTypeSpaceHeater args['heating_system_2_heating_capacity'] = 16000.0 elsif ['extra-second-heating-system-fireplace-to-heating-system.xml'].include? hpxml_file args['heating_system_type'] = HPXML::HVACTypeElectricResistance @@ -707,7 +707,7 @@ def _set_measure_argument_values(hpxml_file, args) args['ducts_return_leakage_to_outside_value'] = 0.0 args['ducts_supply_location'] = HPXML::LocationLivingSpace args['ducts_return_location'] = HPXML::LocationLivingSpace - args['heating_system_2_type'] = HPXML::HVACTypePortableHeater + args['heating_system_2_type'] = HPXML::HVACTypeSpaceHeater args['heating_system_2_heating_capacity'] = 16000.0 elsif ['extra-second-heating-system-fireplace-to-heat-pump.xml'].include? hpxml_file args['heating_system_type'] = 'none' diff --git a/BuildResidentialScheduleFile/measure.xml b/BuildResidentialScheduleFile/measure.xml index 96e3ea0fb5..d9945c2856 100644 --- a/BuildResidentialScheduleFile/measure.xml +++ b/BuildResidentialScheduleFile/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 build_residential_schedule_file f770b2db-1a9f-4e99-99a7-7f3161a594b1 - 35b84be2-dc0f-4773-a72a-1da40dcaab8c - 20230421T211336Z + 50fbf761-e7c9-4bba-a15a-85e685869f95 + 2023-06-23T14:52:00Z 03F02484 BuildResidentialScheduleFile Schedule File Builder @@ -85,6 +85,23 @@ + + + OpenStudio + 3.2.0 + 3.2.0 + + measure.rb + rb + script + 7FA6CE2D + + + README.md + md + resource + A8A141BE + clothes_dryer_consumption_dist.csv csv @@ -109,6 +126,12 @@ resource 7F0BFEDA + + constants.rb + rb + resource + EED44A60 + cooking_consumption_dist.csv csv @@ -157,6 +180,18 @@ resource 419E598E + + schedules.rb + rb + resource + 51D9D15E + + + schedules_config.md + md + resource + 916BF4C3 + shower_cluster_size_probability.csv csv @@ -853,41 +888,6 @@ resource 5FC694CF - - README.md - md - resource - AAB89065 - - - schedules_config.md - md - resource - 916BF4C3 - - - constants.rb - rb - resource - EED44A60 - - - schedules.rb - rb - resource - 51D9D15E - - - - OpenStudio - 3.2.0 - 3.2.0 - - measure.rb - rb - script - 7FA6CE2D - build_residential_schedule_file_test.rb rb diff --git a/BuildResidentialScheduleFile/resources/README.md b/BuildResidentialScheduleFile/resources/README.md index 2d892b6a8a..01341703a2 100644 --- a/BuildResidentialScheduleFile/resources/README.md +++ b/BuildResidentialScheduleFile/resources/README.md @@ -1,44 +1,69 @@ -The Stochastic Occupancy Modeling introduces major change to most occupant-related schedules. -Occupant activities are now generated on-the-fly and saved to .csv files used by Schedule:File objects. +Stochastic Occupancy Modeling introduces major changes to most occupant-related schedules. +Occupant activities are now generated on-the-fly and saved to CSV files used by `OpenStudio` Schedule:File objects. Schedules are generated using time-inhomogenous Markov chains derived from American Time Use Survey data, supplemented with sampling duration and power level from NEEA RBSA data, as well as DHW draw duration and flow rate data from Aquacraft/AWWA data. -It outputs a schedule.csv file (which will be available inside generated_files folder of each building simulation output). -The schedule.csv file contains the following columns: occupants, cooking_range, plug_loads, lighting_interior, lighting_exterior, lighting_garage, lighting_exterior_holiday, clothes_washer, clothes_dryer, dishwasher, baths, showers, sinks, ceiling_fan, clothes_dryer_exhaust, clothes_washer_power, dishwasher_power, sleep, vacancy. - -Each of the columns, except the occupants, sleep, and vacancy represent schedule values (kW for power schedules, and gallons per minute for water schedules) normalized using universal maximum values found in constants.rb. - -The occupants column represents the fractional percent of occupants present out of the total number of occupants assigned to the unit. -The sleep column represents the fractional percent of the total number of occupants who are sleeping. -And the vacancy column will either be 0 or 1 depending upon if the vacancy period is in effect. - -There are the same number of rows as the total simulation time-step (e.g., 35040 if 15-min, 8760 if hourly (8784, if leap year)). - -The ScheduleGenerator class uses Markov chain based simulation to generate the schedule.csv. To support that, several pre-generated set of files are used: - -`weekday` -`weekend` +The `BuildResidentialScheduleFile` measure outputs a schedule CSV file (available inside the `run` folder of each building simulation output). +The schedule CSV file contains the following columns: +* `occupants` +* `lighting_interior` +* `lighting_garage` +* `cooking_range` +* `dishwasher` +* `clothes_washer` +* `clothes_dryer` +* `ceiling_fan` +* `plug_loads_other` +* `plug_loads_tv` +* `hot_water_dishwasher` +* `hot_water_clothes_washer` +* `hot_water_fixtures` +* `sleep`* + +*Column `sleep` is optionally exported only when "debug" mode is enabled. + +Each of the columns, except `occupants`, represent schedule values (kW for power schedules, and gallons per minute for water schedules) normalized using universal maximum values found in `constants.rb`. + +The `occupants` column represents the fractional percent of occupants present out of the total number of occupants assigned to the unit. +The `sleep` column represents the fractional percent of the total number of occupants who are sleeping. + +There are the same number of rows as the total simulation time-step (e.g., 35040 if 15-min, 8760 if hourly [8784, if leap year]). + +The `ScheduleGenerator` class uses Markov chain based simulation to generate the schedule.csv. +To support that, several pre-generated set of files are used, contained in the following folders: +* `weekday` +* `weekend` These two folders contain the Markov chain initial probability, Markov chain transition and also appliance duration probabilities csv files. The appliance duration probabilities here are used during the Markov chain simulation to determine duration of various appliances. -The files are divided into four clusters (cluster0 to cluster3), for 4 types of occupant behavior types. +The files are divided into four clusters (cluster0 to cluster3), for 4 occupant behavior types. -`_power_consumption_dist.csv` +`_consumption_dist.csv` These files contain the 15-min power consumption kWh samples for the given end use, obtained from RBSA (average 15-min end use kWh for each submetered home; N=number of homes with that end use). The schedule generator randomly picks one of these values to determine the power level of the appliance schedule. -`_power_duration_dist.csv` +`_duration_dist.csv` These files contain the samples of runtime duration of different end uses, in 15-min increments, generated from the RBSA dataset. -So, a value of 3 means, 45 minutes. +So, a value of 3 means 45 minutes. Each row is for one household, and each column is the duration of one instance of the appliance running. +For the above `_consumption_dist.csv` and `_duration_dist.csv` files, `` may be: +* `clothes_dryer` +* `clothes_washer` +* `cooking` +* `dishwasher` + `_cluster_size_probability.csv` These files contain the probability distribution of the event cluster size for different domestic hot water end uses, obtained from the HotWaterEventScheduleGenerator Excel file. The first row is the probability of a cluster size of 1 event, second row for probability of cluster size of 2 events and so on. -`schedule_config.json` +For the above `_cluster_size_probability.csv` files, `` may be: +* `hot_water_clothes_washer` +* `hot_water_dishwasher` +* `shower` -This JSON file contains various miscellaneous configurations for the schedule generator, and their meanings and sources are defined within the file. +`constants.rb` +This file contains various miscellaneous configurations for the schedule generator, and their meanings and sources are defined within the file. diff --git a/Changelog.md b/Changelog.md index 13bb0521ea..fa5ae51467 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,22 @@ +## OpenStudio-HPXML v1.7.0 + +__New Features__ +- **Breaking change**: Updates to newer proposed HPXML v4.0: + - Replaces `PortableHeater` and `FixedHeater` with `SpaceHeater`. +- Adds manufactured home belly as a foundation type and allows modeling ducts in a manufactured home belly. +- Output updates: + - Adds "Peak Electricity: Annual Total (W)" output. + - Adds battery resilience hours output; allows requesting timeseries output. + - ReportUtilityBills measure: Allows reporting monthly utility bills in addition to (or instead of) annual bills. + +__Bugfixes__ +- Fixes lighting multipliers not being applied when kWh/yr inputs are used. +- Fixes running detailed schedules with mixed timesteps (e.g., hourly heating/cooling setpoints and 15-minutely miscellaneous plug load schedules). +- Fixes calculation of utility bill fixed costs for simulations with abbreviated run periods. +- Fixes error if heat pump `CompressorLockoutTemperature` == `BackupHeatingLockoutTemperature`. +- Fixes possible "Electricity category end uses do not sum to total" error for a heat pump w/o backup. +- Fixes error if conditioned basement has `InsulationSpansEntireSlab=true`. + ## OpenStudio-HPXML v1.6.0 __New Features__ diff --git a/HPXMLtoOpenStudio/measure.rb b/HPXMLtoOpenStudio/measure.rb index f3b2afe5bc..aa20ffaace 100644 --- a/HPXMLtoOpenStudio/measure.rb +++ b/HPXMLtoOpenStudio/measure.rb @@ -632,6 +632,12 @@ def self.add_floors(runner, model, spaces) surface.setWindExposure('NoWind') elsif floor.is_floor surface.setSunExposure('NoSun') + if floor.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly + foundation = @hpxml.foundations.find { |x| x.to_location == floor.exterior_adjacent_to } + if foundation.belly_wing_skirt_present + surface.setWindExposure('NoWind') + end + end end # Apply construction @@ -675,15 +681,8 @@ def self.add_foundation_walls_slabs(runner, model, weather, spaces) foundation_types = @hpxml.slabs.map { |s| s.interior_adjacent_to }.uniq foundation_types.each do |foundation_type| - # Get attached foundation walls/slabs - fnd_walls = [] + # Get attached slabs/foundation walls slabs = [] - @hpxml.foundation_walls.each do |foundation_wall| - next unless foundation_wall.interior_adjacent_to == foundation_type - next if foundation_wall.net_area < 1.0 # skip modeling net surface area for surfaces comprised entirely of subsurface area - - fnd_walls << foundation_wall - end @hpxml.slabs.each do |slab| next unless slab.interior_adjacent_to == foundation_type @@ -691,96 +690,60 @@ def self.add_foundation_walls_slabs(runner, model, weather, spaces) slab.exposed_perimeter = [slab.exposed_perimeter, 1.0].max # minimum value to prevent error if no exposed slab end - # Calculate combinations of slabs/walls for each Kiva instance - kiva_instances = get_kiva_instances(fnd_walls, slabs) - - # Obtain some wall/slab information - fnd_wall_lengths = {} - fnd_walls.each do |foundation_wall| - next unless foundation_wall.is_exterior - - fnd_wall_lengths[foundation_wall] = foundation_wall.area / foundation_wall.height - end - slab_exp_perims = {} - slab_areas = {} slabs.each do |slab| - slab_exp_perims[slab] = slab.exposed_perimeter - slab_areas[slab] = slab.area - end - total_slab_exp_perim = slab_exp_perims.values.sum(0.0) - total_slab_area = slab_areas.values.sum(0.0) - total_fnd_wall_length = fnd_wall_lengths.values.sum(0.0) - - no_wall_slab_exp_perim = {} + slab_frac = slab.exposed_perimeter / slabs.map { |s| s.exposed_perimeter }.sum + ext_fnd_walls = slab.connected_foundation_walls.select { |fw| fw.net_area >= 1.0 && fw.is_exterior } - kiva_instances.each do |foundation_wall, slab| - # Apportion referenced walls/slabs for this Kiva instance - slab_frac = slab_exp_perims[slab] / total_slab_exp_perim - if total_fnd_wall_length > 0 - fnd_wall_frac = fnd_wall_lengths[foundation_wall] / total_fnd_wall_length + if ext_fnd_walls.empty? + # Slab w/o foundation walls + add_foundation_slab(model, weather, spaces, slab, -1 * slab.depth_below_grade.to_f, slab.exposed_perimeter, nil) else - fnd_wall_frac = 1.0 # Handle slab foundation type - end - - kiva_foundation = nil - if not foundation_wall.nil? - # Add exterior foundation wall surface - kiva_foundation = add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, - total_fnd_wall_length, total_slab_exp_perim) - end + # Slab w/ foundation walls + ext_fnd_walls_length = ext_fnd_walls.map { |fw| fw.area / fw.height }.sum + remaining_exposed_length = slab.exposed_perimeter + + # Since we don't know which FoundationWalls are adjacent to which Slabs, we apportion + # each FoundationWall to each slab. + ext_fnd_walls.each do |fnd_wall| + # Both the foundation wall and slab must have same exposed length to prevent Kiva errors. + # For the foundation wall, we are effectively modeling the net *exposed* area. + fnd_wall_length = fnd_wall.area / fnd_wall.height + apportioned_exposed_length = fnd_wall_length / ext_fnd_walls_length * slab.exposed_perimeter # Slab exposed perimeter apportioned to this foundation wall + apportioned_total_length = fnd_wall_length * slab_frac # Foundation wall length apportioned to this slab + exposed_length = [apportioned_exposed_length, apportioned_total_length].min + remaining_exposed_length -= exposed_length + + kiva_foundation = add_foundation_wall(runner, model, spaces, fnd_wall, exposed_length, fnd_wall_length) + add_foundation_slab(model, weather, spaces, slab, -1 * fnd_wall.depth_below_grade, exposed_length, kiva_foundation) + end - # Add single combined foundation slab surface (for similar surfaces) - slab_exp_perim = slab_exp_perims[slab] * fnd_wall_frac - slab_area = slab_areas[slab] * fnd_wall_frac - no_wall_slab_exp_perim[slab] = 0.0 if no_wall_slab_exp_perim[slab].nil? - if (not foundation_wall.nil?) && (slab_exp_perim > fnd_wall_lengths[foundation_wall] * slab_frac) - # Keep track of no-wall slab exposed perimeter - no_wall_slab_exp_perim[slab] += (slab_exp_perim - fnd_wall_lengths[foundation_wall] * slab_frac) - - # Reduce this slab's exposed perimeter so that EnergyPlus does not automatically - # create a second no-wall Kiva instance for each of our Kiva instances. - # Instead, we will later create our own Kiva instance to account for it. - # This reduces the number of Kiva instances we end up with. - exp_perim_frac = (fnd_wall_lengths[foundation_wall] * slab_frac) / slab_exp_perim - slab_exp_perim *= exp_perim_frac - slab_area *= exp_perim_frac - end - if not foundation_wall.nil? - z_origin = -1 * foundation_wall.depth_below_grade # Position based on adjacent foundation walls - else - z_origin = -1 * slab.depth_below_grade + if remaining_exposed_length > 1 # Skip if a small length (e.g., due to rounding) + # The slab's exposed perimeter exceeds the sum of attached exterior foundation wall lengths. + # This may legitimately occur for a walkout basement, where a portion of the slab has no + # adjacent foundation wall. + add_foundation_slab(model, weather, spaces, slab, 0, remaining_exposed_length, nil) + end end - add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, - slab_area, z_origin, kiva_foundation) - end - - # For each slab, create a no-wall Kiva slab instance if needed. - slabs.each do |slab| - next unless no_wall_slab_exp_perim[slab] > 1.0 - - z_origin = 0 - slab_area = total_slab_area * no_wall_slab_exp_perim[slab] / total_slab_exp_perim - add_foundation_slab(model, weather, spaces, slab, no_wall_slab_exp_perim[slab], - slab_area, z_origin, nil) end # Interzonal foundation wall surfaces # The above-grade portion of these walls are modeled as EnergyPlus surfaces with standard adjacency. # The below-grade portion of these walls (in contact with ground) are not modeled, as Kiva does not # calculate heat flow between two zones through the ground. - fnd_walls.each do |foundation_wall| - next unless foundation_wall.is_interior + int_fnd_walls = @hpxml.foundation_walls.select { |fw| fw.is_interior && fw.interior_adjacent_to == foundation_type } + int_fnd_walls.each do |fnd_wall| + next unless fnd_wall.is_interior - ag_height = foundation_wall.height - foundation_wall.depth_below_grade - ag_net_area = foundation_wall.net_area * ag_height / foundation_wall.height + ag_height = fnd_wall.height - fnd_wall.depth_below_grade + ag_net_area = fnd_wall.net_area * ag_height / fnd_wall.height next if ag_net_area < 1.0 length = ag_net_area / ag_height z_origin = -1 * ag_height - if foundation_wall.azimuth.nil? + if fnd_wall.azimuth.nil? azimuth = @default_azimuths[0] # Arbitrary direction, doesn't receive exterior incident solar else - azimuth = foundation_wall.azimuth + azimuth = fnd_wall.azimuth end vertices = Geometry.create_wall_vertices(length, ag_height, z_origin, azimuth) @@ -789,10 +752,10 @@ def self.add_foundation_walls_slabs(runner, model, weather, spaces) surface.additionalProperties.setFeature('Azimuth', azimuth) surface.additionalProperties.setFeature('Tilt', 90.0) surface.additionalProperties.setFeature('SurfaceType', 'FoundationWall') - surface.setName(foundation_wall.id) + surface.setName(fnd_wall.id) surface.setSurfaceType('Wall') - set_surface_interior(model, spaces, surface, foundation_wall) - set_surface_exterior(model, spaces, surface, foundation_wall) + set_surface_interior(model, spaces, surface, fnd_wall) + set_surface_exterior(model, spaces, surface, fnd_wall) surface.setSunExposure('NoSun') surface.setWindExposure('NoWind') @@ -801,57 +764,50 @@ def self.add_foundation_walls_slabs(runner, model, weather, spaces) wall_type = HPXML::WallTypeConcrete inside_film = Material.AirFilmVertical outside_film = Material.AirFilmVertical - assembly_r = foundation_wall.insulation_assembly_r_value - mat_int_finish = Material.InteriorFinishMaterial(foundation_wall.interior_finish_type, foundation_wall.interior_finish_thickness) + assembly_r = fnd_wall.insulation_assembly_r_value + mat_int_finish = Material.InteriorFinishMaterial(fnd_wall.interior_finish_type, fnd_wall.interior_finish_thickness) if assembly_r.nil? - concrete_thick_in = foundation_wall.thickness - int_r = foundation_wall.insulation_interior_r_value - ext_r = foundation_wall.insulation_exterior_r_value + concrete_thick_in = fnd_wall.thickness + int_r = fnd_wall.insulation_interior_r_value + ext_r = fnd_wall.insulation_exterior_r_value mat_concrete = Material.Concrete(concrete_thick_in) mat_int_finish_rvalue = mat_int_finish.nil? ? 0.0 : mat_int_finish.rvalue assembly_r = int_r + ext_r + mat_concrete.rvalue + mat_int_finish_rvalue + inside_film.rvalue + outside_film.rvalue end mat_ext_finish = nil - Constructions.apply_wall_construction(runner, model, [surface], foundation_wall.id, wall_type, assembly_r, + Constructions.apply_wall_construction(runner, model, [surface], fnd_wall.id, wall_type, assembly_r, mat_int_finish, inside_film, outside_film, mat_ext_finish, nil, nil) end end end - def self.add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, - total_fnd_wall_length, total_slab_exp_perim) - - net_area = foundation_wall.net_area * slab_frac - gross_area = foundation_wall.area * slab_frac + def self.add_foundation_wall(runner, model, spaces, foundation_wall, exposed_length, fnd_wall_length) + exposed_fraction = exposed_length / fnd_wall_length + net_exposed_area = foundation_wall.net_area * exposed_fraction + gross_exposed_area = foundation_wall.area * exposed_fraction height = foundation_wall.height height_ag = height - foundation_wall.depth_below_grade z_origin = -1 * foundation_wall.depth_below_grade - length = gross_area / height if foundation_wall.azimuth.nil? azimuth = @default_azimuths[0] # Arbitrary; solar incidence in Kiva is applied as an orientation average (to the above grade portion of the wall) else azimuth = foundation_wall.azimuth end - if total_fnd_wall_length > total_slab_exp_perim - # Calculate exposed section of wall based on slab's total exposed perimeter. - length *= total_slab_exp_perim / total_fnd_wall_length - end + return if exposed_length < 0.1 # Avoid Kiva error if exposed wall length is too small - return if length < 0.1 # Avoid Kiva error if exposed wall length is too small - - if gross_area > net_area + if gross_exposed_area > net_exposed_area # Create a "notch" in the wall to account for the subsurfaces. This ensures that # we preserve the appropriate wall height, length, and area for Kiva. - subsurface_area = gross_area - net_area + subsurface_area = gross_exposed_area - net_exposed_area else subsurface_area = 0 end - vertices = Geometry.create_wall_vertices(length, height, z_origin, azimuth, subsurface_area: subsurface_area) + vertices = Geometry.create_wall_vertices(exposed_length, height, z_origin, azimuth, subsurface_area: subsurface_area) surface = OpenStudio::Model::Surface.new(vertices, model) - surface.additionalProperties.setFeature('Length', length) + surface.additionalProperties.setFeature('Length', exposed_length) surface.additionalProperties.setFeature('Azimuth', azimuth) surface.additionalProperties.setFeature('Tilt', 90.0) surface.additionalProperties.setFeature('SurfaceType', 'FoundationWall') @@ -907,10 +863,10 @@ def self.add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, return surface.adjacentFoundation.get end - def self.add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, - slab_area, z_origin, kiva_foundation) - - slab_tot_perim = slab_exp_perim + def self.add_foundation_slab(model, weather, spaces, slab, z_origin, exposed_length, kiva_foundation) + exposed_fraction = exposed_length / slab.exposed_perimeter + slab_tot_perim = exposed_length + slab_area = slab.area * exposed_fraction if slab_tot_perim**2 - 16.0 * slab_area <= 0 # Cannot construct rectangle with this perimeter/area. Some of the # perimeter is presumably not exposed, so bump up perimeter value. @@ -966,7 +922,7 @@ def self.add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, Constructions.apply_foundation_slab(model, surface, "#{slab.id} construction", slab_under_r, slab_under_width, slab_gap_r, slab_perim_r, slab_perim_depth, slab_whole_r, slab.thickness, - slab_exp_perim, mat_carpet, soil_k_in, kiva_foundation) + exposed_length, mat_carpet, soil_k_in, kiva_foundation) kiva_foundation = surface.adjacentFoundation.get @@ -1464,8 +1420,7 @@ def self.add_heating_system(runner, model, spaces, airloop_map) sequential_heat_load_fracs, living_zone, @hvac_unavailable_periods) elsif [HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeFireplace].include? heating_system.heating_system_type @@ -2454,7 +2409,7 @@ def self.set_surface_interior(model, spaces, surface, hpxml_surface) def self.set_surface_exterior(model, spaces, surface, hpxml_surface) exterior_adjacent_to = hpxml_surface.exterior_adjacent_to is_adiabatic = hpxml_surface.is_adiabatic - if exterior_adjacent_to == HPXML::LocationOutside + if [HPXML::LocationOutside, HPXML::LocationManufacturedHomeUnderBelly].include? exterior_adjacent_to surface.setOutsideBoundaryCondition('Outdoors') elsif exterior_adjacent_to == HPXML::LocationGround surface.setOutsideBoundaryCondition('Foundation') @@ -2629,30 +2584,19 @@ def self.set_subsurface_exterior(surface, spaces, model, hpxml_surface) end end - def self.get_kiva_instances(fnd_walls, slabs) - # Identify unique Kiva foundations that are required. - kiva_fnd_walls = [] - fnd_walls.each do |foundation_wall| - next unless foundation_wall.is_exterior - - kiva_fnd_walls << foundation_wall - end - if kiva_fnd_walls.empty? # Handle slab foundation type - kiva_fnd_walls << nil - end - - kiva_slabs = slabs - - return kiva_fnd_walls.product(kiva_slabs) - end - def self.set_foundation_and_walls_top() @foundation_top = 0 + @hpxml.floors.each do |floor| + # Keeping the floor at ground level for ASHRAE 140 tests yields the expected results + if floor.is_floor && floor.is_exterior && !@apply_ashrae140_assumptions + @foundation_top = 2.0 + end + end @hpxml.foundation_walls.each do |foundation_wall| top = -1 * foundation_wall.depth_below_grade + foundation_wall.height @foundation_top = top if top > @foundation_top end - @walls_top = @foundation_top + 8.0 * @ncfl_ag + @walls_top = @foundation_top + @hpxml.building_construction.average_ceiling_height * @ncfl_ag end def self.set_heating_and_cooling_seasons() diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index d9160397bd..91378a467c 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 59be9be7-88f6-4998-8ad8-f7f64685c765 - 20230522T164611Z + 9fce494a-3cea-4587-9ae5-dc36998cc01f + 2023-07-14T21:39:19Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -122,34 +122,45 @@ - generator.rb + + OpenStudio + 3.3.0 + 3.3.0 + + measure.rb rb - resource - FC0A4F2E + script + DC90C49F - util.rb + airflow.rb rb - test - D22025B3 + resource + BCD3D2D4 - data/ashrae_622_wsf.csv - csv + battery.rb + rb resource - 308F75BA + 14852A93 - data/climate_zones.csv - csv + constants.rb + rb resource - 63C6A1E2 + D202A548 - minitest_helper.rb + constructions.rb rb resource - CDB0A906 + F6E89CBA + + + data/ashrae_622_wsf.csv + csv + resource + 308F75BA data/cambium/LRMER_95DecarbBy2035.csv @@ -182,154 +193,160 @@ 4C7D519B - schedule_files/setpoints.csv - csv + data/cambium/README.md + md resource - 706A63BC + FC171B98 - schedule_files/setpoints-10-mins.csv + data/climate_zones.csv csv resource - BC2195A6 + 63C6A1E2 - schedule_files/setpoints-cooling-only.csv + data/unavailable_periods.csv csv resource - 7465D8DD + EEB2FB66 - schedule_files/setpoints-heating-only.csv - csv + energyplus.rb + rb resource - BD935921 + 788F897B - schedule_files/setpoints-daily-schedules.csv - csv + generator.rb + rb resource - A60258DE + FC0A4F2E - schedule_files/setpoints-daily-setbacks.csv - csv + geometry.rb + rb resource - 74292B8C + DAEE7CE9 - schedule_files/water-heater-operating-modes.csv - csv + hotwater_appliances.rb + rb resource - 86F45903 + D1EC2F7F - schedule_files/water-heater-setpoints-10-mins.csv - csv + hpxml.rb + rb resource - F9C90051 + 66E3FB20 - schedule_files/water-heater-setpoints.csv - csv + hpxml_defaults.rb + rb resource - 2DFF87CD + 01987A0E - data/cambium/README.md + hpxml_schema/HPXML.xsd + xsd + resource + 16BD9A12 + + + hpxml_schema/README.md md resource - FC171B98 + D05DFB8A - simcontrols.rb - rb + hpxml_schematron/EPvalidator.xml + xml resource - 3AFD26FF + 2C4F878F - test_location.rb - rb - test - 03FE784E + hpxml_schematron/iso-schematron.xsd + xsd + resource + 2785B05C - materials.rb + hvac.rb rb resource - 24DCB986 + 26725D20 - test_simcontrols.rb + hvac_sizing.rb rb - test - CF8094A4 + resource + 44977F7D - hpxml_schematron/iso-schematron.xsd - xsd + lighting.rb + rb resource - 2785B05C + 08122D51 - utility_bills.rb + location.rb rb resource - D605D60B + 8786A75C - schedule_files/battery.csv - csv + materials.rb + rb resource - C1350909 + 24DCB986 - test_battery.rb + meta_measure.rb rb - test - E6B6B63E + resource + 26D01154 - pv.rb + minitest_helper.rb rb resource - 2D1832F9 + CDB0A906 - test_pv.rb + misc_loads.rb rb - test - 63F44A56 + resource + 581B499D - util.rb + output.rb rb resource - F3DBC2BD + 1744C3AF - hpxml_schema/README.md - md + psychrometrics.rb + rb resource - D05DFB8A + F5311570 - energyplus.rb + pv.rb rb resource - 788F897B + 2D1832F9 - constants.rb - rb + schedule_files/battery.csv + csv resource - D202A548 + C1350909 - unit_conversions.rb - rb + schedule_files/occupancy-non-stochastic.csv + csv resource - 6D8BA8E5 + 1362DD15 schedule_files/occupancy-stochastic-10-mins.csv @@ -337,6 +354,12 @@ resource D4373DC9 + + schedule_files/occupancy-stochastic-30-mins.csv + csv + resource + D4373DC9 + schedule_files/occupancy-stochastic.csv csv @@ -344,106 +367,106 @@ DEED74EA - schedule_files/occupancy-non-stochastic.csv + schedule_files/setpoints-10-mins.csv csv resource - 1362DD15 + BC2195A6 - output.rb - rb + schedule_files/setpoints-cooling-only.csv + csv resource - 9E02B1C4 + 7465D8DD - constructions.rb - rb + schedule_files/setpoints-daily-schedules.csv + csv resource - F6E89CBA + A60258DE - location.rb - rb + schedule_files/setpoints-daily-setbacks.csv + csv resource - 8786A75C + 74292B8C - data/unavailable_periods.csv + schedule_files/setpoints-heating-only.csv csv resource - EEB2FB66 + BD935921 - test_water_heater.rb - rb - test - C9C9340E + schedule_files/setpoints.csv + csv + resource + 706A63BC - test_enclosure.rb - rb - test - 1929A0E1 + schedule_files/water-heater-operating-modes.csv + csv + resource + 86F45903 - test_weather.rb - rb - test - 5B815DA9 + schedule_files/water-heater-setpoints-10-mins.csv + csv + resource + F9C90051 - test_lighting.rb - rb - test - 16756D02 + schedule_files/water-heater-setpoints.csv + csv + resource + 2DFF87CD - meta_measure.rb + schedules.rb rb resource - 26D01154 + 85C70F45 - test_miscloads.rb + simcontrols.rb rb - test - 5C446C35 + resource + 3AFD26FF - test_hotwater_appliance.rb + unit_conversions.rb rb - test - F36FD60C + resource + 6D8BA8E5 - battery.rb + util.rb rb resource - EFBD06BD + F3DBC2BD - xmlvalidator.rb + utility_bills.rb rb resource - CFCD83CD + D605D60B - test_schedules.rb + version.rb rb - test - 414F4C13 + resource + BC8EE0D7 - hpxml_schema/HPXML.xsd - xsd + waterheater.rb + rb resource - E0A455E1 + 0FD0919B - test_airflow.rb + weather.rb rb - test - 57772CD3 + resource + 04DDB59E xmlhelper.rb @@ -452,135 +475,118 @@ 17D30902 - test_hvac_sizing.rb + xmlvalidator.rb rb - test - D6D366C0 + resource + CFCD83CD - test_hvac.rb + test_airflow.rb rb test - E42B9F8E - - - misc_loads.rb - rb - resource - 581B499D + 57772CD3 - lighting.rb + test_battery.rb rb - resource - CA310A8D + test + E6B6B63E - hotwater_appliances.rb + test_defaults.rb rb - resource - D1EC2F7F + test + A744894C - schedules.rb + test_enclosure.rb rb - resource - 4B208625 + test + 925E05C1 - airflow.rb + test_generator.rb rb - resource - BCD3D2D4 + test + 9641B04E - test_validation.rb + test_hotwater_appliance.rb rb test - 84F9B6C3 - - - hpxml_schematron/EPvalidator.xml - xml - resource - 34E29E03 + F36FD60C - hpxml.rb + test_hvac.rb rb - resource - 0D093BA1 + test + E42B9F8E - test_defaults.rb + test_hvac_sizing.rb rb test - 9F95A6CF + D6D366C0 - geometry.rb + test_lighting.rb rb - resource - 8B587D3F + test + B7FC720C - version.rb + test_location.rb rb - resource - 0B7B2B30 + test + 03FE784E - test_generator.rb + test_miscloads.rb rb test - 9641B04E + 5C446C35 - waterheater.rb + test_pv.rb rb - resource - 0FD0919B + test + 63F44A56 - weather.rb + test_schedules.rb rb - resource - 04DDB59E + test + 414F4C13 - hvac_sizing.rb + test_simcontrols.rb rb - resource - E6E07CB9 + test + CF8094A4 - psychrometrics.rb + test_validation.rb rb - resource - F5311570 + test + 0B975B0D - - OpenStudio - 3.3.0 - 3.3.0 - - measure.rb + test_water_heater.rb rb - script - 2E1DFFAC + test + C9C9340E - hpxml_defaults.rb + test_weather.rb rb - resource - 738A5911 + test + 5B815DA9 - hvac.rb + util.rb rb - resource - F8084B3A + test + D22025B3 diff --git a/HPXMLtoOpenStudio/resources/battery.rb b/HPXMLtoOpenStudio/resources/battery.rb index 000aabbce9..e19201fd09 100644 --- a/HPXMLtoOpenStudio/resources/battery.rb +++ b/HPXMLtoOpenStudio/resources/battery.rb @@ -24,14 +24,17 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) end nominal_capacity_kwh = battery.nominal_capacity_kwh # kWh - usable_fraction = battery.usable_capacity_kwh / nominal_capacity_kwh + usable_capacity_kwh = battery.usable_capacity_kwh + usable_fraction = usable_capacity_kwh / nominal_capacity_kwh else if battery.usable_capacity_ah.nil? fail "UsableCapacity and NominalCapacity for Battery '#{battery.id}' must be in the same units." end nominal_capacity_kwh = get_kWh_from_Ah(battery.nominal_capacity_ah, nominal_voltage) # kWh - usable_fraction = battery.usable_capacity_ah / battery.nominal_capacity_ah + usable_capacity_ah = battery.usable_capacity_ah + usable_capacity_kwh = get_kWh_from_Ah(usable_capacity_ah, nominal_voltage) # kWh + usable_fraction = usable_capacity_ah / battery.nominal_capacity_ah end return if rated_power_output <= 0 || nominal_capacity_kwh <= 0 || nominal_voltage <= 0 @@ -163,6 +166,10 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) battery_losses_output_var.setUpdateFrequency('SystemTimestep') battery_losses_output_var.setEMSProgramOrSubroutineName(battery_losses_program) battery_losses_output_var.setUnits('J') + + elcd.additionalProperties.setFeature('HPXML_ID', battery.id) + elcs.additionalProperties.setFeature('HPXML_ID', battery.id) + elcs.additionalProperties.setFeature('UsableCapacity_kWh', Float(usable_capacity_kwh)) end def self.get_battery_default_values(has_garage = false) diff --git a/HPXMLtoOpenStudio/resources/geometry.rb b/HPXMLtoOpenStudio/resources/geometry.rb index 618603acf3..8f826119d7 100644 --- a/HPXMLtoOpenStudio/resources/geometry.rb +++ b/HPXMLtoOpenStudio/resources/geometry.rb @@ -313,7 +313,7 @@ def self.add_neighbor_shading(model, length, hpxml, walls_top) hpxml.neighbor_buildings.each do |neighbor_building| height = neighbor_building.height.nil? ? walls_top : neighbor_building.height - vertices = Geometry.create_wall_vertices(length, height, z_origin, neighbor_building.azimuth) + vertices = create_wall_vertices(length, height, z_origin, neighbor_building.azimuth) shading_surface = OpenStudio::Model::ShadingSurface.new(vertices, model) shading_surface.additionalProperties.setFeature('Azimuth', neighbor_building.azimuth) shading_surface.additionalProperties.setFeature('Distance', neighbor_building.distance) @@ -424,6 +424,15 @@ def self.get_temperature_scheduled_space_values(location) outdoor_weight: 0.0, ground_weight: 1.0, f_regain: 0.83 } # From LBNL's "Technical Background for default values used for Forced Air Systems in Proposed ASHRAE Standard 152P" + elsif location == HPXML::LocationManufacturedHomeBelly + # From LBNL's "Technical Background for default values used for Forced Air Systems in Proposed ASHRAE Standard 152P" + # 3.5 Manufactured House Belly Pan Temperatures + # FUTURE: Consider modeling the belly as a separate thermal zone so that we dynamically calculate temperatures. + return { temp_min: nil, + indoor_weight: 1.0, + outdoor_weight: 0.0, + ground_weight: 0.0, + f_regain: 0.62 } end fail "Unhandled location: #{location}." end @@ -433,14 +442,14 @@ def self.get_height_of_spaces(spaces) minzs = [] maxzs = [] spaces.each do |space| - zvalues = getSurfaceZValues(space.surfaces) + zvalues = get_surface_z_values(space.surfaces) minzs << zvalues.min + UnitConversions.convert(space.zOrigin, 'm', 'ft') maxzs << zvalues.max + UnitConversions.convert(space.zOrigin, 'm', 'ft') end return maxzs.max - minzs.min end - def self.getSurfaceZValues(surfaceArray) + def self.get_surface_z_values(surfaceArray) # Return an array of z values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. zValueArray = [] surfaceArray.each do |surface| @@ -451,6 +460,46 @@ def self.getSurfaceZValues(surfaceArray) return zValueArray end + # Return an array of x values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. + def self.get_surface_x_values(surfaceArray) + xValueArray = [] + surfaceArray.each do |surface| + surface.vertices.each do |vertex| + xValueArray << UnitConversions.convert(vertex.x, 'm', 'ft').round(5) + end + end + return xValueArray + end + + # Return an array of y values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. + def self.get_surface_y_values(surfaceArray) + yValueArray = [] + surfaceArray.each do |surface| + surface.vertices.each do |vertex| + yValueArray << UnitConversions.convert(vertex.y, 'm', 'ft').round(5) + end + end + return yValueArray + end + + def self.get_surface_length(surface) + xvalues = get_surface_x_values([surface]) + yvalues = get_surface_y_values([surface]) + xrange = xvalues.max - xvalues.min + yrange = yvalues.max - yvalues.min + if xrange > yrange + return xrange + end + + return yrange + end + + def self.get_surface_height(surface) + zvalues = get_surface_z_values([surface]) + zrange = zvalues.max - zvalues.min + return zrange + end + def self.get_z_origin_for_zone(zone) z_origins = [] zone.spaces.each do |space| @@ -471,7 +520,7 @@ def self.get_roof_pitch(surfaces) end def self.apply_occupants(model, runner, hpxml, num_occ, space, schedules_file, unavailable_periods) - occ_gain, _hrs_per_day, sens_frac, _lat_frac = Geometry.get_occupancy_default_values() + occ_gain, _hrs_per_day, sens_frac, _lat_frac = get_occupancy_default_values() activity_per_person = UnitConversions.convert(occ_gain, 'Btu/hr', 'W') # Hard-coded convective, radiative, latent, and lost fractions diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 4737a1ac78..dba571411a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -120,6 +120,7 @@ class HPXML < Object FoundationTypeCrawlspaceConditioned = 'ConditionedCrawlspace' FoundationTypeCrawlspaceUnvented = 'UnventedCrawlspace' FoundationTypeCrawlspaceVented = 'VentedCrawlspace' + FoundationTypeBellyAndWing = 'BellyAndWing' FoundationTypeSlab = 'SlabOnGrade' FoundationWallTypeConcreteBlock = 'concrete block' FoundationWallTypeConcreteBlockFoamCore = 'concrete block foam core' @@ -179,7 +180,6 @@ class HPXML < Object HVACTypeElectricResistance = 'ElectricResistance' HVACTypeEvaporativeCooler = 'evaporative cooler' HVACTypeFireplace = 'Fireplace' - HVACTypeFixedHeater = 'FixedHeater' HVACTypeFloorFurnace = 'FloorFurnace' HVACTypeFurnace = 'Furnace' HVACTypeHeatPumpAirToAir = 'air-to-air' @@ -189,9 +189,9 @@ class HPXML < Object HVACTypeHeatPumpPTHP = 'packaged terminal heat pump' HVACTypeHeatPumpRoom = 'room air conditioner with reverse cycle' HVACTypeMiniSplitAirConditioner = 'mini-split' - HVACTypePortableHeater = 'PortableHeater' - HVACTypeRoomAirConditioner = 'room air conditioner' HVACTypePTAC = 'packaged terminal air conditioner' + HVACTypeRoomAirConditioner = 'room air conditioner' + HVACTypeSpaceHeater = 'SpaceHeater' HVACTypeStove = 'Stove' HVACTypeWallFurnace = 'WallFurnace' HydronicTypeBaseboard = 'baseboard' @@ -227,6 +227,8 @@ class HPXML < Object LocationInterior = 'interior' LocationKitchen = 'kitchen' LocationLivingSpace = 'living space' + LocationManufacturedHomeBelly = 'manufactured home belly' + LocationManufacturedHomeUnderBelly = 'manufactured home underbelly' LocationOtherExterior = 'other exterior' LocationOtherHousingUnit = 'other housing unit' LocationOtherHeatedSpace = 'other heated space' @@ -1978,8 +1980,9 @@ def from_oga(hpxml) class Foundation < BaseElement ATTRS = [:id, :foundation_type, :vented_crawlspace_sla, :within_infiltration_volume, - :attached_to_slab_idrefs, :attached_to_floor_idrefs, :attached_to_foundation_wall_idrefs, - :attached_to_wall_idrefs, :attached_to_rim_joist_idrefs] + :belly_wing_skirt_present, :attached_to_slab_idrefs, :attached_to_floor_idrefs, + :attached_to_foundation_wall_idrefs, :attached_to_wall_idrefs, + :attached_to_rim_joist_idrefs] attr_accessor(*ATTRS) def attached_slabs @@ -2056,6 +2059,8 @@ def to_location return LocationCrawlspaceConditioned elsif @foundation_type == FoundationTypeSlab return LocationLivingSpace + elsif @foundation_type == FoundationTypeBellyAndWing + return LocationManufacturedHomeUnderBelly else fail "Unexpected foundation type: '#{@foundation_type}'." end @@ -2122,6 +2127,9 @@ def to_oga(doc) elsif @foundation_type == FoundationTypeCrawlspaceConditioned crawlspace = XMLHelper.add_element(foundation_type_el, 'Crawlspace') XMLHelper.add_element(crawlspace, 'Conditioned', true, :boolean) + elsif @foundation_type == FoundationTypeBellyAndWing + belly_and_wing = XMLHelper.add_element(foundation_type_el, 'BellyAndWing') + XMLHelper.add_element(belly_and_wing, 'SkirtPresent', @belly_wing_skirt_present, :boolean, @belly_wing_skirt_present_isdefaulted) unless @belly_wing_skirt_present.nil? else fail "Unhandled foundation type '#{@foundation_type}'." end @@ -2179,6 +2187,9 @@ def from_oga(foundation) @foundation_type = FoundationTypeAmbient elsif XMLHelper.has_element(foundation, 'FoundationType/AboveApartment') @foundation_type = FoundationTypeAboveApartment + elsif XMLHelper.has_element(foundation, 'FoundationType/BellyAndWing') + @foundation_type = FoundationTypeBellyAndWing + @belly_wing_skirt_present = XMLHelper.get_value(foundation, 'FoundationType/BellyAndWing/SkirtPresent', :boolean) end if @foundation_type == FoundationTypeCrawlspaceVented @vented_crawlspace_sla = XMLHelper.get_value(foundation, "VentilationRate[UnitofMeasure='#{UnitsSLA}']/Value", :float) @@ -2419,6 +2430,10 @@ def is_conditioned return HPXML::is_conditioned(self) end + def net_area + return area + end + def delete @hpxml_object.rim_joists.delete(self) @hpxml_object.foundations.each do |foundation| @@ -2727,6 +2742,26 @@ def net_area return val end + def connected_slabs + return @hpxml_object.slabs.select { |s| s.connected_foundation_walls.include? self } + end + + def exposed_fraction + # Calculate total slab exposed perimeter + slab_exposed_length = connected_slabs.select { |s| s.interior_adjacent_to == interior_adjacent_to }.map { |s| s.exposed_perimeter }.sum + + # Calculate total length of exterior foundation walls + ext_adjacent_fnd_walls = connected_slabs.map { |s| s.connected_foundation_walls.select { |fw| fw.is_exterior } }.flatten.uniq + wall_total_length = ext_adjacent_fnd_walls.map { |fw| fw.area / fw.height }.sum + + # Calculate exposed fraction + if slab_exposed_length < wall_total_length + return slab_exposed_length / wall_total_length + end + + return 1.0 + end + def is_exterior if @exterior_adjacent_to == LocationGround return true @@ -2896,11 +2931,7 @@ def is_floor end def is_exterior - if @exterior_adjacent_to == LocationOutside - return true - end - - return false + return [LocationOutside, LocationManufacturedHomeUnderBelly].include?(@exterior_adjacent_to) end def is_interior @@ -3062,6 +3093,10 @@ def is_conditioned return HPXML::is_conditioned(self) end + def connected_foundation_walls + return @hpxml_object.foundation_walls.select { |fw| interior_adjacent_to == fw.interior_adjacent_to || interior_adjacent_to == fw.exterior_adjacent_to } + end + def delete @hpxml_object.slabs.delete(self) @hpxml_object.foundations.each do |foundation| @@ -3085,7 +3120,7 @@ def to_oga(doc) XMLHelper.add_element(slab, 'Area', @area, :float) unless @area.nil? XMLHelper.add_element(slab, 'Thickness', @thickness, :float, @thickness_isdefaulted) unless @thickness.nil? XMLHelper.add_element(slab, 'ExposedPerimeter', @exposed_perimeter, :float) unless @exposed_perimeter.nil? - XMLHelper.add_element(slab, 'DepthBelowGrade', @depth_below_grade, :float) unless @depth_below_grade.nil? + XMLHelper.add_element(slab, 'DepthBelowGrade', @depth_below_grade, :float, @depth_below_grade_isdefaulted) unless @depth_below_grade.nil? insulation = XMLHelper.add_element(slab, 'PerimeterInsulation') sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') if not @perimeter_insulation_id.nil? @@ -6770,6 +6805,7 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil) :exposed_perimeter] # Look for pairs of surfaces that can be collapsed + like_foundation_walls = {} surf_types.each do |surf_type, surfaces| next unless surf_types_of_interest.nil? || surf_types_of_interest.include?(surf_type) @@ -6786,6 +6822,7 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil) next if attribute.to_s.end_with? '_isdefaulted' next if attrs_to_ignore.include? attribute next if (surf_type == :foundation_walls) && ([:azimuth, :orientation].include? attribute) # Azimuth of foundation walls is irrelevant + next if (surf_type == :foundation_walls) && (attribute == :depth_below_grade) # Ignore BG depth difference; we will later calculate an effective BG depth for the combined surface next if surf.send(attribute) == surf2.send(attribute) match = false @@ -6793,6 +6830,13 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil) end next unless match + if (surf_type == :foundation_walls) && (surf.depth_below_grade != surf2.depth_below_grade) + if like_foundation_walls[surf].nil? + like_foundation_walls[surf] = [{ bgdepth: surf.depth_below_grade, length: surf.area / surf.height }] + end + like_foundation_walls[surf] << { bgdepth: surf2.depth_below_grade, length: surf2.area / surf2.height } + end + # Update values if (not surf.area.nil?) && (not surf2.area.nil?) surf.area += surf2.area @@ -6821,6 +6865,11 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil) end end end + + like_foundation_walls.each do |foundation_wall, properties| + # Calculate weighted-average (by length) below-grade depth + foundation_wall.depth_below_grade = properties.map { |p| p[:bgdepth] * p[:length] }.sum(0.0) / properties.map { |p| p[:length] }.sum + end end def delete_adiabatic_subsurfaces() diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 195ac60544..ad349e35a2 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -602,20 +602,36 @@ def self.apply_attics(hpxml) end def self.apply_foundations(hpxml) - return unless hpxml.has_location(HPXML::LocationCrawlspaceVented) + if hpxml.has_location(HPXML::LocationCrawlspaceVented) + vented_crawls = hpxml.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } + if vented_crawls.empty? + hpxml.foundations.add(id: 'VentedCrawlspace', + foundation_type: HPXML::FoundationTypeCrawlspaceVented) + vented_crawls << hpxml.foundations[-1] + end + vented_crawls.each do |vented_crawl| + next unless vented_crawl.vented_crawlspace_sla.nil? - vented_crawls = hpxml.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } - if vented_crawls.empty? - hpxml.foundations.add(id: 'VentedCrawlspace', - foundation_type: HPXML::FoundationTypeCrawlspaceVented) - vented_crawls << hpxml.foundations[-1] + vented_crawl.vented_crawlspace_sla = Airflow.get_default_vented_crawl_sla() + vented_crawl.vented_crawlspace_sla_isdefaulted = true + break # EPvalidator.xml only allows a single ventilation rate + end end - vented_crawls.each do |vented_crawl| - next unless vented_crawl.vented_crawlspace_sla.nil? - vented_crawl.vented_crawlspace_sla = Airflow.get_default_vented_crawl_sla() - vented_crawl.vented_crawlspace_sla_isdefaulted = true - break # EPvalidator.xml only allows a single ventilation rate + if hpxml.has_location(HPXML::LocationManufacturedHomeUnderBelly) + belly_and_wing_foundations = hpxml.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeBellyAndWing } + if belly_and_wing_foundations.empty? + hpxml.foundations.add(id: 'BellyAndWing', + foundation_type: HPXML::FoundationTypeBellyAndWing) + belly_and_wing_foundations << hpxml.foundations[-1] + end + belly_and_wing_foundations.each do |foundation| + next unless foundation.belly_wing_skirt_present.nil? + + foundation.belly_wing_skirt_present_isdefaulted = true + foundation.belly_wing_skirt_present = true + break + end end end @@ -859,6 +875,16 @@ def self.apply_slabs(hpxml) slab.carpet_fraction = conditioned_slab ? 0.8 : 0.0 slab.carpet_fraction_isdefaulted = true end + if slab.connected_foundation_walls.empty? + if slab.depth_below_grade.nil? + slab.depth_below_grade = 0.0 + slab.depth_below_grade_isdefaulted = true + end + else + if !slab.depth_below_grade.nil? + slab.depth_below_grade = nil # Ignore Slab/DepthBelowGrade; use values from adjacent foundation walls instead + end + end end end @@ -1308,8 +1334,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end elsif [HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeFireplace].include? heating_system.heating_system_type if heating_system.fan_watts.nil? heating_system.fan_watts = 0.0 # W/cfm, assume no fan power @@ -1450,8 +1475,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end hpxml.heating_systems.each do |heating_system| next unless [HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeFireplace].include? heating_system.heating_system_type @@ -2989,7 +3013,7 @@ def self.get_default_flue_or_chimney_in_conditioned_space(hpxml) HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeStove, - HPXML::HVACTypeFixedHeater].include? heating_system.heating_system_type + HPXML::HVACTypeSpaceHeater].include? heating_system.heating_system_type if not heating_system.heating_efficiency_afue.nil? next if heating_system.heating_efficiency_afue >= 0.89 elsif not heating_system.heating_efficiency_percent.nil? diff --git a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd index 3ba81d5628..a1d008be90 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +++ b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd @@ -110,7 +110,7 @@ - + Id reference in the current document. Optional. If the element isn't available in the current document, don't use this. @@ -1252,11 +1252,6 @@ - - - Indicate whether the floor section is a mobile home belly or wing section. Omit if not applicable. For a mobile home, if the foundation type is a belly and wing, ExteriorAdjacentTo should be set to 'outside'. - - @@ -1615,6 +1610,7 @@ Does the system serve multiple building/dwelling units? + The fraction of supply air that is from recirculation. @@ -3123,6 +3119,11 @@ + + + Monitored throughout assessment, not just appliance testing + + @@ -3210,11 +3211,6 @@ - - - Monitored throughout assessment, not just appliance testing - - BPI Gold Sheet is one example that shows action levels based upon decision logic @@ -3856,17 +3852,10 @@ - - - - - - - - - + + @@ -4566,6 +4555,7 @@ + @@ -5674,13 +5664,12 @@ - The floor is supported on a pair of I-beams spanning across the length of the mobile home. The floor wing is the part of the floor outside the supports, and the floor belly is the part between the supports. The floor wing and belly sections are protected from outside elements including water, wind, and rodents using a wrap attached to the underside of floor joists, and may contain insulation. Use separate Floor elements to describe the floor insulation above the belly and wing sections respsectively. - + The floor is supported on a pair of I-beams spanning across the length of the manufactured home. The floor wing is the part of the floor outside the supports, and the floor belly is the part between the supports. The floor wing and belly sections are protected from outside elements including water, wind, and rodents using a wrap attached to the underside of floor joists, and may contain insulation. - + Use the 'none' choice for cases where the belly wrap is functionally missing even if pieces of the wrap are still present. @@ -7210,6 +7199,21 @@ + + + + + + + + + + + + + + + @@ -7631,6 +7635,7 @@ + @@ -8496,7 +8501,7 @@ - + @@ -8682,6 +8687,7 @@ + @@ -9912,7 +9918,7 @@ - + @@ -9920,23 +9926,9 @@ - - - - - - - - - - - - - - - + - + diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 003615af10..cd2f7c168c 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -519,7 +519,7 @@ [Floor] Expected 1 element(s) for xpath: ExteriorAdjacentTo - Expected ExteriorAdjacentTo to be 'outside' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected ExteriorAdjacentTo to be 'outside' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: InteriorAdjacentTo Expected InteriorAdjacentTo to be 'living space' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 1 element(s) for xpath: FloorType[WoodFrame | StructuralInsulatedPanel | SteelFrame | SolidConcrete] @@ -538,6 +538,13 @@ + + [FloorType=AdjacentToManufacturedHomeBelly] + + Expected 0 or 1 element(s) for xpath: ../../h:Foundations/h:Foundation/h:FoundationType/h:BellyAndWing/h:SkirtPresent + + + [Slab] @@ -546,7 +553,7 @@ Expected 1 element(s) for xpath: Area Expected 0 or 1 element(s) for xpath: Thickness Expected 1 element(s) for xpath: ExposedPerimeter - Expected 1 or more element(s) for xpath: DepthBelowGrade | InteriorAdjacentTo[text()!="living space" and text()!="garage"] + Expected 0 or 1 element(s) for xpath: DepthBelowGrade Expected 1 element(s) for xpath: PerimeterInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationDepth Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/NominalRValue @@ -704,8 +711,8 @@ Expected 1 element(s) for xpath: ../../HVACControl Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' - Expected 1 element(s) for xpath: HeatingSystemType[ElectricResistance | Furnace | WallFurnace | FloorFurnace | Boiler | Stove | PortableHeater | FixedHeater | Fireplace] + Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' + Expected 1 element(s) for xpath: HeatingSystemType[ElectricResistance | Furnace | WallFurnace | FloorFurnace | Boiler | Stove | SpaceHeater | Fireplace] Expected 1 element(s) for xpath: FractionHeatLoadServed @@ -856,25 +863,8 @@ - [HeatingSystemType=PortableHeater] - - Expected 0 element(s) for xpath: DistributionSystem - Expected 1 element(s) for xpath: HeatingSystemFuel - Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' - Expected 0 or 1 element(s) for xpath: HeatingCapacity - Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value - Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 - Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts - Expected extension/FanPowerWatts to be greater than or equal to 0 - - Percent efficiency should typically be greater than or equal to 0.5. - Heating capacity should typically be greater than or equal to 1000 Btu/hr. - - - - - [HeatingSystemType=FixedHeater] - + [HeatingSystemType=SpaceHeater] + Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' @@ -918,7 +908,7 @@ Expected 1 element(s) for xpath: ../../HVACControl Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' + Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: CoolingSystemType Expected CoolingSystemType to be 'central air conditioner' or 'room air conditioner' or 'evaporative cooler' or 'mini-split' or 'chiller' or 'cooling tower' or 'packaged terminal air conditioner' Expected 1 element(s) for xpath: CoolingSystemFuel @@ -1081,7 +1071,7 @@ Expected 1 element(s) for xpath: ../../HVACControl Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' + Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: HeatPumpType Expected HeatPumpType to be 'air-to-air' or 'mini-split' or 'ground-to-air' or 'water-loop-to-air' or 'packaged terminal heat pump' or 'room air conditioner with reverse cycle' Expected 1 element(s) for xpath: HeatPumpFuel @@ -1278,7 +1268,7 @@ Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | CompressorLockoutTemperature Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | BackupHeatingLockoutTemperature - Expected CompressorLockoutTemperature to be less than BackupHeatingLockoutTemperature + Expected CompressorLockoutTemperature to be less than or equal to BackupHeatingLockoutTemperature BackupHeatingSwitchoverTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. BackupHeatingLockoutTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. @@ -1445,7 +1435,7 @@ Expected 0 or 1 element(s) for xpath: DuctBuriedInsulationLevel Expected DuctBuriedInsulationLevel to be 'not buried' or 'partially buried' or 'fully buried' or 'deeply buried' Expected 0 or 1 element(s) for xpath: DuctLocation - Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'manufactured home belly' Expected 0 or 1 element(s) for xpath: extension/DuctSurfaceAreaMultiplier Expected extension/DuctSurfaceAreaMultiplier to be greater than or equal to 0 @@ -2371,6 +2361,13 @@ A location is specified as "attic - unvented" but no surfaces were found adjacent to this space type. + + + [LocationCheck=ManufacturedHomeBelly] + + A location is specified as "manufactured home belly" but no surfaces were found adjacent to the "manufactured home underbelly" space type. + + @@ -2402,4 +2399,11 @@ + + [BuildingTypeCheck=ManufacturedHomeBelly] + + There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home". + + + \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index f23f205525..0d84691448 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -1548,15 +1548,23 @@ def self.disaggregate_fan_or_pump(model, fan_or_pump, htg_object, clg_object, ba fan_or_pump_program.addLine("Set #{fan_or_pump_var}_#{mode} = 0") end sensors.each_with_index do |(mode, sensor), i| - str_prefix = (i == 0 ? 'If' : 'ElseIf') + if i == 0 + if_else_str = "If #{sensor.name} > 0" + elsif i == sensors.size - 1 + # Use else for last mode to make sure we don't miss any energy use + # See https://github.com/NREL/OpenStudio-HPXML/issues/1424 + if_else_str = 'Else' + else + if_else_str = "ElseIf #{sensor.name} > 0" + end if mode == 'primary_htg' && sensors.keys[i + 1] == 'backup_htg' # HP with both primary and backup heating # If both are operating, apportion energy use - fan_or_pump_program.addLine("#{str_prefix} (#{sensor.name} > 0) && (#{sensors.values[i + 1].name} > 0)") + fan_or_pump_program.addLine("#{if_else_str} && (#{sensors.values[i + 1].name} > 0)") fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{mode} = #{fan_or_pump_sensor.name} * #{sensor.name} / (#{sensor.name} + #{sensors.values[i + 1].name})") fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{sensors.keys[i + 1]} = #{fan_or_pump_sensor.name} * #{sensors.values[i + 1].name} / (#{sensor.name} + #{sensors.values[i + 1].name})") end - fan_or_pump_program.addLine("#{str_prefix} #{sensor.name} > 0") + fan_or_pump_program.addLine(if_else_str) fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{mode} = #{fan_or_pump_sensor.name}") end fan_or_pump_program.addLine('EndIf') diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 4e810d3065..d956ca66ba 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -146,10 +146,11 @@ def self.process_site_calcs_and_design_temps(weather) next if [HPXML::LocationGround].include? location if [HPXML::LocationOtherHousingUnit, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, - HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].include? location + HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab, + HPXML::LocationManufacturedHomeBelly].include? location @cool_design_temps[location] = calculate_scheduled_space_design_temps(location, @cool_setpoint, @hpxml.header.manualj_cooling_design_temp, weather.data.GroundMonthlyTemps.max) @heat_design_temps[location] = calculate_scheduled_space_design_temps(location, @heat_setpoint, @hpxml.header.manualj_heating_design_temp, weather.data.GroundMonthlyTemps.min) - elsif [HPXML::LocationOutside, HPXML::LocationRoofDeck].include? location + elsif [HPXML::LocationOutside, HPXML::LocationRoofDeck, HPXML::LocationManufacturedHomeUnderBelly].include? location @cool_design_temps[location] = @hpxml.header.manualj_cooling_design_temp @heat_design_temps[location] = @hpxml.header.manualj_heating_design_temp elsif HPXML::conditioned_locations.include? location @@ -957,7 +958,7 @@ def self.process_load_slabs(bldg_design_loads) elsif HPXML::conditioned_below_grade_locations.include? slab.interior_adjacent_to # Based on MJ 8th Ed. A12-7 and ASHRAE HoF 2013 pg 18.31 Eq 40 slab_is_insulated = false - if slab.under_slab_insulation_width > 0 && slab.under_slab_insulation_r_value > 0 + if slab.under_slab_insulation_width.to_f > 0 && slab.under_slab_insulation_r_value > 0 slab_is_insulated = true elsif slab.perimeter_insulation_depth > 0 && slab.perimeter_insulation_r_value > 0 slab_is_insulated = true @@ -966,8 +967,8 @@ def self.process_load_slabs(bldg_design_loads) end k_soil = 0.8 # Value from ASHRAE HoF, probably used by Manual J r_other = 1.47 # Value from ASHRAE HoF, probably used by Manual J - foundation_walls = @hpxml.foundation_walls.select { |fw| fw.is_thermal_boundary } - z_f = foundation_walls.map { |fw| fw.depth_below_grade }.sum(0.0) / foundation_walls.size # Average below-grade depth + ext_fnd_walls = @hpxml.foundation_walls.select { |fw| fw.is_exterior } + z_f = ext_fnd_walls.map { |fw| fw.depth_below_grade * (fw.area / fw.height) }.sum(0.0) / ext_fnd_walls.map { |fw| fw.area / fw.height }.sum # Weighted-average (by length) below-grade depth sqrt_term = [slab.exposed_perimeter**2 - 16.0 * slab.area, 0.0].max length = slab.exposed_perimeter / 4.0 + Math.sqrt(sqrt_term) / 4.0 width = slab.exposed_perimeter / 4.0 - Math.sqrt(sqrt_term) / 4.0 @@ -1162,7 +1163,8 @@ def self.get_duct_regain_factor(duct) dse_Fregain = 0.0 elsif [HPXML::LocationOtherHousingUnit, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, - HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].include? duct.duct_location + HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab, + HPXML::LocationManufacturedHomeBelly].include? duct.duct_location space_values = Geometry.get_temperature_scheduled_space_values(duct.duct_location) dse_Fregain = space_values[:f_regain] @@ -1618,8 +1620,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Heat_Airflow_Supp = 0.0 elsif [HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeFireplace].include? @heating_type @@ -3024,17 +3025,17 @@ def self.get_foundation_wall_properties(foundation_wall) if not foundation_wall.insulation_assembly_r_value.nil? wall_constr_rvalue = foundation_wall.insulation_assembly_r_value - Material.AirFilmVertical.rvalue - wall_ins_rvalues = [] - wall_ins_offsets = [] - wall_ins_heights = [] + wall_ins_rvalue_int, wall_ins_rvalue_ext = 0, 0 + wall_ins_dist_to_top_int, wall_ins_dist_to_top_ext = 0, 0 + wall_ins_dist_to_bottom_int, wall_ins_dist_to_bottom_ext = 0, 0 else wall_constr_rvalue = Material.Concrete(foundation_wall.thickness).rvalue - wall_ins_rvalues = [foundation_wall.insulation_interior_r_value, - foundation_wall.insulation_exterior_r_value] - wall_ins_offsets = [foundation_wall.insulation_interior_distance_to_top, - foundation_wall.insulation_exterior_distance_to_top] - wall_ins_heights = [foundation_wall.insulation_interior_distance_to_bottom - foundation_wall.insulation_interior_distance_to_top, - foundation_wall.insulation_exterior_distance_to_bottom - foundation_wall.insulation_exterior_distance_to_top] + wall_ins_rvalue_int = foundation_wall.insulation_interior_r_value + wall_ins_rvalue_ext = foundation_wall.insulation_exterior_r_value + wall_ins_dist_to_top_int = foundation_wall.insulation_interior_distance_to_top + wall_ins_dist_to_top_ext = foundation_wall.insulation_exterior_distance_to_top + wall_ins_dist_to_bottom_int = foundation_wall.insulation_interior_distance_to_bottom + wall_ins_dist_to_bottom_ext = foundation_wall.insulation_exterior_distance_to_bottom end k_soil = @hpxml.site.ground_conductivity @@ -3042,18 +3043,24 @@ def self.get_foundation_wall_properties(foundation_wall) u_wall_with_soil = 0.0 u_wall_without_soil = 0.0 wall_height = foundation_wall.height.ceil - for d in 1..wall_height - r_soil = (Math::PI * d / 2.0) / k_soil - + wall_depth_above_grade = foundation_wall.height - foundation_wall.depth_below_grade + for distance_to_top in 1..wall_height # Calculate R-wall at this depth r_wall = wall_constr_rvalue + Material.AirFilmVertical.rvalue # Base wall construction + interior film - if d <= (foundation_wall.height - foundation_wall.depth_below_grade) - r_wall += Material.AirFilmOutside.rvalue # Above-grade, add exterior film + if distance_to_top <= wall_depth_above_grade + # Above-grade: no soil, add exterior film + r_soil = 0.0 + r_wall += Material.AirFilmOutside.rvalue + else + # Below-grade: add soil, no exterior film + distance_to_grade = distance_to_top - wall_depth_above_grade + r_soil = (Math::PI * distance_to_grade / 2.0) / k_soil end - for i in 0..wall_ins_rvalues.size - 1 - if (d > wall_ins_offsets[i]) && (d <= wall_ins_offsets[i] + wall_ins_heights[i]) - r_wall += wall_ins_rvalues[i] # Insulation at this depth, add R-value - end + if (distance_to_top > wall_ins_dist_to_top_int) && (distance_to_top <= wall_ins_dist_to_bottom_int) + r_wall += wall_ins_rvalue_int # Interior insulation at this depth, add R-value + end + if (distance_to_top > wall_ins_dist_to_top_ext) && (distance_to_top <= wall_ins_dist_to_bottom_ext) + r_wall += wall_ins_rvalue_ext # Interior insulation at this depth, add R-value end u_wall_with_soil += 1.0 / (r_soil + r_wall) u_wall_without_soil += 1.0 / r_wall diff --git a/HPXMLtoOpenStudio/resources/lighting.rb b/HPXMLtoOpenStudio/resources/lighting.rb index d494f74b78..bce0e8f5f8 100644 --- a/HPXMLtoOpenStudio/resources/lighting.rb +++ b/HPXMLtoOpenStudio/resources/lighting.rb @@ -21,10 +21,10 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v int_kwh = calc_interior_energy(eri_version, cfa, fractions[[HPXML::LocationInterior, HPXML::LightingTypeCFL]], fractions[[HPXML::LocationInterior, HPXML::LightingTypeLFL]], - fractions[[HPXML::LocationInterior, HPXML::LightingTypeLED]], - lighting.interior_usage_multiplier) + fractions[[HPXML::LocationInterior, HPXML::LightingTypeLED]]) end int_kwh = 0.0 if int_kwh.nil? + int_kwh *= lighting.interior_usage_multiplier unless lighting.interior_usage_multiplier.nil? # Calculate exterior lighting kWh/yr ext_kwh = kwhs_per_year[HPXML::LocationExterior] @@ -32,26 +32,28 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v ext_kwh = calc_exterior_energy(eri_version, cfa, fractions[[HPXML::LocationExterior, HPXML::LightingTypeCFL]], fractions[[HPXML::LocationExterior, HPXML::LightingTypeLFL]], - fractions[[HPXML::LocationExterior, HPXML::LightingTypeLED]], - lighting.exterior_usage_multiplier) + fractions[[HPXML::LocationExterior, HPXML::LightingTypeLED]]) end ext_kwh = 0.0 if ext_kwh.nil? + ext_kwh *= lighting.exterior_usage_multiplier unless lighting.exterior_usage_multiplier.nil? # Calculate garage lighting kWh/yr - grg_kwh = kwhs_per_year[HPXML::LocationGarage] - if grg_kwh.nil? - gfa = 0 # Garage floor area - if spaces.keys.include? HPXML::LocationGarage - gfa = UnitConversions.convert(spaces[HPXML::LocationGarage].floorArea, 'm^2', 'ft^2') + gfa = 0 # Garage floor area + if spaces.keys.include? HPXML::LocationGarage + gfa = UnitConversions.convert(spaces[HPXML::LocationGarage].floorArea, 'm^2', 'ft^2') + end + if gfa > 0 + grg_kwh = kwhs_per_year[HPXML::LocationGarage] + if grg_kwh.nil? + + grg_kwh = calc_garage_energy(eri_version, gfa, + fractions[[HPXML::LocationGarage, HPXML::LightingTypeCFL]], + fractions[[HPXML::LocationGarage, HPXML::LightingTypeLFL]], + fractions[[HPXML::LocationGarage, HPXML::LightingTypeLED]]) end - - grg_kwh = calc_garage_energy(eri_version, gfa, - fractions[[HPXML::LocationGarage, HPXML::LightingTypeCFL]], - fractions[[HPXML::LocationGarage, HPXML::LightingTypeLFL]], - fractions[[HPXML::LocationGarage, HPXML::LightingTypeLED]], - lighting.garage_usage_multiplier) end grg_kwh = 0.0 if grg_kwh.nil? + grg_kwh *= lighting.garage_usage_multiplier unless lighting.garage_usage_multiplier.nil? # Add lighting to conditioned space if int_kwh > 0 @@ -212,7 +214,7 @@ def self.get_default_fractions() private - def self.calc_interior_energy(eri_version, cfa, f_int_cfl, f_int_lfl, f_int_led, interior_usage_multiplier = 1.0) + def self.calc_interior_energy(eri_version, cfa, f_int_cfl, f_int_lfl, f_int_led) return if f_int_cfl.nil? || f_int_lfl.nil? || f_int_led.nil? if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2014AEG') @@ -245,12 +247,10 @@ def self.calc_interior_energy(eri_version, cfa, f_int_cfl, f_int_lfl, f_int_led, int_kwh = 0.8 * ((4.0 - 3.0 * fF_int) / 3.7) * (455.0 + 0.8 * cfa) + 0.2 * (455.0 + 0.8 * cfa) end - int_kwh *= interior_usage_multiplier - return int_kwh end - def self.calc_exterior_energy(eri_version, cfa, f_ext_cfl, f_ext_lfl, f_ext_led, exterior_usage_multiplier = 1.0) + def self.calc_exterior_energy(eri_version, cfa, f_ext_cfl, f_ext_lfl, f_ext_led) return if f_ext_cfl.nil? || f_ext_lfl.nil? || f_ext_led.nil? if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2014AEG') @@ -283,12 +283,10 @@ def self.calc_exterior_energy(eri_version, cfa, f_ext_cfl, f_ext_lfl, f_ext_led, ext_kwh = (100.0 + 0.05 * cfa) * (1.0 - fF_ext) + 0.25 * (100.0 + 0.05 * cfa) * fF_ext end - ext_kwh *= exterior_usage_multiplier - return ext_kwh end - def self.calc_garage_energy(eri_version, gfa, f_grg_cfl, f_grg_lfl, f_grg_led, garage_usage_multiplier = 1.0) + def self.calc_garage_energy(eri_version, gfa, f_grg_cfl, f_grg_lfl, f_grg_led) return if f_grg_cfl.nil? || f_grg_lfl.nil? || f_grg_led.nil? if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2014AEG') @@ -327,8 +325,6 @@ def self.calc_garage_energy(eri_version, gfa, f_grg_cfl, f_grg_lfl, f_grg_led, g end end - grg_kwh *= garage_usage_multiplier - return grg_kwh end diff --git a/HPXMLtoOpenStudio/resources/output.rb b/HPXMLtoOpenStudio/resources/output.rb index b9853b72e9..5bf05bc91d 100644 --- a/HPXMLtoOpenStudio/resources/output.rb +++ b/HPXMLtoOpenStudio/resources/output.rb @@ -108,6 +108,11 @@ class UHT Cooling = 'Cooling' end +class RT + # Resilience Types + Battery = 'Battery' +end + class PLT # Peak Load Types Heating = 'Heating: Delivered' @@ -118,6 +123,7 @@ class PFT # Peak Fuel Types Summer = 'Summer' Winter = 'Winter' + Annual = 'Annual' end class AFT diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv new file mode 100644 index 0000000000..f1cdbdb3cd --- /dev/null +++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv @@ -0,0 +1,52561 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0.8,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.165 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.0989 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0.5,0,0,0.284,0.591,0.591,0.473,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.435,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.745,0,0.122 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.181,0.181,0,0.3,0,0,0.284,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0.3,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.122 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0.3,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0.44,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.31,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.212,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.212,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.652,0,0 +1,0.979,0.979,0,0.8,0,0,0.881,0.993,0.993,0.755,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.538,0,0 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0.603,0,0.244 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0.375,0,0 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0.239,0,0 +1,0.823,0.823,0,0.8,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.201,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.511,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.179,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.179,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.538,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0.38,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0.505,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.164 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.286 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.336 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0671 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.176 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.281 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.366 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.254 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0677 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0677 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.648 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.462 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.674,0,0 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.247,0,0.122 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.247,0,0 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.245,0,0 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.511,0,0 +0.333,0.196,0.196,0,0.8,0,0,0.279,0.579,0.579,0.467,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.244 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.366 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.641 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.0695 +1,0.798,0.798,0.3,0,0,0,0.741,0.974,0.974,0,0,0.209 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.128 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.404 +1,0.979,0.979,0.3,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.169 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.101 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.161 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0965 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.158 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.063 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.287 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0.8,0,0,0,0.487,0.617,0.617,0,0,0.0321 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.0963 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.449,0.449,1,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,1,0,0,0,0.657,0.787,0.787,0,0,0.162 +1,0.449,0.449,1,0,0,0,0.657,0.787,0.787,0,0,0.0649 +1,0.449,0.449,0.4,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.201 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.175 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.262 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.256 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.15 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.657 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.209 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.171 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.308 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0.3,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0.488 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.669,0.669,0.8,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0.7,0,0,0,0.673,0.817,0.817,0,0,0.168 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.134 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.198 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.231 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.528 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0647 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.158 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0949 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.162 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.398 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.0352 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0.3,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0664 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.279 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.0348 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.167 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,0.3,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.366 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.346 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.104 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.488 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.292 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.339 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0335 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.153 +0.667,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0.061 +0.667,0.0833,0.0833,0.2,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0.219 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.148 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0.3,0,0,0,0.487,0.617,0.617,0,0,0.299 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.0309 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0.28 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0.9,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0.5,0,0,0.403,0.692,0.692,0.516,0,0.258 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.418,0,0 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.272,0,0 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.255,0,0.0642 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.44,0,0.0642 +1,0.477,0.477,0,1,0,0,0.475,0.806,0.806,0.171,0,0 +1,0.49,0.49,0,0.9,0,0,0.322,0.806,0.806,0.171,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.444 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.0654 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.465 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.137 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.122 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.307 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.343 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.244 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.687 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.36 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0.451,0,0.122 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.462,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.543,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.489,0,0 +0.667,0.418,0.418,0,0.8,0,0,0.449,0.755,0.755,0.342,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.353,0,0.366 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.451,0,0.122 +0.667,0.418,0.418,0.8,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0.5,0,0,0.741,0.974,0.974,0.467,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.321,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.462,0,0.366 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.533,0,0.488 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0.9,0,0,0.881,0.993,0.993,0,0,0.251 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0.511,0,0 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.217,0,0.244 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.174,0,0 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0,0,0.122 +1,0.677,0.677,0,1,0,0,0.711,0.78,0.78,0.679,0,0 +1,0.565,0.565,0,0.8,0,0,0.748,0.742,0.742,0.348,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0.386,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.366 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0947 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0917 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.247 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.174 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0698 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.24 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0953 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.127 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.488 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.173 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.242 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0.8,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.667,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.488 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.312 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.203 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.174 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.0347 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.151 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0.3,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0.2,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.366 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.244 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.177 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0355 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.288 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.172 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.355,0.355,1,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.355,0.355,0.8,0,0,0,0.601,0.693,0.693,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.316,0.316,0.8,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.183,0.183,0.8,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.125 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0.8,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0.272 +0.667,0.343,0.343,0.8,0,0,0,0.384,0.73,0.73,0,0,0.366 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.24 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.122 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,0.9,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.161 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.129 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.207 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.207 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.212 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.164 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0654 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0.244 +1,0.117,0.117,0.3,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,1,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0.8,0,0,0,0.487,0.617,0.617,0,0,0.173 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0346 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.192,0.192,0.3,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,1,0,0.279,0.579,0.579,0,0.309,0 +0.333,0.196,0.196,0,0,1,0,0.279,0.579,0.579,0,0.0386,0 +0.333,0.196,0.196,0,0,0.9,0,0.279,0.579,0.579,0,0.567,0 +0.333,0.192,0.192,0,0,0,0.4,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,1,0.284,0.579,0.579,0,0.309,0 +0.333,0.192,0.192,0,0,0,0.2,0.284,0.579,0.579,0,0.185,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.369,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.361,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.283,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.073,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.618,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.361,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.0386,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.185,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.223,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.496,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.47,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.21,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.395,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.309,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.361,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.348,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.283,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.21,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.429,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.296,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.223,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.717,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.0601,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.309,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.369,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.249,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.433,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.618,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.0386,0.488 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.605,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.361,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.33,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.283,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.27,0.122 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0.348,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0.159,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.0386,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.0129,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.562,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.18,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.27,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.0601,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.223,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.21,0.156 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0938 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.361,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.296,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.309,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.459,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.433,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.322,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.137,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.283,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.366 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0298 +0.333,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0.5,0,0.279,0.579,0.579,0,0.296,0 +0.333,0.196,0.196,0,0,1,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.532,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.408,0.122 +0.333,0.192,0.192,0,0,0.8,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0.5,0.284,0.579,0.579,0,0.258,0 +0.333,0.192,0.192,0,0,0,1,0.284,0.579,0.579,0,0.481,0 +0.333,0.192,0.192,0,0,0,1,0.284,0.579,0.579,0,0.174,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.148,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.0987,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.348,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.335,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.296,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.309,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.0386,0 +0.333,0.181,0.181,0.8,0,0,0,0.284,0.591,0.591,0,0.0987,0 +0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0.283,0 +0.667,0.313,0.313,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0.3,0,0,0,0.347,0.717,0.717,0,0.395,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.0601,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.236,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.296,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.137,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.172,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.258,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.605,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.373,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.283,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.488 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0.5,0,0.354,0.61,0.61,0,0.15,0 +0.333,0.234,0.234,0,0,0.9,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0,0,0,0.4,0.58,0.805,0.805,0,0.172,0 +0.667,0.548,0.548,0,0,0,1,0.58,0.805,0.805,0,0.223,0 +1,0.798,0.798,0,0,0,1,0.741,0.974,0.974,0,0.137,0 +1,0.798,0.798,0,0,0,1,0.741,0.974,0.974,0,0.652,0 +1,0.798,0.798,0,0,0,1,0.741,0.974,0.974,0,0.249,0 +1,0.798,0.798,0,0,0,0.5,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.618,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.541,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.691,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.335,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.249,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.366 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.361,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.322,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.193,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.451,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.0386,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.412,0.122 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.451,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.609,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.446,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.369,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.27,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.395,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.369,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.318,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.421,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.361,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.348,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.137,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.369,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.172,0.488 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.249,0.244 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.0515,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.175 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.14 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.148 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.8,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0.9,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.488 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0.8,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0.7,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.336 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.163 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.13 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,1,0,0.321,0.597,0.597,0,0.446,0 +0.333,0.196,0.196,0,0,1,0,0.321,0.597,0.597,0,0.0601,0 +0.333,0.196,0.196,0,0,1,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,1,0,0.354,0.61,0.61,0,0.137,0 +0.333,0.234,0.234,0,0,0.3,0,0.354,0.61,0.61,0,0.249,0 +0.333,0.234,0.234,0,0,0,1,0.354,0.61,0.61,0,0.481,0 +0.333,0.234,0.234,0,0,0,1,0.354,0.61,0.61,0,0.335,0 +0.333,0.234,0.234,0,0,0,1,0.354,0.61,0.61,0,0.21,0 +0.333,0.234,0.234,0,0,0,0.2,0.354,0.61,0.61,0,0.468,0 +0.333,0.299,0.299,0.8,0,0,0,0.419,0.635,0.635,0,0.283,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0.223,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0.4,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.488 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.244 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0.8,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0.7,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.143 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.204 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.488 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.153 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0612 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.171 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.0684 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.122 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.335 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0.56,0,0.0335 +1,0.316,0.316,0,1,0,0,0.524,0.68,0.68,0.446,0,0 +1,0.183,0.183,0,1,0,0,0.391,0.572,0.572,0,0,0 +1,0.477,0.477,0,1,0,0,0.475,0.806,0.806,0.554,0,0 +1,0.477,0.477,0,1,0,0,0.475,0.806,0.806,0.582,0,0.122 +1,0.477,0.477,0.8,0.8,0,0,0.475,0.806,0.806,0,0,0 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0.3,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.334,0.334,0.8,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.192,0.192,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.3,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0,0,0.5,0,0.384,0.73,0.73,0,0.283,0 +0.667,0.343,0.343,0,0,0.9,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0.4,0.384,0.73,0.73,0,0.283,0 +0.667,0.343,0.343,0,0,0,1,0.384,0.73,0.73,0,0.296,0 +0.667,0.343,0.343,0,0,0,1,0.384,0.73,0.73,0,0.0386,0.244 +1,0.49,0.49,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,1,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0.5,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.147 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.154 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.161 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.244 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.536 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.034 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.206 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.366 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.25 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.176 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.211 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.136 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.068 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.173 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0691 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.134 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0.8,0,0,0,0.375,0.705,0.705,0,0,0 +1,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0.244 +1,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,0.8,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.366 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.366 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.173 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0691 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.165 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.334 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.1 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.3,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0.366 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.4,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.549,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.416,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.185,0 +0.333,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.309,0 +0.333,0.186,0.186,0,0,0.3,0,0.288,0.585,0.585,0,0.258,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.137,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.223,0.366 +0.333,0.186,0.186,0,0,0,0.2,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.652,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.318,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.438,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.27,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.185,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.438,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.391,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.18,0.18,0.8,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0.7,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.366 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0.5,0,0,0.673,0.817,0.817,0.467,0,0 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.31,0,0 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.587,0,0.244 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.484,0,0.244 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.538,0,0 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.677,0.677,0,0.9,0,0,0.711,0.78,0.78,0.538,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.457,0,0.244 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.462,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.321,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.288,0,0 +0.667,0.565,0.565,0,0.5,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0.397,0,0.366 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0.473,0,0 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0.408,0,0 +0.667,0.307,0.307,0,0.3,0,0,0.503,0.604,0.604,0.538,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0.261,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0.31,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0.337,0,0 +0.667,0.548,0.548,0,1,0,0,0.58,0.805,0.805,0.304,0,0.122 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.185,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.185,0,0.165 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.505,0,0.376 +1,0.979,0.979,0,0.8,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.366 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0656 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.607 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.238 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0.8,0,0,0,0.524,0.68,0.68,0,0,0.203 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.183,0.183,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0.9,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.122 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.366 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.128 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.244 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.164 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0657 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0.408,0,0 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0.359,0,0.122 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0,0,0.338 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0.337,0,0.67 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0.679,0,0.122 +0.667,0.418,0.418,0,1,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,1,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.418,0.418,0,0.4,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0.7,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0.418,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.418,0,0.244 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.386,0,0.488 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.37,0,0.244 +1,0.677,0.677,0,0.8,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.244 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.488 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.165 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.033 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.315 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.168 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.134 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.33 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.236 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.244 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.122 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.325 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.261 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.12 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.648 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.25 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.408 +0.667,0.313,0.313,0.8,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0.122 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0.122 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.244 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.146 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.177 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.248 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.235 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.361,0 +0.333,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.309,0 +0.333,0.186,0.186,0,0,0.9,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0.4,0.288,0.585,0.585,0,0.223,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.361,0.244 +0.333,0.186,0.186,0,0,0,0.2,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0.241 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.366 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0.4,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.143 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.255 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.159 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0952 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.164 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.0327 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.302 +1,0.316,0.316,0.8,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0.7,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.244 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0.3,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0.2,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.285 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.61 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.732 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.466 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.417 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.417 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0938 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.122 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.122 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0625 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.247 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.331 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.13 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.525 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.153 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.061 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.231 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.164 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.131 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.5 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.244 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.366 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.167 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0669 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.366 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.706 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.068 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.448,0.448,0,0,0.5,0,0.433,0.824,0.824,0,0.0601,0 +1,0.448,0.448,0,0,1,0,0.433,0.824,0.824,0,0.532,0 +1,0.448,0.448,0,0,1,0,0.433,0.824,0.824,0,0,0 +1,0.448,0.448,0,0,0.4,0,0.433,0.824,0.824,0,0.361,0 +1,0.448,0.448,0,0,0,0.9,0.433,0.824,0.824,0,0,0 +1,0.448,0.448,0,0,0,1,0.433,0.824,0.824,0,0.249,0 +1,0.49,0.49,0.3,0,0,1,0.447,0.862,0.862,0,0,0.122 +1,0.49,0.49,1,0,0,0.3,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0.8,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0.122 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.244 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.223,0 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.309,0.244 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.258,0 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.361,0 +1,0.979,0.979,0,0,0.3,0,0.881,0.993,0.993,0,0.296,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.296,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.395,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.296,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.0258,0 +1,0.991,0.991,0,0,0,1,0.937,0.937,0.937,0,0.361,0 +1,0.991,0.991,0,0,0,0.5,0.937,0.937,0.937,0,0.296,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.545,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.223,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.421,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.309,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.124,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.635,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.451,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.464,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.476,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.275,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.249,0.366 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.137,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.73,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0.506,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0.356,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.73,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.322,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.223,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.309,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.296,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.348,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0.273,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0.682,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0.433,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,1,0,0.34,0.516,0.516,0,0.584,0.335 +1,0.0833,0.0833,0,0,1,0,0.34,0.516,0.516,0,0.309,0.134 +1,0.0833,0.0833,0,0,1,0,0.34,0.516,0.516,0,0.309,0 +0.667,0.151,0.151,0,0,1,0,0.372,0.541,0.541,0,0.112,0 +0.667,0.151,0.151,0,0,0.3,0,0.372,0.541,0.541,0,0.0129,0 +0.667,0.151,0.151,0,0,0,1,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,1,0.372,0.541,0.541,0,0.283,0 +0.667,0.151,0.151,0,0,0,1,0.372,0.541,0.541,0,0.283,0 +0.667,0.151,0.151,0,0,0,0.2,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.464,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.391,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.485,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.309,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0.361,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0.258,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.122 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0.8,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0.457,0,0 +0.667,0.669,0.669,1,1,0,0,0.673,0.817,0.817,0.391,0,0 +1,0.979,0.979,1,1,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0.9,1,0,0,0.881,0.993,0.993,0.522,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.451,0,0 +1,0.991,0.991,0,0.8,0,0,0.937,0.937,0.937,0.783,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.337,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.364,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.489,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.495,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.364,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.366 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.282 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.21,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.53,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0635 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.182 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.138 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.346 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.0346 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.246 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.61 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.534 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.268 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.198 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,1,0,0.58,0.805,0.805,0,0.494,0 +0.667,0.548,0.548,0,0,0.4,0,0.58,0.805,0.805,0,0.0858,0 +0.667,0.548,0.548,0,0,0,0.9,0.58,0.805,0.805,0,0,0.122 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0.532,0 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0.21,0 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0.464,0 +0.667,0.669,0.669,0.3,0,0,0,0.673,0.817,0.817,0,0.215,0.29 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0.361,0.303 +0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0.545,0 +0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0.0386,0 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0.3,0,0,0,0.937,0.937,0.937,0,0.0258,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.27,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.0386,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.433,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.204 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.255 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.244 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.261 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0.3,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.167 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.34 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.136 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.146 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.47 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.171 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.381 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.271 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.488 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.541 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.28 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.192 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.351 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.349 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.282 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.494 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.344 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.207 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.406 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0.8,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0,0.156 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.332 +1,0.798,0.798,0.9,0,0,0,0.741,0.974,0.974,0,0,0.0332 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.244 +0.667,0.363,0.363,0,0.5,0,0,0.484,0.622,0.622,0.44,0,0.122 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.549,0,0.162 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.739,0,0.0323 +1,0.823,0.823,0,1,0,0,0.993,0.88,0.88,0.348,0,0 +1,0.823,0.823,0,1,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.823,0.823,0,0.3,0,0,0.993,0.88,0.88,0,0,0.601 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0899 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.252 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.342 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.549 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.338 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.141 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.0706 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.338 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.389 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.244 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.404 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.265 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0.5,0,0.322,0.806,0.806,0,0.236,0.0799 +1,0.49,0.49,0,0,0.9,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0.4,0.322,0.806,0.806,0,0.0258,0 +1,0.49,0.49,0,0,0,1,0.322,0.806,0.806,0,0.433,0.366 +1,0.49,0.49,0,0,0,1,0.322,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,1,0.336,0.806,0.806,0,0.361,0.142 +1,0.477,0.477,0,0,0,1,0.336,0.806,0.806,0,0.0386,0 +1,0.477,0.477,0,0,0,0.5,0.336,0.806,0.806,0,0.618,0.244 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0.296,0.204 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0.545,0.122 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0.309,0.122 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0.369,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.176 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.35 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0.308 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.418,0.418,0.8,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0.5,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.732 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.473 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.176 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.351 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.246 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.374 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0.3,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0.244 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0.3,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.299,0.299,0.8,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +1,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.244 +1,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.366 +1,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.157 +1,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.0941 +1,0.991,0.991,0.7,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.191 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.136 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.238 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,1,0,0.372,0.541,0.541,0,0.0386,0 +1,0.183,0.183,0,0,1,0,0.391,0.572,0.572,0,0.309,0 +1,0.183,0.183,0,0,0.9,0,0.391,0.572,0.572,0,0.416,0 +1,0.183,0.183,0,0,0,0.4,0.391,0.572,0.572,0,0.476,0 +1,0.183,0.183,0,0,0,1,0.391,0.572,0.572,0,0.262,0 +1,0.183,0.183,0,0,0,1,0.391,0.572,0.572,0,0.223,0 +1,0.183,0.183,0,0,0,1,0.391,0.572,0.572,0,0,0 +1,0.192,0.192,0,0,0,1,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0.5,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0.8,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0.154 +1,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.343,0.343,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0.9,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.366 +1,0.343,0.343,0,0.5,0,0,0.3,0.692,0.692,0.478,0,0 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.511,0,0 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.489,0,0.122 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.337,0,0 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.293,0,0 +1,0.334,0.334,0,0.3,0,0,0.31,0.692,0.692,0,0,0.366 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +1,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +1,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +1,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.416 +1,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.206 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0.244 +1,0.49,0.49,0.8,0,0,0,0.447,0.862,0.862,0,0,0.193 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0.3,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.649 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.0642 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.161 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.34 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.204 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.269 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.172 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.137 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.215 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.169 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0674 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.338 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0338 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.0987,0 +0.667,0.313,0.313,0,0,1,0,0.31,0.717,0.717,0,0.258,0.3 +0.667,0.313,0.313,0,0,1,0,0.31,0.717,0.717,0,0,0.268 +0.667,0.313,0.313,0,0,1,0,0.31,0.717,0.717,0,0.15,0 +1,0.445,0.445,0,0,0.3,0,0.336,0.843,0.843,0,0.258,0 +1,0.445,0.445,0,0,0,1,0.336,0.843,0.843,0,0.506,0.244 +1,0.445,0.445,0,0,0,0.6,0.336,0.843,0.843,0,0.234,0.51 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0.582,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.159,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.15,0.477 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.519,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.21,0.122 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.335,0.794 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.0987,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0.545,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.234,0.163 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.444,0.098 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.343,0 +1,0.49,0.49,0.3,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0.34 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0.0312 +0.667,0.418,0.418,0.8,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.122 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.167 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.167 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.196 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.117 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.174 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0695 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.188 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.153 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.0306 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.366 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.105 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.318 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.104 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0634 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.144 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0.8,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0.3,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.643 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0622 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.326 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.353 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0353 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.348 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.367 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.244 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.31 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.163 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.163 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0.8,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0.7,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.386,0,0 +0.333,0.182,0.182,0,1,0,0,0.316,0.585,0.585,0.375,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.364,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.429,0,0 +0.667,0.343,0.343,0,0.8,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.488 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.242 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.161 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0644 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.207 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.334 +1,0.253,0.253,0,0,0.5,0,0.487,0.617,0.617,0.505,0.421,0.1 +1,0.253,0.253,0,1,0.9,0,0.487,0.617,0.617,0.511,0,0 +0.667,0.253,0.253,0,1,0,0.4,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,1,0,1,0.487,0.617,0.617,0.418,0,0.188 +0.667,0.253,0.253,0,1,0,1,0.487,0.617,0.617,0.348,0,0 +0.667,0.316,0.316,0.8,0.8,0,1,0.524,0.68,0.68,0.348,0,0 +0.667,0.316,0.316,1,0,0,1,0.524,0.68,0.68,0.299,0,0 +0.667,0.316,0.316,1,1,0,1,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0.3,1,0,1,0.524,0.68,0.68,0.37,0,0 +0.667,0.316,0.316,0,1,0,0.1,0.524,0.68,0.68,0.332,0,0 +0.667,0.316,0.316,0,1,0,0,0.524,0.68,0.68,0.484,0,0 +0.667,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.723,0,0 +0.667,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0.4,0,0,0.403,0.692,0.692,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.429,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.413,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.467,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0.538,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0.19,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0.19,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0.5,0,0,0.284,0.591,0.591,0.402,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.717,0,0.122 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.679,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.242,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.242,0,0 +0.333,0.181,0.181,0,0.3,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0.3,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.488 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.161 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0624 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.187 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.238 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.034 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0651 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.26 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.225 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.154 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.431 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.374 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.169 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0671 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.336 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.216 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0.5,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,1,0,0,0,0.321,0.709,0.709,0,0,0.191 +0.667,0.316,0.316,1,0,0,0,0.321,0.709,0.709,0,0,0.274 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.333,0.178,0.178,0.1,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.488 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.595,0.595,0.5,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.246 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.105 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.196,0,0.239 +0.667,0.67,0.67,0,0.7,0,0,0.715,0.784,0.784,0.196,0,0 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.435,0,0 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.342,0,0.348 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.402,0,0.0691 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.576,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.233 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.247 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.141 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0438 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.246 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.176 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.667,0.181,0.181,1,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0.5,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0.258,0,0.122 +1,0.674,0.674,0,0.7,0,0,0.746,0.981,0.981,0.258,0,0 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.397,0,0 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.489,0,0.122 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.424,0,0.122 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.516,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.22,0,0.488 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.22,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.488 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.122 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.122 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.366 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.189 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.1 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.2,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.0987,0 +0.667,0.0495,0.0495,0,0,0.3,0,0.258,0.465,0.465,0,0.0987,0 +0.667,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +1,0.246,0.246,0,0,0,1,0.449,0.562,0.562,0,0.446,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0.571,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0.738,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0.0386,0 +1,0.116,0.116,0,0,0,0.3,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0999 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.333 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0.8,0,0.327,0.511,0.511,0,0.296,0 +1,0.0513,0.0513,0,0,1,0,0.327,0.511,0.511,0,0.627,0 +1,0.0513,0.0513,0,0,1,0,0.327,0.511,0.511,0,0.605,0 +1,0.0513,0.0513,0,0,0.2,0.1,0.327,0.511,0.511,0,0.073,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0.369,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0.309,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0.6,0.424,0.57,0.57,0,0.249,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.106 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.177 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.15 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0.446,0,0.1 +0.667,0.177,0.177,0,0.8,0,0,0.303,0.593,0.593,0.223,0,0 +0.667,0.177,0.177,0,1,0,0,0.303,0.593,0.593,0.489,0,0 +0.667,0.305,0.305,0,1,0,0,0.349,0.721,0.721,0.505,0,0 +0.667,0.305,0.305,0,1,0,0,0.349,0.721,0.721,0.429,0,0 +0.667,0.305,0.305,0,0.9,0,0,0.349,0.721,0.721,0.467,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.207,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.207,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0.1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0.5,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.488 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.458 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.28 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.242 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0349 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.471 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0349 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.13 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.122 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0.262,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0.185,0 +1,0.124,0.124,0,0,0,0,0.563,0.66,0.66,0,0,0 +1,0.124,0.124,0,0,0,0,0.563,0.66,0.66,0,0,0 +1,0.124,0.124,0,0,0,0,0.563,0.66,0.66,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.222 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.1 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.268 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.278 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.599 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0323 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.259 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.667,0.322,0.322,0.6,0,0,0,0.386,0.734,0.734,0,0,0.61 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.4,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.488 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.366 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.366 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.092 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.214 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.066,0.066,0,0,0,0,0.433,0.57,0.57,0,0,0 +1,0.066,0.066,0,0,0,0,0.433,0.57,0.57,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.0633 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.127 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.232 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0662 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.139 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.315 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.355 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.106 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.244 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0682 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0341 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.284 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0473 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.377 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.462 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0.7,0,0.405,0.696,0.696,0,0.0987,0.229 +0.667,0.33,0.33,0,0,1,0,0.405,0.696,0.696,0,0.0987,0.0983 +0.667,0.33,0.33,0,0,1,0,0.405,0.696,0.696,0,0.605,0.122 +0.667,0.337,0.337,0,0,1,0,0.302,0.696,0.696,0,0.433,0 +0.667,0.337,0.337,0,0,0.8,0,0.302,0.696,0.696,0,0.27,0.0695 +0.667,0.337,0.337,0,0,0,0.5,0.302,0.696,0.696,0,0.348,0.47 +0.667,0.337,0.337,0,0,0,1,0.302,0.696,0.696,0,0.494,0.0695 +0.667,0.337,0.337,0,0,0,1,0.302,0.696,0.696,0,0.27,0 +0.667,0.337,0.337,0,0,0,1,0.302,0.696,0.696,0,0.0258,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.249,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0.8,0.284,0.581,0.581,0,0.498,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.395,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.579,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.395,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.322,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.309,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.0386,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.322,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.258,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.137,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.369,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.532,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.249,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.296,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.172,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.27,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.27,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.335,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.0987,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.459,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.185,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.258,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.223,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.609,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.172,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.558,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.0644,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.112,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.236,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.815,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.429,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.322,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.356,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.361,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.584,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.609,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.172,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.224 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0962 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0.5,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.243 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0.1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0657 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.131 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.182 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.245 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0701 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.128 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.481 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.417 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.135 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.0335 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.268 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.37 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.427 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.325 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.432 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.477 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.105 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.122 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.134 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.201 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0622 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.215 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.366 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.228 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0325 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0.1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.243 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.244 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0668 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.234 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0678 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0.413 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0.284 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.237 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0.2,0,0.527,0.683,0.683,0,0,0.132 +0.667,0.313,0.313,0,0,1,0,0.527,0.683,0.683,0,0.644,0.0661 +0.667,0.313,0.313,0,0,1,0,0.527,0.683,0.683,0,0.322,0 +0.667,0.313,0.313,0,0,0.8,0,0.527,0.683,0.683,0,0.285,0 +0.667,0.313,0.313,0,0,0,0.5,0.527,0.683,0.683,0,0.135,0.122 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0.137,0.122 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0.455,0 +0.333,0.19,0.19,0,0,0,1,0.331,0.581,0.581,0,0.236,0 +0.333,0.19,0.19,0,0,0,1,0.331,0.581,0.581,0,0.27,0 +0.333,0.19,0.19,0,0,0,0.2,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.382,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.704,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.335,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.197,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.283,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.455,0.122 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.322,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.309,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,1,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.481,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.366 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0645 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.129 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.244 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.19,0,0 +0.333,0.208,0.208,0,0.7,0,0,0.355,0.612,0.612,0.19,0,0 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0.56,0,0 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0.576,0,0.122 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0.511,0,0 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0,0,0.227 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0.283,0,0.675 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.366 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.435,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.571,0,0.265 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.353,0,0.188 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.366 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.49 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.401 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.063 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.141 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0704 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.126 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.268 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0.5,0,0,0,0.606,0.698,0.698,0,0,0.367 +1,0.351,0.351,1,0,0,0,0.606,0.698,0.698,0,0,0.137 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.326,0,0.122 +0,0.0495,0.0495,0,0.7,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.603,0,0.122 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.793,0,0 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.348,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.245,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.582,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.397,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.636,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.554,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.185,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.185,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.647,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.386,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.538,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0682 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.341 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.204 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0577 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0866 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0.7,0,0.258,0.465,0.465,0,0.361,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.296,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.27,0 +0.333,0.178,0.178,0,0,0.3,0,0.317,0.587,0.587,0,0.0601,0 +0.333,0.178,0.178,0,0,0,1,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,1,0.317,0.587,0.587,0,0.0601,0.122 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.309,0.122 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0,0.244 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.567,0 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.369,0 +0.333,0.186,0.186,0,0,0,0.3,0.322,0.6,0.6,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.124,0.122 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0.0987,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0.197,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0.481,0.122 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0.0129,0.122 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0.373,0 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0.554,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0.21,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +0.667,0.466,0.466,0.2,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0651 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.35 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.366 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.24 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0701 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.175 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.165 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0658 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.329 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.167 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0661 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.33 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0661 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.122 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.61 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.122 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.244 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.131 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.667,0.466,0.466,1,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.0912 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.0608 +1,0.868,0.868,1,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0.6,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.189 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.234 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.302 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0504 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0641 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.16 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.389 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0321 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0671 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.29 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0646 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0969 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.533,0,0 +1,0.0495,0.0495,0,0.8,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.549,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.554,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.516,0,0 +1,0.0495,0.0495,0,0.9,0,0,0.258,0.465,0.465,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.193,0.193,0.6,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0,0.0976 +1,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0,0.0976 +1,0.193,0.193,0.4,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.242 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.138 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0974 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.162 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0.435,0,0 +0.667,0.305,0.305,0,0.8,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,1,0,0,0.349,0.721,0.721,0.402,0,0 +0.333,0.177,0.177,0,1,0,0,0.303,0.593,0.593,0.402,0,0 +0.333,0.177,0.177,0,1,0,0,0.303,0.593,0.593,0.478,0,0 +0.333,0.177,0.177,0,0.9,0,0,0.303,0.593,0.593,0.283,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.315,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.462,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.723,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.467,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.234,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0.435,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0.745,0,0 +0.333,0.186,0.186,0.6,0,0.8,0,0.322,0.6,0.6,0,0.369,0 +0.333,0.186,0.186,0.9,0,0.7,0,0.322,0.6,0.6,0,0.335,0 +0.333,0.186,0.186,0,0,0,0.6,0.322,0.6,0.6,0,0.558,0 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.296,0 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.258,0.244 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.249,0 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.348,0 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.545,0.122 +1,0.526,0.526,0,0,0,0.7,0.549,0.906,0.906,0,0.197,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0.519,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.27,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.283,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.592,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.201 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0593 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.363 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.371 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.244 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.366 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0.3,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,1,0,0.831,0.755,0.755,0,0.249,0 +1,0.638,0.638,0,0,0.2,0.1,0.831,0.755,0.755,0,0.283,0 +1,0.638,0.638,0,0,0,1,0.831,0.755,0.755,0,0.0601,0.106 +1,0.638,0.638,0,0,0,1,0.831,0.755,0.755,0,0.283,0.106 +1,0.638,0.638,0,0,0,1,0.831,0.755,0.755,0,0.0515,0 +1,0.183,0.183,0,0,0,1,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0.6,0.555,0.608,0.608,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.188 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0994 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0994 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.35 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.244 +0.667,0.189,0.189,0,0,0.8,0,0.284,0.581,0.581,0,0.296,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.584,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.579,0 +0.333,0.0495,0.0495,0,0,0.2,0.1,0.258,0.465,0.465,0,0.446,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.27,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.258,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.283,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.369,0 +0.667,0.307,0.307,0,0,0,1,0.311,0.721,0.721,0,0,0.122 +0.667,0.307,0.307,0,0,0,0.8,0.311,0.721,0.721,0,0.567,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.0987,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.366 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.0258,0.244 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.369,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.0258,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.0129,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.395,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.0987,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.0386,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.249,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.249,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.21,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.0601,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.249,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.343,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.21,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.163,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.506,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.506,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0.322,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0.0987,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.309,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.644,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.249,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.27,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.322,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.322,0.366 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.124,0.488 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.21,0 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.519,0.122 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.185,0 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.249,0.122 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.0386,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.27,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.459,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.236,0 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0.485,0 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0.283,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0.27,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0626 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0605 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.121 +1,0.0495,0.0495,0.5,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0649 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.224 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.122 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.34 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.258 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.61 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.122 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0.5,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0.5,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.244 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,1,0,0,0,0.584,0.809,0.809,0,0,0.244 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.61 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,1,0,0.2,0,0.677,0.822,0.822,0,0,0.187 +0.667,0.595,0.595,0.1,0,1,0,0.677,0.822,0.822,0,0.506,0.0651 +0.667,0.67,0.67,0.5,0,1,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,1,0,0.8,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0.5,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.244 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.239 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0341 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0703 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.233 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.0639 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.16 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.482 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.242 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.243 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.102 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.224 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.244 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.366 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.239 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.341 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.136 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0697 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.209 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.5,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,1,0,0.7,0,0.374,0.543,0.543,0,0.137,0 +0.667,0.15,0.15,1,0,1,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,1,0,1,0,0.374,0.543,0.543,0,0.0386,0 +0.667,0.181,0.181,1,0,1,0,0.392,0.574,0.574,0,0.348,0 +0.667,0.181,0.181,1,0,0.8,0,0.392,0.574,0.574,0,0.485,0 +0.667,0.181,0.181,1,0,0,0.5,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,1,0,0,1,0.392,0.574,0.574,0,0.322,0 +0.667,0.181,0.181,1,0,0,1,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,1,0,0,1,0.392,0.574,0.574,0,0.283,0 +0.667,0.33,0.33,1,0,0,1,0.405,0.696,0.696,0,0.309,0.228 +0.667,0.33,0.33,1,0,0,0.2,0.405,0.696,0.696,0,0.236,0.13 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.472,0 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.498,0 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.395,0.0698 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.0601,0.0349 +0.667,0.337,0.337,1,0,0,0,0.302,0.696,0.696,0,0.137,0 +0.667,0.337,0.337,1,0,0,0,0.302,0.696,0.696,0,0.27,0 +0.333,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0.395,0.233 +0.333,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0.481,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.446,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.532,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.667,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.32,0.244 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.657,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.309,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.309,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.61 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.61 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.232 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.565 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0615 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0615 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.386 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.066 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0.242,0,0 +0.333,0.19,0.19,0,0.7,0,0,0.331,0.581,0.581,0.242,0,0.122 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.435,0,0.122 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.375,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.424,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.538,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.255,0,0 +0.333,0.193,0.193,0,0.6,0,0,0.28,0.581,0.581,0.511,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0.5,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0.5,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0611 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0306 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,0.5,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,1,0,0,0,0.887,1,1,0,0,0.244 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.61 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0.6,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.243 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0694 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.61 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0.7,0,0.346,0.511,0.511,0,0.0987,0 +1,0.0495,0.0495,1,0,1,0,0.346,0.511,0.511,0,0.0987,0 +1,0.0495,0.0495,1,0,1,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,1,0,1,0,0.346,0.511,0.511,0,0.249,0 +1,0.0495,0.0495,1,0,0.8,0,0.346,0.511,0.511,0,0.309,0 +1,0.0495,0.0495,1,0,0,0.5,0.346,0.511,0.511,0,0.356,0 +1,0.0495,0.0495,0.7,0,0,1,0.341,0.505,0.505,0,0.258,0 +1,0.0495,0.0495,0,0,0,1,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0.6,0.341,0.505,0.505,0,0.275,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.0627 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.122 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0.136 +1,0.444,0.444,0,0,0.2,0,0.662,0.792,0.792,0,0,0 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0.288,0 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0.236,0 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0,0.0676 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0.67,0.203 +1,0.47,0.47,0,0,0.3,0,0.479,0.811,0.811,0,0.296,0 +1,0.47,0.47,0,0,0,1,0.479,0.811,0.811,0,0.249,0 +1,0.47,0.47,0,0,0,1,0.479,0.811,0.811,0,0.597,0 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0.446,0.191 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0.7,0.405,0.696,0.696,0,0.395,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.185,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.223,0.0665 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.249,0.2 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.283,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.112,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.27,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.236,0.171 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.288,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.768,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0515,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.755,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.223,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.382,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.283,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.592,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.137,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.0386,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.421,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.408,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.455,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.309,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.618,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.618,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.25,0,0 +0.667,0.178,0.178,0,0.7,0,0,0.317,0.587,0.587,0.25,0,0 +0.667,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.516,0,0 +0.667,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.37,0,0 +0.667,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.37,0,0 +0.667,0.322,0.322,0,1,0,0,0.386,0.734,0.734,0.576,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.366 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.421,0.637,0.637,0,0,0.122 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +1,0.67,0.67,1,0,0,0,0.715,0.784,0.784,0,0,0.61 +1,0.67,0.67,1,0,0,0,0.715,0.784,0.784,0,0,0.366 +1,0.98,0.98,0.2,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.366 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.244 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0.0645 +1,0.625,0.625,1,0,0,0,0.753,0.746,0.746,0,0,0.226 +1,0.727,0.727,0.6,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0958 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.21 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.133 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +1,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +1,0.328,0.328,0,0.3,0,0,0.311,0.696,0.696,0.397,0,0 +1,0.328,0.328,0,1,0,0,0.311,0.696,0.696,0.386,0,0 +1,0.328,0.328,0,1,0,0,0.311,0.696,0.696,0.31,0,0 +1,0.328,0.328,0,1,0.8,0,0.311,0.696,0.696,0.462,0.223,0 +1,0.316,0.316,0,1,0.7,0,0.321,0.709,0.709,0,0,0 +1,0.316,0.316,0,0.4,0,0.6,0.321,0.709,0.709,0,0.481,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.137,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.408,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.395,0 +0.667,0.178,0.178,0,0,0,1,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0.7,0.284,0.593,0.593,0,0.369,0.122 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.172,0.244 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.421,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.67,0.122 +0.667,0.178,0.178,0.6,0,0,0,0.284,0.593,0.593,0,0.361,0.244 +0.667,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0.567,0 +0.667,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0.137,0 +0.667,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0.296,0.122 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.545,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.519,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.369,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.433,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.0987,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.73,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.258,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.197,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.283,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.395,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.459,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.309,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.488 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.073,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.0858,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.498,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.236,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.592,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.249,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.15,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.373,0 +1,0.868,0.868,0,0.3,0,0,0.887,1,1,0.342,0.296,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.332,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.315,0.408,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.489,0.124,0 +1,0.98,0.98,0,1,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0.4,0,0,0.944,0.943,0.943,0,0.0987,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.0386,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.275,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.296,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.258,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.433,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.223,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.592,0.366 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.249,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.395,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.579,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.322,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.481,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.61 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.122 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.102 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0342 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.269 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.303 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.468,0.468,0,0,0.3,0,0.338,0.811,0.811,0,0,0 +1,0.468,0.468,0,0,1,0,0.338,0.811,0.811,0,0.335,0 +1,0.468,0.468,0,0,1,0,0.338,0.811,0.811,0,0.137,0 +1,0.468,0.468,0,0,0.7,0,0.338,0.811,0.811,0,0.258,0 +1,0.468,0.468,0,0,0,0.6,0.338,0.811,0.811,0,0.0386,0 +1,0.468,0.468,0,0,0,1,0.338,0.811,0.811,0,0.185,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0.21,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0.249,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0.485,0 +1,0.449,0.449,0,0,0,0.7,0.352,0.83,0.83,0,0,0 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0.395,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.275,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.275,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.618,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.366 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +1,0.305,0.305,0.6,0,0,0,0.349,0.721,0.721,0,0,0 +1,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0,0.122 +1,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0,0.366 +1,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0,0.366 +1,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0.366 +1,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.307,0.307,0.5,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.122 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.366 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.346 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.325 +1,0.674,0.674,0,0.3,0,0,0.746,0.981,0.981,0.435,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.348,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.272,0,0.122 +1,0.868,0.868,0,1,0,0,0.887,1,1,0,0,0.755 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.37,0,0.154 +1,0.868,0.868,0,0.4,0,0,0.887,1,1,0,0,0.132 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.56,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.375,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.424,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.196 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.462 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.16 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.488 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.376 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0318 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0654 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.262 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.206 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.138 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.415 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.1 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.201 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.366 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.366 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.185 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0627 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.274 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.206 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.189 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0354 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.177 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.067 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.201 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.24 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.351 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.315 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.229 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.131 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.2 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0.0667 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0.7,0,0,0,0.331,0.581,0.581,0,0,0.0917 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.244 +0.333,0.193,0.193,0,0,0.2,0,0.28,0.581,0.581,0,0,0.0692 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.528,0.208 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.361,0 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.0258,0 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.369,0.261 +0.333,0.189,0.189,0,0,0.3,0,0.284,0.581,0.581,0,0.0386,0.0694 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.309,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.283,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.605,0 +0.333,0.189,0.189,0,0,0,0.7,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.0987,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.361,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.0987,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.309,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.605,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.631,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.369,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.296,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.369,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0.135 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.536 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.033 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.122 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.241 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.138 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.244 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0.2,0,0.258,0.465,0.465,0,0,0.0619 +1,0.0495,0.0495,1,0,1,0,0.258,0.465,0.465,0,0.335,0.124 +1,0.351,0.351,1,0,1,0,0.606,0.698,0.698,0,0.532,0 +1,0.351,0.351,1,0,1,0,0.606,0.698,0.698,0,0.309,0 +1,0.351,0.351,1,0,1,0,0.606,0.698,0.698,0,0,0 +0.667,0.251,0.251,1,0,0.3,0,0.49,0.621,0.621,0,0,0.162 +0.667,0.251,0.251,1,0,0,1,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,1,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,1,0,0,1,0.527,0.683,0.683,0,0.296,0.0698 +0.667,0.313,0.313,1,0,0,1,0.527,0.683,0.683,0,0.309,0.349 +0.667,0.313,0.313,1,0,0,0.7,0.527,0.683,0.683,0,0.21,0.174 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0.223,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0.373,0 +0.333,0.19,0.19,0.8,0,0,0,0.331,0.581,0.581,0,0.322,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.283,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.0987,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.249,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.0858,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.296,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.335,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.137,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.395,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.0515,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.481,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0987,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0987,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0601,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.708,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.283,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.296,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.446,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.262,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.258,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.876,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.249,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.0601,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.249,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.528,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.258,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.296,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.567,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.27,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.704,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.373,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.283,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.532,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.309,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.356,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.567,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.185,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0.5,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0696 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.139 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.197 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0986 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.191 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0.5,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,1,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,1,0,0,0,0.424,0.57,0.57,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.17 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.667,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.667,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.0694 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0,0.278 +1,0.674,0.674,0.6,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.192 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.139 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.366 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.237 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.203 +1,0.727,0.727,1,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,1,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,1,0,0,0,0.831,0.755,0.755,0,0,0.0641 +1,0.638,0.638,1,0,0,0,0.831,0.755,0.755,0,0,0.0962 +1,0.442,0.442,1,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,1,0,0,0,0.64,0.658,0.658,0,0,0.122 +1,0.246,0.246,0.1,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.242 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0693 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0666 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0333 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.366 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,0.5,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,1,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,1,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,0.1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.244 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0.6,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,1,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,1,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,1,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.22 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.594 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.369 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.243 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.194 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.355 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.295 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.226 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.173 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.24 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,1 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.195 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.142 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0958 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0639 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.22 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.1,0,0.3,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,1,0,0.452,0.759,0.759,0,0.348,0 +0.667,0.367,0.367,1,0,1,0,0.452,0.759,0.759,0,0.567,0 +0.667,0.466,0.466,1,0,1,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,1,0,1,0,0.584,0.809,0.809,0,0.494,0 +1,0.674,0.674,1,0,0.2,0.1,0.746,0.981,0.981,0,0.197,0 +1,0.674,0.674,1,0,0,1,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,1,0,0,1,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,1,0,0,1,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,1,0,0,1,0.887,1,1,0,0,0 +1,0.868,0.868,0.1,0,0,0.6,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0.8,0,0.887,1,1,0,0.073,0 +1,0.868,0.868,0,0,1,0,0.887,1,1,0,0.27,0 +1,0.868,0.868,0,0,1,0,0.887,1,1,0,0.348,0 +1,0.868,0.868,0,0,1,0,0.887,1,1,0,0.283,0 +1,0.98,0.98,0,0,0.7,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0.6,0.944,0.943,0.943,0,0.249,0 +1,0.98,0.98,0,0,0,1,0.944,0.943,0.943,0,0.236,0 +1,0.98,0.98,0,0,0,1,0.944,0.943,0.943,0,0.137,0.122 +1,0.98,0.98,0,0,0,0.5,0.944,0.943,0.943,0,0,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.0601,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.73,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.361,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.236,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.335,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0.348,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.217 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0949 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.236 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.202 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0997 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.266 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.122 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.488 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.488 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.122 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.488 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.122 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.488 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.244 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0.8,0,0.677,0.822,0.822,0,0.249,0 +0.667,0.67,0.67,0,0,0.7,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0.6,0.715,0.784,0.784,0,0.519,0 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,1,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0.7,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.283 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.283 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.053,0.053,0,0,0,0,0.396,0.558,0.558,0,0,0 +1,0.053,0.053,0,0,0,0,0.396,0.558,0.558,0,0,0.0657 +1,0.053,0.053,0,0,0,0,0.396,0.558,0.558,0,0,0.328 +1,0.15,0.15,0.5,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,1,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,1,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,0.5,0,0,0,0.507,0.623,0.623,0,0,0.162 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.0611 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.204 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.136 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.139 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.519 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.206 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0,0.172 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0,0.171 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0,0.205 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.366 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0671 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.168 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.466 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0635 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.244 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.366 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0.2,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,1,0,1,0.887,0.887,0,0.618,0 +1,0.913,0.913,0,0,1,0,1,0.887,0.887,0,0.369,0 +1,0.913,0.913,0,0,0.8,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0.5,1,0.887,0.887,0,0.258,0.122 +1,0.727,0.727,0,0,0,1,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,1,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,1,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,1,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0.2,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.233 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.0691 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.345 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0.0345 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0673 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.303 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0324 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.13 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0503 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.201 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.431 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0.5,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0.5,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.255,0,0.244 +1,0.868,0.868,0,0.7,0,0,0.887,1,1,0.255,0,0.122 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.5,0,0.122 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.435,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.522,0,0 +1,0.98,0.98,0,1,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.248,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.496,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.614,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.375,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.397,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.375,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0.5,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,1,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,1,0,0,0,0.972,0.849,0.849,0.223,0,0 +1,0.727,0.727,1,0.7,0,0,0.972,0.849,0.849,0.223,0,0 +1,0.727,0.727,0.6,1,0,0,0.972,0.849,0.849,0.505,0,0 +1,0.727,0.727,0,1,0,0,0.972,0.849,0.849,0.603,0,0.122 +1,0.275,0.275,0,1,0,0,0.496,0.593,0.593,0.429,0,0 +1,0.246,0.246,0,1,0,0,0.449,0.562,0.562,0.408,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0.37,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0.386,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0.321,0,0.122 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.168,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.168,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.56,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.69,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.342,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.37,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.277,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.717,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.288,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.288,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.244 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0674 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.135 +0.667,0.251,0.251,0.5,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.366 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0.244 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0.205 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0.0308 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0.154 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.33,0.33,0.6,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.165 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0992 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0.2,0,0,0.317,0.587,0.587,0.424,0,0 +0.333,0.178,0.178,0,1,0,0,0.317,0.587,0.587,0.462,0,0 +0.333,0.178,0.178,0,1,0,0,0.317,0.587,0.587,0.451,0,0.122 +0.333,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.592,0,0 +0.333,0.186,0.186,0,0.5,0,0,0.322,0.6,0.6,0.283,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.366 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.304,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.304,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.353 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.0707 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0.3,0,0,0,0.353,0.483,0.483,0,0,0.167 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0.267 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0.0688 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.172 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.175 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.245 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.406 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.162 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0.5,0,0.338,0.582,0.582,0,0.296,0 +0.667,0.318,0.318,0,0,1,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.318,0.318,0,0,1,0,0.338,0.582,0.582,0,0.223,0 +0.667,0.318,0.318,0,0,1,0,0.338,0.582,0.582,0,0.348,0.488 +0.333,0.184,0.184,0,0,0.9,0,0.298,0.524,0.524,0,0.421,0.244 +0.333,0.185,0.185,0,0,0,0.4,0.257,0.524,0.524,0,0.21,0 +0.333,0.185,0.185,0,0,0,1,0.257,0.524,0.524,0,0.159,0 +0.333,0.185,0.185,0,0,0,1,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0.7,0.257,0.524,0.524,0,0.459,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0.354,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0.217,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0.236,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.366 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.61 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0.413,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.321,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.226,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.226,0,0 +0.667,0.395,0.395,0.8,1,0,0,0.479,0.672,0.672,0.353,0,0.244 +0.667,0.507,0.507,0,0.6,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.538,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.571,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.549,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.429,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.663,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.234,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.176 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.211 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.488 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.467 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.173 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.0345 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.269 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.279 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.244 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.366 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0.8,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.1,0.5,0,0,0.261,0.534,0.534,0.603,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.527,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.5,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.288,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.288,0,0 +0.333,0.171,0.171,0,0.1,0,0,0.261,0.534,0.534,0.321,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0.321,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.115 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.162 +0.667,0.395,0.395,0.3,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.244 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.615 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.164 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0328 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.114 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.203 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.338 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.135 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.612 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.102 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.237 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.304 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.344 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.435 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.311 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0972 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.157 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0656 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.463 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0681 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.244 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.281 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0651 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0976 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.171 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.316 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0.5,0,0,0.261,0.534,0.534,0.62,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.516,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.245,0,0.122 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.277,0,0.144 +0.667,0.292,0.292,0,1,0.5,0,0.264,0.602,0.602,0.603,0.0987,0.122 +1,0.409,0.409,0,1,1,0,0.312,0.671,0.671,0.223,0,0.244 +1,0.409,0.409,0,0.6,1,0,0.312,0.671,0.671,0.223,0.451,0.526 +1,0.409,0.409,0.3,0,0.4,0,0.312,0.671,0.671,0,0.292,0.122 +0.667,0.289,0.289,1,0,0,0.9,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,1,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,1,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,1,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0.3,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.244 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0.3,0,0,0,0.323,0.612,0.612,0,0,0.366 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0.1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.799,0,0 +0.667,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.277,0,0 +0.667,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.554,0,0 +0.667,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.386,0,0 +0.667,0.395,0.395,0,1,0,0,0.479,0.672,0.672,0.283,0,0 +0.667,0.395,0.395,0,0.6,0,0,0.479,0.672,0.672,0.342,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.366 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0.5,0,0.479,0.672,0.672,0.321,0.283,0 +0.667,0.507,0.507,0,1,1,0,0.553,0.682,0.682,0.391,0.195,0.122 +0.667,0.507,0.507,0,1,1,0,0.553,0.682,0.682,0,0.47,0 +0.667,0.507,0.507,0,1,0.4,0,0.553,0.682,0.682,0.56,0.567,0.122 +0.667,0.507,0.507,0,1,0,0.9,0.553,0.682,0.682,0.25,0.418,0.366 +0.667,0.507,0.507,0,1,0,1,0.553,0.682,0.682,0.304,0.431,0 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0.1,0,1,0.745,0.745,0.745,0.255,0,0 +1,0.895,0.895,0,0,0,0.7,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.668,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.245,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.245,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0.5,0,0,0.768,0.671,0.671,0.304,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.533,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.473,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.533,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.315,0,0 +1,0.5,0.5,0,1,0,0,0.656,0.596,0.596,0.196,0,0 +1,0.5,0.5,0,0.6,0,0,0.656,0.596,0.596,0.196,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.408,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.277,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.174,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.174,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.391,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.337,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.408,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.522,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.424,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.223,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.62,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.222 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0923 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0923 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.228 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0958 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.128 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.172 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.141 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.206 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0344 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.154 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +1,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,1,0,0.258,0.465,0.465,0,0.236,0 +0.667,0.0495,0.0495,1,0,0.4,0,0.258,0.465,0.465,0,0.137,0 +0.667,0.171,0.171,1,0,0,0.9,0.261,0.534,0.534,0,0.27,0 +0.667,0.171,0.171,1,0,0,1,0.261,0.534,0.534,0,0.601,0 +0.667,0.171,0.171,1,0,0,1,0.261,0.534,0.534,0,0.202,0 +0.667,0.171,0.171,1,0,0,1,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0.7,0.261,0.534,0.534,0,0.322,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.0129,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.249,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.21,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.382,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.309,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.122 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,1,0,0.598,0.602,0.602,0,0.532,0 +0.667,0.555,0.555,0,0,0.4,0,0.598,0.602,0.602,0,0.459,0 +0.667,0.35,0.35,0,0,0,0.9,0.524,0.553,0.553,0,0.348,0 +0.667,0.35,0.35,0,0,0,1,0.524,0.553,0.553,0,0.185,0 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0.0987,0 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0,0.244 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0.309,0 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0.348,0 +1,0.249,0.249,0,0,0,0.3,0.556,0.537,0.537,0,0.27,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0.309,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0.0601,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0.438,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0.533,0,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.206,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.567,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.283,0.61 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.386,0.122 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.335,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.506,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.433,0.122 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.421,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.309,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0.361,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.258,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.283,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.258,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.0601,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.185,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.283,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.172,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.189,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.468,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.481,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0.3,0,0,0,0.331,0.494,0.494,0,0,0.122 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0.122 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.122 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0.9,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0.5,0,0,0.257,0.582,0.582,0.228,0,0 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.457,0,0.176 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.413,0,0.282 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.342,0,0 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0.1,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.204 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.415 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.343 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.343 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.244 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.488 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.165 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.277 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.29,0.29,0,0,1,0,0.316,0.592,0.592,0,0.0601,0 +0.667,0.29,0.29,0,0,1,0,0.316,0.592,0.592,0,0.21,0 +0.667,0.29,0.29,0,0,0.9,0,0.316,0.592,0.592,0,0.506,0.244 +0.667,0.298,0.298,0,0,0,0.4,0.323,0.612,0.612,0,0.519,0.366 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.27,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.296,0.122 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.348,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.348,0 +0.667,0.298,0.298,0,0,0,0.2,0.323,0.612,0.612,0,0.0129,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.185,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.369,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0.8,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0.5,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.457,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.37,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.332,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.62,0,0 +0.667,0.555,0.555,0,0.6,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.864,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.261,0,0.366 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.56,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.625,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.462,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.488 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.153 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.405 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.244 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.244 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.194 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.513,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.577,0 +0.333,0.181,0.181,0,0,1,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,1,0,0.261,0.524,0.524,0,0.0987,0 +0.333,0.181,0.181,0,0,0.4,0,0.261,0.524,0.524,0,0.348,0.488 +0.333,0.181,0.181,0,0,0,0.9,0.261,0.524,0.524,0,0.309,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.665,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.644,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.464,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.292,0 +0.333,0.175,0.175,0,0,0,0.3,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.348,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.309,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.258,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.288,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.0258,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.21,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.382,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.283,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.249,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.369,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.0987,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.408,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.258,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.382,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.348,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.073,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.558,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.258,0.122 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.618,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.15,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0987,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.395,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.283,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0.5,0,0,0.59,0.775,0.775,0.451,0.609,0 +1,0.567,0.567,0,1,0,0,0.59,0.775,0.775,0.446,0.124,0 +1,0.567,0.567,0,1,0,0,0.59,0.775,0.775,0.37,0,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.364,0.223,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.255,0.27,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.255,0.159,0 +1,0.736,0.736,0,0.6,0,0,0.701,0.79,0.79,0.582,0.249,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.364,0.408,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.603,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.506,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.348,0.373,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.402,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.476,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.353,0.438,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.462,0.665,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.223,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.31,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.533,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.37,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.717,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.353,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.543,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.293,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.511,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.56,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.315,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.516,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.543,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.511,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.511,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0.8,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0.6,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.333 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.173 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.244 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.608 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.102 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.171 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.244 +0.333,0.185,0.185,0,0.5,0,0,0.257,0.524,0.524,0.321,0,0.244 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.299,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.511,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.69,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.478,0,0 +0.333,0.185,0.185,0,0.1,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0.3,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0.429,0,0 +0.333,0.171,0.171,1,1,0,0,0.261,0.534,0.534,0.453,0,0 +0.333,0.169,0.169,1,1,0,0,0.276,0.534,0.534,0.226,0,0 +0.333,0.169,0.169,0.4,1,0,0,0.276,0.534,0.534,0.321,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.424,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.255,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.353,0,0 +0.333,0.169,0.169,0,0.1,0,0,0.276,0.534,0.534,0.31,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.424,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.315,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.304,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.304,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.364,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.5,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.446,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.761,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0.8,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0.6,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.395,0.395,0,0,1,0,0.479,0.672,0.672,0,0.223,0 +0.667,0.395,0.395,0,0,0.4,0,0.479,0.672,0.672,0,0.0601,0 +0.667,0.395,0.395,0,0,0,0.9,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,1,0.479,0.672,0.672,0,0.309,0 +0.667,0.395,0.395,0,0,0,1,0.479,0.672,0.672,0,0.27,0.244 +0.667,0.395,0.395,0,0,0,0.2,0.479,0.672,0.672,0,0.0129,0.244 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.137,0.488 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.236,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.418,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.333,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.567,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.0129,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.335,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.249,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.519,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.459,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.21,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.223,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.459,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.27,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.742,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.459,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.361,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.163 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.13 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.121 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.253 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.166 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0332 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0.6,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.488 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.736,0.736,0.8,0,0,0,0.701,0.79,0.79,0,0,0.153 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.165 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.197 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.193 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.307 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.0463 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0.8,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.131 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.169 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0676 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.127 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.366 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.171 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.274 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.488 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.672 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.155 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.366 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0.397,0,0 +1,0.318,0.318,0,1,0,0,0.338,0.582,0.582,0.507,0,0 +1,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.254,0,0 +1,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.56,0,0 +1,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.451,0,0.244 +1,0.456,0.456,0,0.6,0,0,0.256,0.641,0.641,0.658,0,0.42 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0.304,0,0 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.38,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.364,0,0.164 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.326,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0.397,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.366 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.473,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.326,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.522,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.424,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.429,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0.62,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.177 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.177 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.446,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.228,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.375,0,0 +1,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.495,0,0 +1,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.467,0,0 +1,0.464,0.464,0,0.1,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.464,0.464,0.8,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0.6,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0.3,0,0,0,0.79,0.701,0.701,0,0,0.488 +0.667,0.635,0.635,1,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0.6,0,0,0,0.79,0.701,0.701,0,0,0.0852 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.17 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.38 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.332 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.157 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0.3,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.312,0.312,1,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,1,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0.5,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.0988 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.342 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0683 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.159 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.0952 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.354 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.142 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0.3,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0.6,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.234 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.122 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.165 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.165 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.169 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.169 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.153 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0306 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0.5,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0.1,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.316 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.418 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0348 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0.3,0,0,0,0.264,0.602,0.602,0,0,0.244 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0.346 +0.667,0.292,0.292,0.6,0,0,0,0.264,0.602,0.602,0,0,0.346 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.523 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.488 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.254 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.411 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0668 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0.5,0,0.59,0.775,0.775,0,0.073,0 +1,0.736,0.736,0,0,1,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,1,0,0.701,0.79,0.79,0,0.0386,0 +1,0.736,0.736,0,0,1,0,0.701,0.79,0.79,0,0.0386,0 +1,0.736,0.736,0,0,0.9,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0.4,0.701,0.79,0.79,0,0.519,0 +1,0.736,0.736,0,0,0,1,0.701,0.79,0.79,0,0.249,0.366 +1,0.895,0.895,0,0,0,1,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0.7,0.745,0.745,0.745,0,0.494,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.258,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.288,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.348,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.665,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.605,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.73,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.236,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.554,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.234,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.135,0.366 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.56 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.164 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0328 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.347 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0.3,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.245,0.245,1,0.5,0,0,0.405,0.523,0.523,0.359,0,0 +0.667,0.245,0.245,1,1,0,0,0.405,0.523,0.523,0.397,0,0 +0.667,0.245,0.245,1,1,0,0,0.405,0.523,0.523,0.484,0,0 +0.667,0.305,0.305,1,1,0,0,0.435,0.572,0.572,0.489,0,0 +0.667,0.305,0.305,0.5,1,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0.1,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.165 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.295 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.104 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.24 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.206 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.488 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.524 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.115 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0.1,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.397,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.359,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0.168 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.37,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.598,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.38,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.467,0,0 +1,0.928,0.928,0,0.1,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.13 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.345 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.276 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.068 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.068 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.439 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.349 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.279 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.159 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0317 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0.5,0,0,0.298,0.524,0.524,0.37,0,0.198 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0.391,0,0.122 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0.272,0,0 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0.321,0,0 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0.6,0,0,0.257,0.524,0.524,0.408,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.489,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.364,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.446,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.321,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.31,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.505,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.413,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.37,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.31,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.397,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.255,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.488 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0.3,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.298 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.159 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.127 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.156 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.576,0,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.533,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0.182 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.359,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.478,0,0 +1,0.895,0.895,0,0.6,1,0,0.745,0.745,0.745,0,0.335,0 +1,0.895,0.895,0,0,1,0,0.745,0.745,0.745,0,0.369,0 +1,0.895,0.895,0,0,0.9,0,0.745,0.745,0.745,0,0.446,0 +1,0.928,0.928,0,0,0,0.4,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.073,0.122 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.545,0.122 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.309,0 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.0386,0 +1,0.302,0.302,0,0,0,0.8,0.428,0.534,0.534,0,0.0386,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0.0601,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0.361,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0.0858,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.309,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.309,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.249,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.171 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0.102 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.534 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.0325 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.27 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0.3,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0.5,0,0,0.261,0.534,0.534,0.277,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.212,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.625,0,0.366 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.304,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0.1,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0.5,0,0.276,0.534,0.534,0,0.0258,0.122 +0.333,0.169,0.169,0,0,1,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.17,0.17,0,0,1,0,0.287,0.529,0.529,0,0.506,0 +0.333,0.17,0.17,0,0,0.4,0,0.287,0.529,0.529,0,0.433,0 +0.333,0.17,0.17,0,0,0,0.9,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,1,0.287,0.529,0.529,0,0.21,0 +0.333,0.17,0.17,0,0,0,1,0.287,0.529,0.529,0,0.223,0 +0.333,0.17,0.17,0,0,0,1,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0.7,0.29,0.539,0.539,0,0.481,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.27,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.236,0.366 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.532,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.0386,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.209 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0523 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0.5,0,0,0.405,0.574,0.574,0.402,0,0 +0.667,0.278,0.278,0,1,0,0,0.405,0.574,0.574,0.38,0,0 +0.667,0.507,0.507,0,1,0,0,0.553,0.682,0.682,0.446,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.228,0,0.309 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0.1,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.462,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.522,0,0.166 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.543,0,0.277 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.277,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.342,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.221,0,0 +1,0.928,0.928,0,0,0.5,0,0.79,0.701,0.701,0.442,0.137,0 +1,0.928,0.928,0,0,0.9,0,0.79,0.701,0.701,0.462,0.0987,0 +1,0.807,0.807,0,0,0,0.4,0.768,0.671,0.671,0.685,0.296,0.351 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0.69,0.27,0.0703 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0,0.386,0 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0,0.309,0 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0,0.258,0.296 +1,0.807,0.807,0,0,0,0.2,0.768,0.671,0.671,0,0,0.105 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.208 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.144 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.161 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.215 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.158 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0315 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0.27,0 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0.356,0.366 +0.333,0.175,0.175,0,0,0.9,0,0.265,0.529,0.529,0,0.073,0.366 +0.333,0.175,0.175,0,0,0,0.4,0.265,0.529,0.529,0,0.223,0.122 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.197,0.122 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,1,0.264,0.602,0.602,0,0.369,0 +0.667,0.292,0.292,0,0,0,1,0.264,0.602,0.602,0,0.249,0.122 +0.667,0.292,0.292,0,0,0,0.2,0.264,0.602,0.602,0,0.498,0.122 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.283,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.296,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.263 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0.6,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0.3,0,0,0,0.479,0.672,0.672,0,0,0.486 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.333,0.278,0.278,1,0,0,0,0.405,0.574,0.574,0,0,0 +0.333,0.278,0.278,1,0,0,0,0.405,0.574,0.574,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.299 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.162 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.173 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0345 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.346,0.519,0.519,0,0,0.172 +1,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.0344 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.488 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.511,0,0 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.31,0,0 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.473,0,0 +0.333,0.188,0.188,0,1,0,0,0.316,0.549,0.549,0.353,0,0 +0.333,0.188,0.188,0,1,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0.1,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.44,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.332,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.391,0,0.244 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.435,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.146 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.163 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0325 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.641,0,0.122 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.511,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.38,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.462,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.527,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.321,0,0 +0.667,0.302,0.302,0,0.1,0,0,0.428,0.534,0.534,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.488 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.488 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.283 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.0965 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.491 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.318 +1,0.507,0.507,0.3,0,0,0,0.553,0.682,0.682,0,0,0.122 +1,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,0.6,0,0,0,0.553,0.682,0.682,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0.8,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0.1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0.277,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.359,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.261,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.261,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.75,0,0 +0.667,0.312,0.312,0,0.6,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.533,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.924,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.457,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.315,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.353,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.174,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0.174,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.366 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.366 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.168 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.223 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.192 +1,0.736,0.736,0.8,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.278,0.278,0.6,0,0,0,0.405,0.574,0.574,0,0,0.366 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.122 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.122 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.244 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.122 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.488 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.102 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.335 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.167 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0864 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.477 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0325 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0.8,0,0,0,0.261,0.534,0.534,0,0,0.347 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0.8,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0.5,0,0.479,0.672,0.672,0,0.0515,0 +1,0.567,0.567,0,0,1,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,1,0,0.59,0.775,0.775,0,0.614,0 +1,0.567,0.567,0,0,1,0,0.59,0.775,0.775,0,0.378,0 +1,0.567,0.567,0,0,0.9,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0.5,0,0.4,0.701,0.79,0.79,0.255,0.0987,0 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0.234,0.27,0.122 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0.321,0.408,0.122 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0.375,0.644,0 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0,0,0.244 +1,0.736,0.736,0,1,0,0.2,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0.6,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.348 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.505 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0701 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.164 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.17 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.34 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0.3,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.151 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.0303 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0.5,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.351 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.154 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.143 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.488 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.174,0.174,0.8,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.488 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.565,0,0 +0.667,0.613,0.613,0,1,0,0,0.583,0.652,0.652,0.457,0,0.244 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.462,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.261,0,0 +1,0.928,0.928,0,0.6,0,0,0.79,0.701,0.701,0.505,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.418,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.366 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.267 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.0341 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.144 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0.292 +0.667,0.305,0.305,0.6,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.157 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0314 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.141 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.389 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.584 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.326 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.61 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.488 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.488 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0.6,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.399 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.174 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.153 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.478 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.2 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.337 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.589 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0.5,0,0.265,0.529,0.529,0,0.223,0 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0.433,0 +0.333,0.175,0.175,0,0,0.4,0,0.265,0.529,0.529,0,0.258,0 +0.333,0.175,0.175,0,0,0,0.9,0.265,0.529,0.529,0,0.0987,0 +0.333,0.171,0.171,0,0,0,1,0.261,0.534,0.534,0,0.309,0 +0.333,0.171,0.171,0,0,0,1,0.261,0.534,0.534,0,0.185,0 +0.333,0.171,0.171,0,0,0,0.2,0.261,0.534,0.534,0,0.112,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.258,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.223,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.0601,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.223,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.361,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.223,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.421,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.395,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.0987,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.322,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0.5,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,1,0,0,0,0.368,0.569,0.569,0,0,0.122 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0.5,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.273 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0.3,0,0,0,0.435,0.572,0.572,0,0,0.163 +1,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0.229 +1,0.305,0.305,0.1,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.31 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0.5,0,0.298,0.524,0.524,0,0.258,0.17 +0.667,0.184,0.184,0,0,1,0,0.298,0.524,0.524,0,0,0.34 +0.667,0.321,0.321,0,0,1,0,0.257,0.582,0.582,0,0.0601,0.102 +0.667,0.321,0.321,0,0,1,0,0.257,0.582,0.582,0,0.249,0 +0.667,0.321,0.321,0,0,0.9,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0.4,0.257,0.582,0.582,0,0.112,0 +0.667,0.321,0.321,0,0,0,1,0.257,0.582,0.582,0,0.21,0.148 +0.667,0.321,0.321,0,0,0,1,0.257,0.582,0.582,0,0,0.0297 +0.667,0.312,0.312,0,0,0,1,0.264,0.582,0.582,0,0.335,0 +0.667,0.312,0.312,0,0,0,1,0.264,0.582,0.582,0,0.395,0 +0.667,0.312,0.312,0,0,0,0.2,0.264,0.582,0.582,0,0.446,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.275,0.139 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.286 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.164 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.187 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.173 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.313 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.352 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.297 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.105 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0.3,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,1,0,1,0,0.323,0.612,0.612,0,0.395,0 +0.667,0.298,0.298,0.6,0,1,0,0.323,0.612,0.612,0,0.309,0 +1,0.422,0.422,0,0,0.9,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0.4,0.356,0.686,0.686,0,0.618,0 +1,0.422,0.422,0,0,0,1,0.356,0.686,0.686,0,0.27,0 +1,0.422,0.422,0,0,0,1,0.356,0.686,0.686,0,0,0 +1,0.464,0.464,0,0,0,0.7,0.434,0.715,0.715,0,0.418,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.496,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.408,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.137,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.27,0.122 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.348,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.468,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.429,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.249,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.249,0.61 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.223,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.249,0.366 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.524,0.488 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.365,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.0386,0.209 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.541,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.335,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.488 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.426,0.426,1,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0.185 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0.177 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.0355 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.25 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0.068 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0.272 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.41,0.41,0.8,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.41,0.41,0.6,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.324 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.122 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.127 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.523 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.299 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.161 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0642 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.2 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.61 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.253 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.353,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.353,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.353,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.164 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.131 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.116 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0.8,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,1,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,1,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0.1,0,0,0,0.278,0.656,0.656,0,0,0.34 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,1,0,0.316,0.592,0.592,0,0.27,0.306 +0.667,0.29,0.29,0,0,0.4,0,0.316,0.592,0.592,0,0.197,0 +0.667,0.298,0.298,0,0,0,0.9,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.0129,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.369,0.171 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.073,0.19 +0.667,0.298,0.298,0,0,0,0.7,0.323,0.612,0.612,0,0.309,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.369,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0.326 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.236,0.309 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.519,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.073,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0987,0.128 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.249,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.361,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.283,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.137,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.073,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0.309,0 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.0258,0 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.137,0 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.386,0.122 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.244 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.335,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.296,0.244 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.406,0.157 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.384,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.275,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.343,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.122 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.366 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.308 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0.3,0,0,0,0.305,0.474,0.474,0,0,0.157 +1,0.0816,0.0816,1,0,0,0,0.305,0.474,0.474,0,0,0.0941 +1,0.342,0.342,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,1,0,0,0,0.478,0.551,0.551,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.205 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.161 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.0642 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.168 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.394 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.156 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.345 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.276 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.241 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0991 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.254 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.169 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.169 +0.333,0.171,0.171,0.8,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0.153 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0.0612 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.169,0.169,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0.5,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.366 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.696,0,0.366 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.179,0,0.122 +1,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.179,0,0 +1,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.332,0,0 +1,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.505,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.418,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0.1,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.174 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.174 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.33 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.033 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.159 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.0637 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.433,0.433,0,0,0.5,0,0.523,0.626,0.626,0,0.283,0 +1,0.433,0.433,0,0,1,0,0.523,0.626,0.626,0,0,0.19 +0.667,0.305,0.305,0,0,1,0,0.435,0.572,0.572,0,0.249,0 +0.667,0.305,0.305,0,0,0.4,0,0.435,0.572,0.572,0,0.137,0 +0.667,0.305,0.305,0,0,0,0.9,0.435,0.572,0.572,0,0.0258,0 +0.667,0.318,0.318,0,0,0,1,0.338,0.582,0.582,0,0.0386,0.254 +0.667,0.318,0.318,0,0,0,1,0.338,0.582,0.582,0,0.236,0 +0.667,0.318,0.318,0,0,0,1,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0.7,0.338,0.582,0.582,0,0.236,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0.0987,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.382,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.618,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.283,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.296,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.356,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.0601,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.0601,0.185 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.361,0.488 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0.361,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0.309,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.27,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.27,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.18,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.476,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.605,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.309,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.159,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.609,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.309,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.481,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.395,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.137,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.481,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.279,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.155,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.159,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.309,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.236,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.283,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.444,0.244 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.148,0.366 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.335,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.236,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0386,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.124,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0.8,0,0,0,0.479,0.672,0.672,0,0.685,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0.5,0.366 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0.296,0 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0.446,0 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0.159,0.488 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.431,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.457,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.588,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.219,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0.343,0.122 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.524 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.0634 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0.317 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.807,0.807,1,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,1,0,0,0,0.768,0.671,0.671,0,0,0.17 +1,0.807,0.807,1,0,0,0,0.768,0.671,0.671,0,0,0.482 +1,0.555,0.555,1,0,0,0,0.598,0.602,0.602,0,0,0.488 +1,0.555,0.555,1,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0.4,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.247 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.102 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.17 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.198 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.141 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0706 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.157 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0314 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.332 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.17,0.17,0.1,0,0,0,0.287,0.529,0.529,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0.8,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0.5,0,0,0.745,0.745,0.745,0.435,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.386,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.658,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.462,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0.1,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.289 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.334 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.0625 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0.221 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0.3,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0.324 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0.0324 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0.144 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.173 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.301 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.0893 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0.297 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0.7,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.395,0.395,0.8,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0.446,0,0 +1,0.567,0.567,1,1,0,0,0.59,0.775,0.775,0.446,0,0.122 +1,0.567,0.567,1,1,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,1,1,0,0,0.59,0.775,0.775,0.587,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.478,0,0 +0.667,0.507,0.507,1,1,0,0,0.553,0.682,0.682,0.478,0,0 +0.667,0.507,0.507,1,1,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0.9,0.1,0,0,0.553,0.682,0.682,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.804,0,0.252 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.554,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.56,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.446,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.326,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.522,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.418,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.277,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.332,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.413,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.679,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.467,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.652,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.297 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.366 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.165 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0661 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0.5,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0.3,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.222,0.222,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0.9,0,0,0,0.701,0.79,0.79,0,0,0.122 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0.3,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,1,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0.1,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.243 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.347 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0694 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.177 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.142 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.314 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.167 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.133 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.193 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.128 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.186 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.275 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0.17 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.29,0.29,0.8,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0.122 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0.244 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0.5,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.366 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.244 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.333 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.488 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.172 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.13 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.134 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.323 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.103 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.34 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0914 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0305 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.163 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0.6,0,0,0,0.256,0.581,0.581,0,0,0.25 +1,0.299,0.299,0.8,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.103 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.191 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.264 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0989 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.488 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.366 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.61 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.319 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.488 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.101 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.202 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.129 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0322 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.122 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.333,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.333,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.343 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.386 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.245 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0.4,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0.3,0,0,0,0.404,0.521,0.521,0,0,0.161 +0.667,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0.161 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0.9,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.488 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.245 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0.5,0,0,0.26,0.523,0.523,0.478,0,0.101 +0.333,0.17,0.17,0,1,0,0,0.26,0.523,0.523,0.397,0,0 +0.333,0.17,0.17,0,1,0,0,0.26,0.523,0.523,0.435,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.223,0,0 +0.333,0.164,0.164,0,0.9,0,0,0.264,0.528,0.528,0.571,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.614,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.462,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.332,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.31,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.299,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.342,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.391,0,0.122 +0.333,0.159,0.159,0,0.4,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.516,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.435,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.489,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.261,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.755,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.397,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.37,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.473,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.293,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.826,0,0 +1,0.379,0.379,0,0,0,0,0.355,0.683,0.683,0.28,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.28,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.592,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.212,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.467,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.244 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.353,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.467,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.408,0,0 +1,0.291,0.291,0.8,0,0,0,0.477,0.67,0.67,0.44,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0.166,0,0.244 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0.166,0,0.122 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.366 +1,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0.2,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.159 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.34 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.223 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0318 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.258 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.339 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.442 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.0341 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.177 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.345 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.148 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.34 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0679 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.185 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.123 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.277 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.175 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.35 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0.3,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.162,0.162,0.9,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.334 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.167 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.366 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.35 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.147 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.266 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.527 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.19 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.138 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.345 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.191 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.154 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.2 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0499 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.345 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.155 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.062 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.263 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0987 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.303 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0321 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.571 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.169 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.122 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.348 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.47 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0348 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.503 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.61 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.244 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.289 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.429,0.429,0.8,0,0,0,0.581,0.65,0.65,0,0,0.0313 +0.667,0.429,0.429,1,0,0,0,0.581,0.65,0.65,0,0,0.156 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.336 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.134 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.16 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0641 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.197 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0969 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.176 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.105 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.243 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.106 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.283 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0.3,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,1,0,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.274,0.274,0.1,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.366 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.261,0,0.122 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.408,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0.4,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0.3,0,0,0,0.742,0.742,0.742,0,0,0.104 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.382 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.167 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.333 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.0333 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0.6,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0.3,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,1,0,0.256,0.581,0.581,0,0.137,0 +1,0.299,0.299,0,0,0.2,0.1,0.256,0.581,0.581,0,0.408,0 +1,0.299,0.299,0,0,0,1,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0.3,0.256,0.581,0.581,0,0.296,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.618,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.0386,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.433,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.15,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.395,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.418,0,0.244 +0.333,0.16,0.16,0,0.8,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.587,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.359,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,1,0.8,0,0.26,0.533,0.533,0,0.322,0 +0.333,0.16,0.16,0,1,1,0,0.26,0.533,0.533,0,0,0 +1,0.269,0.269,0,0.1,1,0,0.293,0.6,0.6,0,0.532,0 +1,0.269,0.269,0,0,1,0,0.293,0.6,0.6,0,0.519,0 +1,0.269,0.269,0,0,0.8,0,0.293,0.6,0.6,0,0,0 +1,0.269,0.269,0,0,0,0.5,0.293,0.6,0.6,0,0.15,0.122 +1,0.269,0.269,0,0,0,1,0.293,0.6,0.6,0,0.0258,0.488 +1,0.269,0.269,0,0,0,1,0.293,0.6,0.6,0,0,0 +1,0.268,0.268,0,0,0,1,0.315,0.591,0.591,0,0.468,0 +1,0.268,0.268,0,0,0,0.9,0.315,0.591,0.591,0,0.361,0 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.446,0 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0.614,0,0 +1,0.412,0.412,0,0.8,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.484,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.418,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.31,0,0.122 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.495,0,0 +1,0.484,0.484,0,0.1,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.576,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.359,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.402,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.283 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.106 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.471 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.507 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.274 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.342 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.101 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.259 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0971 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.105 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.105 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.261 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0326 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.304 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0.1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0.366 +1,0.271,0.271,0.7,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.104 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.487 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.102 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.204 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.488 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0.1,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0.8,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.109 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0652 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.229 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.434 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.163 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0976 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.122 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.488 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.8,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0.3,0,0,0,0.587,0.772,0.772,0,0,0.175 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.175 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.243 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.488 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.653 +1,0.484,0.484,0.7,0,0,0,0.698,0.787,0.787,0,0,0.254 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.354 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0354 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.62,0,0.177 +1,0.619,0.619,0,1,0,0,0.742,0.742,0.742,0.38,0,0.177 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.386,0,0.244 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.658,0,0.401 +1,0.783,0.783,0,1,1,0,0.787,0.698,0.698,0,0.0258,0.397 +1,0.783,0.783,0,0.9,1,0,0.787,0.698,0.698,0.674,0.249,0 +1,0.783,0.783,0,0,1,0,0.787,0.698,0.698,0.321,0,0 +1,0.88,0.88,0,0,0.1,0.2,0.765,0.668,0.668,0.321,0.236,0 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.707,0,0.289 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.413,0,0.266 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.261,0,0 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.353,0,0 +1,0.603,0.603,0,0,0,1,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0.7,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.156 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.172 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.172 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.331 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.132 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.174 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.203 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.203 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.254 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.488 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0.8,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0.205 +0.667,0.162,0.162,0.4,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0.3,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.488 +1,0.291,0.291,0.9,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.167 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.456 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.212 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.184 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.046 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.105 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.14 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.224 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.164 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.22 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.283 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.488 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.366 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.295 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.313 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.366 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.335 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0669 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.278 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0697 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.349 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0349 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.854 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0.538,0,0 +0.333,0.159,0.159,0,1,0,0,0.29,0.538,0.538,0.576,0,0 +0.333,0.159,0.159,0,1,0,0,0.29,0.538,0.538,0.288,0,0 +0.333,0.159,0.159,0,1,0,0,0.29,0.538,0.538,0.478,0,0 +0.667,0.269,0.269,0,1,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0.4,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0.337,0,0 +0.333,0.17,0.17,0,1,0,0,0.368,0.568,0.568,0.56,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.413,0,0.122 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.543,0,0 +0.667,0.339,0.339,0,0.4,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0.3,0,0,0,0.551,0.68,0.68,0,0,0.26 +0.667,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.154 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.222 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.353 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0.2,0,0,0,0.787,0.698,0.698,0,0,0.406 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.353 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,0.7,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.57 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.171 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.0937 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.0625 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0.3,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0.122 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.175 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.035 +0.333,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0.6,0,0,0,0.297,0.523,0.523,0,0,0.143 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0.3,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,1,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0.1,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.61 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.488 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.366 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0.3,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0.5,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.175 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.297 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.366 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0964 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0964 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.27 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.203 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0.1,0,0,0,0.345,0.518,0.518,0,0,0.135 +0.667,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0.271 +0.667,0.175,0.175,0.3,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.565,0,0 +0.667,0.175,0.175,0,0.8,0,0,0.297,0.523,0.523,0.283,0,0 +0.667,0.175,0.175,0,1,0,0,0.297,0.523,0.523,0.402,0,0 +0.667,0.175,0.175,0,1,0,0,0.297,0.523,0.523,0.533,0,0 +0.667,0.299,0.299,0,1,0,0,0.256,0.581,0.581,0.685,0,0 +0.667,0.299,0.299,0,0.6,0,0,0.256,0.581,0.581,0.408,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0.299,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0.348,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0.277,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.266,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.255,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.435,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.342,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.424,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.266,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.266,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.418,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.533,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.418,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.451,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.272,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.408,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.473,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0.6,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0.6,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.366 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.122 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.488 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.244 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.34 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0.1,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.424,0.424,1,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,1,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,0.7,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,0,0.3,0,0,0.255,0.638,0.638,0.342,0,0 +1,0.424,0.424,0,1,0,0,0.255,0.638,0.638,0.402,0,0 +1,0.411,0.411,0,1,0,0,0.266,0.638,0.638,0.397,0,0 +1,0.411,0.411,0,1,0,0,0.266,0.638,0.638,0.28,0,0 +0.667,0.291,0.291,0,1,0,0,0.263,0.581,0.581,0.28,0,0 +0.667,0.291,0.291,0,0.1,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.478,0,0.122 +0.333,0.159,0.159,0,0.8,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,1,0,0,0.275,0.533,0.533,0.424,0,0 +0.333,0.159,0.159,0,1,0,0,0.275,0.533,0.533,0.37,0,0 +0.333,0.159,0.159,0,1,0,0,0.286,0.528,0.528,0.462,0,0 +0.333,0.159,0.159,0,0.6,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.435,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.342,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.505,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.359,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.457,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.488 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.366 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.61 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0.6,0,0,0,0.587,0.772,0.772,0,0,0.488 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0.6,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0.6,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.488 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.732 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.366 +1,0.88,0.88,1,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,1,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0.4,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.0936 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.4 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.488 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.488 +0.667,0.17,0.17,0,0,0.5,0,0.368,0.568,0.568,0,0.0129,0 +0.667,0.17,0.17,0,0,1,0,0.368,0.568,0.568,0,0.236,0 +1,0.291,0.291,0,0,0,0.3,0.477,0.67,0.67,0,0.421,0 +1,0.291,0.291,0,0,0,1,0.477,0.67,0.67,0,0.283,0 +1,0.291,0.291,0,0,0,1,0.477,0.67,0.67,0,0,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.322,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.309,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.309,0.244 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.137,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.283,0.488 +1,0.339,0.339,0,0,0,0.1,0.551,0.68,0.68,0,0.283,0.122 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.348,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.296,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.519,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.421,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.618,0.366 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.0987,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.378,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.189,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0.3,0,0,0,0.61,0.62,0.62,0,0,0.122 +1,0.538,0.538,1,0,0,0,0.61,0.62,0.62,0,0,0.244 +1,0.88,0.88,0.1,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.488 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.23 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.154 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0309 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0.1,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,1,0,0.264,0.528,0.528,0,0.283,0 +0.333,0.164,0.164,0,0,0.5,0,0.264,0.528,0.528,0,0.249,0 +0.333,0.164,0.164,0,0,0,0.8,0.264,0.528,0.528,0,0.223,0 +0.333,0.164,0.164,0,0,0,1,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,1,0.264,0.528,0.528,0,0.0129,0 +0.333,0.164,0.164,0,0,0,1,0.264,0.528,0.528,0,0.296,0 +0.333,0.16,0.16,0,0,0,0.6,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.3,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.5,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.488 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.248 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.172 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.191 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.189 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +1,0.538,0.538,0,0.5,0,0,0.61,0.62,0.62,0.364,0,0.488 +1,0.538,0.538,0,1,0,0,0.61,0.62,0.62,0.37,0,0.122 +1,0.538,0.538,0,1,0,0,0.61,0.62,0.62,0.462,0,0 +1,0.538,0.538,0,1,0,0,0.61,0.62,0.62,0.69,0,0 +1,0.538,0.538,0,0.9,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.732 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.195 +1,0.0798,0.0798,0.3,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.11,0.11,1,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,1,0,0,0,0.352,0.482,0.482,0,0,0.164 +1,0.11,0.11,0.9,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.324 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.204 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.102 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.231 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.167 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0.5,0,0,0.257,0.523,0.523,0.353,0,0 +0.333,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.223,0,0.122 +0.333,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.5,0,0 +0.333,0.17,0.17,0,1,0,0,0.26,0.523,0.523,0.31,0,0 +0.333,0.17,0.17,0,0.9,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.3,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0.3,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.61 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.541,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.309,0 +0.667,0.339,0.339,0,0,1,0,0.551,0.68,0.68,0,0.369,0 +0.667,0.339,0.339,0,0,0.1,0.2,0.551,0.68,0.68,0,0.369,0 +0.667,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.223,0 +0.667,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0,0.244 +0.667,0.429,0.429,0,0,0,1,0.581,0.65,0.65,0,0.532,0.122 +0.667,0.429,0.429,0,0,0,1,0.581,0.65,0.65,0,0.296,0 +0.667,0.429,0.429,0,0,0,1,0.581,0.65,0.65,0,0.433,0 +0.667,0.429,0.429,0,0,0,0.7,0.581,0.65,0.65,0,0.571,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.567,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.223,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.348,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.369,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.124,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.356,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.296,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0.219 +1,0.236,0.236,0.5,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.122 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.354 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0354 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.169 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.305 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.248 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.484,0.484,0,0.5,0,0,0.698,0.787,0.787,0.402,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.38,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.391,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.424,0,0 +1,0.484,0.484,0.3,0.9,0,0,0.698,0.787,0.787,0.31,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0.31,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0.5,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.176 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.278 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.157 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0629 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0.246 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0.3,0,0,0,0.331,0.493,0.493,0,0,0.168 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0673 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.35 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0.5,0,0,0.477,0.67,0.67,0.277,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.386,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.571,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.332,0,0 +1,0.412,0.412,0,0.9,0,0,0.587,0.772,0.772,0.359,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.516,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.326,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.337,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.174,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.174,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.587,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.375,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.364,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.413,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.418,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.538,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.31,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.366 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.227 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.366 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.106 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.353 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.106 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0.6,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0.8,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.366 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.244 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.488 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0.6,0,0,0,0.374,0.63,0.63,0,0,0.488 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.198 +1,0.412,0.412,0.6,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.0626 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.188 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.105 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.35 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.315 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0985 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.164 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.366 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.104 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.104 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.205 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,0.6,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0.2,0.3,0,0,0.698,0.787,0.787,0.641,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.364,0,0.122 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.342,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.293,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.619,0.619,0,1,0,0,0.742,0.742,0.742,0.413,0,0.122 +1,0.619,0.619,0,0.6,0,0,0.742,0.742,0.742,0.424,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.239,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.603,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.283,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.418,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.25,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.609,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.533,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.266,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.342,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.81,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.435,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.293,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.527,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.495,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.277,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.543,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.44,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.391,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0.505,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0.166,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0.166,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.33 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.249,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,1,0,0.404,0.521,0.521,0,0.446,0.296 +1,0.236,0.236,0.3,0,0.6,0,0.404,0.521,0.521,0,0.0601,0 +1,0.236,0.236,1,0,0,0.7,0.404,0.521,0.521,0,0,0 +1,0.417,0.417,1,0,0,1,0.521,0.623,0.623,0,0.532,0.0329 +1,0.417,0.417,1,0,0,1,0.521,0.623,0.623,0,0.361,0.197 +1,0.417,0.417,1,0,0,0.2,0.521,0.623,0.623,0,0.249,0 +1,0.417,0.417,1,0,0,0,0.521,0.623,0.623,0,0.309,0 +1,0.417,0.417,1,0,0,0,0.521,0.623,0.623,0,0.236,0 +1,0.417,0.417,0.7,0,0,0,0.521,0.623,0.623,0,0.618,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.309,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.137,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.0386,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.073,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.249,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.185,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.361,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.635,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.425,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0.464,0 +1,0.411,0.411,0.3,0,0,0,0.266,0.638,0.638,0,0.403,0 +1,0.411,0.411,1,0,0,0,0.266,0.638,0.638,0,0.815,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0.283,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0.283,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0.296,0 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0.453,0 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0.453,0.488 +0.667,0.279,0.279,0.7,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0.5,0,0,0.271,0.591,0.591,0.522,0.309,0 +0.667,0.279,0.279,0,1,0,0,0.271,0.591,0.591,0.353,0,0 +0.667,0.279,0.279,0,1,0,0,0.271,0.591,0.591,0.842,0,0.122 +0.667,0.271,0.271,0,1,0,0,0.263,0.6,0.6,0.359,0,0 +0.667,0.271,0.271,0,0.9,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,1,0,1,0,0.368,0.568,0.568,0,0.584,0 +0.333,0.17,0.17,0.5,0,1,0,0.368,0.568,0.568,0,0.0601,0.122 +0.667,0.291,0.291,0,0,1,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,1,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0.6,0,0.477,0.67,0.67,0,0,0.61 +0.667,0.291,0.291,0,0,0,0.7,0.477,0.67,0.67,0,0,0.122 +1,0.484,0.484,0,0,0,0.7,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.359,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.315,0,0.122 +1,0.484,0.484,0,1,1,0,0.698,0.787,0.787,0.207,0.369,0 +1,0.484,0.484,0,1,1,0,0.698,0.787,0.787,0.207,0.459,0 +1,0.484,0.484,0,1,1,0,0.698,0.787,0.787,0.603,0.18,0 +1,0.619,0.619,0,1,0.1,0.2,0.742,0.742,0.742,0.402,0.438,0 +1,0.619,0.619,0,0.9,0,1,0.742,0.742,0.742,0.554,0.0386,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0.424,0.395,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0,0.369,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0.217,0.309,0 +1,0.619,0.619,0,0,0,0.2,0.742,0.742,0.742,0.533,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.587,0.421,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.397,0.335,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.0258,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.348,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.309,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.174 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0349 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.479 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.149 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.0299 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.385 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.292 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.34 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.488 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.244 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0.5,0,0.337,0.581,0.581,0,0.361,0 +0.333,0.175,0.175,0,0,1,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0.3,0.257,0.523,0.523,0,0.21,0 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0.27,0 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0.0901,0.244 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0,0.488 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0.0987,0.122 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0.6,0.26,0.523,0.523,0,0.283,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.283,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.234,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.384,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.3,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0.9,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,1,0,0.322,0.61,0.61,0,0.725,0 +0.667,0.269,0.269,0,0,0.5,0,0.322,0.61,0.61,0,0.137,0 +0.667,0.269,0.269,0,0,0,0.8,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,1,0.374,0.63,0.63,0,0.451,0 +0.667,0.274,0.274,0,0,0,1,0.374,0.63,0.63,0,0.464,0 +1,0.386,0.386,0,0,0,1,0.432,0.713,0.713,0,0,0.244 +1,0.386,0.386,0,0,0,1,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,1,0.432,0.713,0.713,0,0,0.366 +1,0.386,0.386,0,0,0,0.1,0.432,0.713,0.713,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.61 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.25 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.155 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.031 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0.3,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.314 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.0697 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,1,0.5,0,0,0.787,0.698,0.698,0.315,0,0 +1,0.783,0.783,0.3,1,0,0,0.787,0.698,0.698,0.446,0,0.176 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.592,0,0.282 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.418,0,0 +1,0.783,0.783,0,0.9,0,0,0.787,0.698,0.698,0.288,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.258,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0.258,0,0.276 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.171 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.239 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0.122 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.4,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.278 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.196 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.245 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.61 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.133 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.244 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.244 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.161 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.366 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.244 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.322 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.361,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.393,0.244 +0.333,0.159,0.159,0,0,1,0,0.29,0.538,0.538,0,0.135,0 +0.333,0.159,0.159,0,0,0.6,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0.7,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,1,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,1,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,1,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0.7,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0.366 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.244 +0.667,0.291,0.291,0.5,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.488 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.403 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.0637 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.488 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.366 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.59 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.0692 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.145 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.169 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.236 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.185 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0941 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.282 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.366 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0.3,0,0,0,0.374,0.63,0.63,0,0,0.244 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0.1,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0.5,0,0,0.477,0.67,0.67,0.391,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.304,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.527,0,0 +0.667,0.339,0.339,0,1,0,0,0.551,0.68,0.68,0.424,0,0 +0.667,0.339,0.339,0,0.9,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.484,0.484,0.8,0,0,0,0.698,0.787,0.787,0.359,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0.5,0,0.122 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0.266,0,0.366 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0.429,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0.429,0,0 +1,0.619,0.619,0.2,0,0,0,0.742,0.742,0.742,0.685,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0.446,0,0.122 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.348,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.745,0,0.122 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +0.667,0.603,0.603,0,0,1,0,0.596,0.6,0.6,0,0.369,0 +0.667,0.603,0.603,0,0,1,0,0.596,0.6,0.6,0,0.0601,0 +0.667,0.603,0.603,0,0,1,0,0.596,0.6,0.6,0,0,0 +0.667,0.415,0.415,0,0,0.1,0.2,0.522,0.551,0.551,0,0.425,0 +0.667,0.415,0.415,0,0,0,1,0.522,0.551,0.551,0,0.18,0 +1,0.597,0.597,0,0,0,0.2,0.654,0.594,0.594,0,0.348,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.309,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.137,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.185,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.353 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.169 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.237 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.1 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.167 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.189 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.236 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.163 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.163 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.175,0.175,0.1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.338 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.535 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.347 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0694 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0.3,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0.5,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0.5,0,0,0.587,0.772,0.772,0.478,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.63,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.467,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.386,0,0 +1,0.484,0.484,0,0.9,0.5,0,0.698,0.787,0.787,0.247,0.283,0 +1,0.484,0.484,0,0,1,0,0.698,0.787,0.787,0.247,0,0 +1,0.484,0.484,0,0,1,0,0.698,0.787,0.787,0.283,0.433,0 +1,0.484,0.484,0,0,0.6,0,0.698,0.787,0.787,0,0.513,0 +1,0.484,0.484,0,0,0,0.7,0.698,0.787,0.787,0,0.513,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0,0.361,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0,0.258,0 +1,0.619,0.619,0,0,0,0.2,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0.481,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.334 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.244 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.489,0,0 +0.667,0.174,0.174,0,0.8,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.413,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.348,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.321,0,0.244 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.489,0,0.366 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.17,0.17,0,0.1,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0.478,0,0 +0.667,0.164,0.164,0,0.8,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.342,0,0 +0.667,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.505,0,0.122 +0.667,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.56,0,0.122 +0.667,0.164,0.164,0,0.6,0,0,0.264,0.528,0.528,0.429,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.272,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.446,0,0.61 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.315,0,0.488 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.266,0,0.244 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.598,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.185,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.185,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.696,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.6,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.8,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.222 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0.366 +0.333,0.194,0.194,1,0,0,0,0.405,0.572,0.572,0,0,0.244 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.106 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.176 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.277 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0346 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.099 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.231 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.105 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.245 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.102 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.17 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.6,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.8,0,0,0,0.293,0.6,0.6,0,0,0.122 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0,0 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0,0 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0,0 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.122 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.244 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.244 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0.3,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,1,0,0.61,0.62,0.62,0,0.468,0 +1,0.538,0.538,0,0,1,0,0.61,0.62,0.62,0,0.283,0 +1,0.538,0.538,0,0,0.8,0,0.61,0.62,0.62,0,0,0 +1,0.603,0.603,0,0,0,0.5,0.596,0.6,0.6,0,0.309,0.122 +1,0.603,0.603,0,0,0,1,0.596,0.6,0.6,0,0.137,0 +1,0.603,0.603,0,0,0,1,0.596,0.6,0.6,0,0,0.488 +1,0.603,0.603,0,0,0,0.4,0.596,0.6,0.6,0,0.348,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0.592,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0.406,0.105 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.195,0.07 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.597,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.275,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0.6,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.415,0.415,1,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.183,0.183,1,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,1,0,0,0,0.455,0.511,0.511,0,0,0.265 +1,0.183,0.183,0.6,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.244 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.244 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.122 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.158 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.185 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.122 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0.3,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,1,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0.5,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.667,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0.5,0,0,0,0.551,0.68,0.68,0,0,0.244 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0.5,0,0,0.787,0.698,0.698,0.255,0,0 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.473,0,0 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.402,0,0.122 +1,0.603,0.603,0,1,0,0,0.596,0.6,0.6,0.402,0,0 +1,0.603,0.603,0,1,0,0,0.596,0.6,0.6,0.5,0,0 +1,0.603,0.603,0,1,0,0,0.596,0.6,0.6,0,0,0.366 +1,0.603,0.603,0,0.4,0,0,0.596,0.6,0.6,0.543,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.128 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.196 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.343 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.0343 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.183 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.307 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.128 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.335 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.177 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.318 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0.3,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0.4,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.0386,0.122 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0.3,0.287,0.529,0.529,0,0.562,0 +0.333,0.149,0.149,0,0,0,1,0.287,0.529,0.529,0,0.3,0.122 +0.333,0.149,0.149,0,0,0,1,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0.6,0.287,0.529,0.529,0,0.567,0 +0.333,0.149,0.149,0.3,0,0,0,0.287,0.529,0.529,0,0.223,0 +0.333,0.149,0.149,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0.1,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.25 +1,0.353,0.353,0.3,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,0.5,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.169 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.339 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0678 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0.5,0,0.745,0.745,0.745,0,0.249,0 +1,0.523,0.523,0,0,1,0,0.745,0.745,0.745,0,0,0 +1,0.464,0.464,0,0,1,0,0.613,0.622,0.622,0,0.526,0 +1,0.464,0.464,0,0,1,0,0.613,0.622,0.622,0,0.23,0 +1,0.464,0.464,0,0,1,0,0.613,0.622,0.622,0,0,0.244 +1,0.464,0.464,0,0,0,0.3,0.613,0.622,0.622,0,0,0.103 +1,0.464,0.464,0,0,0,1,0.613,0.622,0.622,0,0,0.732 +1,0.464,0.464,0,0,0,1,0.613,0.622,0.622,0,0,0.366 +1,0.549,0.549,0,0,0,1,0.598,0.602,0.602,0,0,0.134 +1,0.549,0.549,0,0,0,1,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0.1,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.211 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.353 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.165 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0659 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.295 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.177 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.208 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.158 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.126 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.183 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.366 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.169 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.101 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.25 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.61 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.484 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.171 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.167 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.854 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.273 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.534 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.235 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.126 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0316 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.3,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0.5,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0.359,0,0.403 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.647,0,0 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.696,0,0 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.364,0,0 +1,0.464,0.464,0,0.3,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.163 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0652 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.366 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.172 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.318 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.113 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0.5,0,0,0.276,0.534,0.534,0.451,0,0 +0.333,0.149,0.149,0,1,0,0,0.276,0.534,0.534,0.522,0,0 +0.333,0.149,0.149,0,1,0,0,0.276,0.534,0.534,0.288,0,0 +0.333,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0.625,0,0 +0.333,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0.3,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.366 +1,0.371,0.371,1,0.5,0,0,0.59,0.775,0.775,0.451,0,0 +1,0.371,0.371,1,1,0,0,0.59,0.775,0.775,0.353,0,0 +1,0.371,0.371,1,1,0,0,0.59,0.775,0.775,0.413,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0.8,0,0,0.701,0.79,0.79,0.424,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0.44,0,0.366 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0.38,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0.56,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.288,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.332,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.174,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.174,0,0 +1,0.523,0.523,0.4,0,0,0,0.745,0.745,0.745,0.386,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.408,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.31,0,0.157 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0941 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.366 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.412 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.412 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.366 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.334 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0667 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.402,0,0.211 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.832,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.848,0,0 +0.667,0.278,0.278,0,1,0,0,0.257,0.582,0.582,0.234,0,0 +0.667,0.278,0.278,0,0.8,0,0,0.257,0.582,0.582,0.234,0,0.16 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0.484,0,0.0639 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0.234,0,0 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.536 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.069 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.138 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.0692 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0.177 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.142 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0.8,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.5,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.366 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.366 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.287 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0661 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.34 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.299 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,1,0,0,0,0.257,0.524,0.524,0,0,0.519 +0.667,0.164,0.164,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0.162 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0.0649 +0.333,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.27,0.27,0.6,0,0,0,0.264,0.582,0.582,0,0,0.268 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.167 +0.667,0.27,0.27,0,0,0.5,0,0.264,0.582,0.582,0,0.309,0 +0.667,0.27,0.27,0,0,1,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.335,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.249,0.163 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0.3,0.271,0.592,0.592,0,0.0987,0 +0.667,0.259,0.259,0,0,0,1,0.271,0.592,0.592,0,0.309,0.366 +0.667,0.259,0.259,0,0,0,1,0.271,0.592,0.592,0,0.21,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.382,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.309,0.488 +0.667,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0,0.122 +0.667,0.15,0.15,0,0,0,0.6,0.261,0.534,0.534,0,0.159,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.296,0.122 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.15,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.408,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.567,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.412,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0.402,0,0 +0.667,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0.451,0,0 +0.667,0.149,0.149,0,1,0,0,0.29,0.539,0.539,0,0,0.18 +0.667,0.149,0.149,0,1,0,0,0.29,0.539,0.539,0.467,0,0 +0.667,0.149,0.149,0,1,0,0,0.29,0.539,0.539,0.478,0,0 +0.667,0.149,0.149,0,0.3,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.171 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0342 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0982 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,1,0,1,0,0.479,0.672,0.672,0,0.322,0.231 +0.667,0.264,0.264,0.5,0,1,0,0.479,0.672,0.672,0,0.536,0.122 +0.667,0.264,0.264,0,0,1,0,0.479,0.672,0.672,0,0.455,0 +0.667,0.264,0.264,0,0,0,0.3,0.479,0.672,0.672,0,0.373,0 +0.667,0.264,0.264,0,0,0,1,0.479,0.672,0.672,0,0.322,0.527 +1,0.371,0.371,0,0,0,1,0.59,0.775,0.775,0,0.309,0.0967 +0.667,0.296,0.296,0,0,0,1,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,1,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0.1,0.553,0.682,0.682,0,0,0.486 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.382 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.244 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.244 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.148 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.116,0.116,1,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,1,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0.9,0,0,0,0.357,0.489,0.489,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.221 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.329 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.0659 +0.667,0.228,0.228,0.8,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,1,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,1,0,0,0,0.405,0.523,0.523,0,0,0.306 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.238 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.114 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0335 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.268 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0.5,0,0.287,0.529,0.529,0,0.283,0.0323 +0.333,0.149,0.149,0,0,1,0,0.287,0.529,0.529,0,0.361,0.129 +0.333,0.149,0.149,0,0,0,0.3,0.29,0.539,0.539,0,0.369,0 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0.468,0.244 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0.446,0 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0.1,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.333,0.151,0.151,0.8,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.296,0.296,0.7,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.162 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.276 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.118 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.16 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0641 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0956 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.32 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0.4,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0.8,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.244 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.366 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.247 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0.5,0,0,0.79,0.701,0.701,0.348,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.304,0,0.122 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.505,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.478,0,0 +1,0.671,0.671,0,0.8,0,0,0.79,0.701,0.701,0.527,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.467,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.321,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.386,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.168,0,0.342 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.168,0,0.19 +1,0.799,0.799,0,1,0,0,0.768,0.671,0.671,0.451,0,0 +1,0.405,0.405,0,1,0,0,0.524,0.553,0.553,0.571,0,0 +1,0.405,0.405,0,1,0,0,0.524,0.553,0.553,0.5,0,0.145 +1,0.405,0.405,0,1,0,0,0.524,0.553,0.553,0.299,0,0 +1,0.405,0.405,0.8,1,0,0,0.524,0.553,0.553,0.31,0,0 +1,0.405,0.405,1,0.8,0,0,0.524,0.553,0.553,0.31,0,0 +1,0.405,0.405,1,0,0,0,0.524,0.553,0.553,0.402,0,0.122 +1,0.183,0.183,1,0,0,0,0.457,0.513,0.513,0.245,0,0 +1,0.183,0.183,0.5,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0923 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.299 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0708 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.156 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0415 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.253 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0.413,0,0 +0.333,0.139,0.139,0,1,0,0,0.331,0.494,0.494,0.375,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.342,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.478,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.614,0,0 +0.333,0.167,0.167,0,0.8,0,0,0.346,0.519,0.519,0.663,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.402,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.462,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.587,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.375,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.326,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.527,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.101 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.234 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.265 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.323 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.398 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.203 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0.8,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0.6,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.732 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0.5,0,0.745,0.745,0.745,0,0.361,0 +1,0.523,0.523,0,0,1,0,0.745,0.745,0.745,0,0,0.244 +1,0.671,0.671,0,0,1,0,0.79,0.701,0.701,0,0.504,0 +1,0.671,0.671,0,0,1,0,0.79,0.701,0.701,0,0.53,0 +1,0.671,0.671,0,0,1,0,0.79,0.701,0.701,0,0.73,0 +1,0.671,0.671,0,0,0,0.3,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,1,0.79,0.701,0.701,0,0.185,0.244 +1,0.671,0.671,0,0,0,1,0.79,0.701,0.701,0,0.573,0 +1,0.799,0.799,0,0,0,1,0.768,0.671,0.671,0,0.204,0 +1,0.799,0.799,0,0,0,1,0.768,0.671,0.671,0,0.322,0 +1,0.799,0.799,0,0,0,0.1,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0.249,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.348 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.276 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.103 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.148 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.208 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.104 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.61 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0.3,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.488 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0.9,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.276 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.244 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.192 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.14 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0.3,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0.341 +1,0.523,0.523,0.4,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.175 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.105 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.327 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.155 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.731 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.227 +1,0.0495,0.0495,0.3,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0503,0.0503,0.1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.33 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.207 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.155 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.176 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.351 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.141 +1,0.317,0.317,0.3,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.402,0.402,0.1,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.244 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0923 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.366 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.366 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.244 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.337 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.244 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.191 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.123 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0617 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.333,0.154,0.154,0.3,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0.4,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.366 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.308 +1,0.0781,0.0781,0.5,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.333 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.435 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.333 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0666 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.24 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,1,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.286,0.286,0.1,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.164,0.164,0,0.5,0,0,0.257,0.524,0.524,0.489,0,0 +0.333,0.164,0.164,0,1,0,0,0.257,0.524,0.524,0.375,0,0 +0.333,0.164,0.164,0,1,0,0,0.257,0.524,0.524,0.359,0,0 +0.333,0.16,0.16,0,1,0,0,0.261,0.524,0.524,0.522,0,0 +0.333,0.16,0.16,0,0.8,0,0,0.261,0.524,0.524,0.293,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0.293,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.335,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.21,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.322,0 +0.667,0.251,0.251,0,0,1,0,0.264,0.602,0.602,0,0.408,0 +0.667,0.251,0.251,0,0,0.5,0,0.264,0.602,0.602,0,0.309,0 +0.333,0.15,0.15,0,0,0,0.8,0.261,0.534,0.534,0,0.361,0.244 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.232,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.249,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,1,0.276,0.534,0.534,0,0.309,0.167 +0.333,0.149,0.149,0,0,0,1,0.276,0.534,0.534,0,0.309,0.488 +0.333,0.149,0.149,0,0,0,0.1,0.276,0.534,0.534,0,0.27,0.122 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.0987,0.132 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.0258,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.408,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.296,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.395,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.318,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.223,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.348,0 +0.667,0.249,0.249,0.3,0,0,0,0.323,0.612,0.612,0,0.073,0.244 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.249,0.249,0.1,0,0,0,0.323,0.612,0.612,0,0.472,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.584,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.661,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.618,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.283,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.236,0.488 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.348,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.21,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.612,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.539,0.244 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.296,0.244 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0.545,0.488 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0.618,0.366 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0.5,0,0,0.553,0.682,0.682,0.457,0.472,0 +0.667,0.296,0.296,0,1,0,0,0.553,0.682,0.682,0.348,0.476,0 +0.667,0.296,0.296,0,1,0,0,0.553,0.682,0.682,0.364,0.253,0 +0.667,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.63,0,0 +0.667,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.179,0,0 +1,0.523,0.523,0,1,0,0,0.745,0.745,0.745,0.179,0,0 +1,0.523,0.523,0,0.3,0,0,0.745,0.745,0.745,0.478,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0.3,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,1,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.667,0.259,0.259,0.9,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0.249,0 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0.249,0.244 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0.348,0 +0.667,0.249,0.249,0,0,0.5,0,0.294,0.602,0.602,0,0.197,0 +0.667,0.249,0.249,0,0,0,0.8,0.294,0.602,0.602,0,0,0.366 +0.667,0.249,0.249,0,0,0,1,0.316,0.592,0.592,0,0,0.366 +0.667,0.249,0.249,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0.6,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.488 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.3,0,0,0,0.479,0.672,0.672,0,0,0.488 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0.244 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.35 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.203 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.518 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0.3,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.346 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.592 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.17 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.339 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0339 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.309,0.469,0.469,0,0.309,0 +1,0.0495,0.0495,0,0,1,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0.3,0.309,0.469,0.469,0,0.47,0 +1,0.0495,0.0495,0,0,0,1,0.309,0.469,0.469,0,0.273,0 +1,0.0495,0.0495,0,0,0,1,0.309,0.469,0.469,0,0.296,0 +1,0.0495,0.0495,0,0,0,1,0.305,0.464,0.464,0,0.361,0 +1,0.0495,0.0495,0,0,0,1,0.305,0.464,0.464,0,0.309,0 +1,0.0495,0.0495,0,0,0,0.1,0.305,0.464,0.464,0,0.0515,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.494,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.137,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.336 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.328 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0657 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.14 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.348 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.177 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0354 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.146 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.303 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.488 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0.6,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0.5,0,0,0.701,0.79,0.79,0.304,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.337,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.38,0,0.244 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.37,0,0 +1,0.42,0.42,0,0.8,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.614,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.56,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.598,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.386,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.299,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.435,0,0.154 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.299,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.527,0,0.122 +1,0.671,0.671,0.8,0,0,0,0.79,0.701,0.701,0.215,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0.215,0,0.122 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.424,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.255,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.348,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.603,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.121 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.165 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.132 +1,0.228,0.228,0.1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.208 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.743 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.163 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.163 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.252,0.252,0.5,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.8,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.6,0,0,0,0.479,0.672,0.672,0,0,0.366 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.464,0.464,0,0.5,0,0,0.613,0.622,0.622,0.332,0,0 +1,0.464,0.464,0,1,0,0,0.613,0.622,0.622,0.293,0,0 +1,0.464,0.464,0,1,0,0,0.613,0.622,0.622,0.397,0,0.122 +1,0.464,0.464,0,1,0,0,0.613,0.622,0.622,0.859,0,0 +1,0.464,0.464,0,0.8,0,0,0.613,0.622,0.622,0.209,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0.209,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.366 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.451,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.418,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.853,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.31,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0.38,0,0.287 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.166 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0666 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.205 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0.9,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0.4,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0.3,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,1,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.5,0,0,0,0.745,0.745,0.745,0.505,0,0 +1,0.523,0.523,0,1,0,0,0.745,0.745,0.745,0.266,0,0.122 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.226,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.226,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.755,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.293,0,0 +1,0.671,0.671,0,0.8,0,0,0.79,0.701,0.701,0.424,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.582,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.473,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.446,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.337,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.444 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.541 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0351 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.233 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.177 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0706 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.457 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.287 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.465 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.175 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.14 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0.3,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0.332,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0.413,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0.696,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0.408,0,0 +1,0.523,0.523,1,0.3,0,0,0.745,0.745,0.745,0.495,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.424,0,0.488 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.272,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.366 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.246 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.366 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0637 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.354 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0354 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.337 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.0337 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.166 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.288 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.255 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.206 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.154 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0.244 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0.473 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0.156 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.156 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.0934 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.122 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.349,0.349,0.3,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.349,0.349,1,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.349,0.349,1,0,1,0,0.356,0.686,0.686,0,0.283,0 +1,0.349,0.349,1,0,1,0,0.356,0.686,0.686,0,0.249,0 +1,0.349,0.349,1,0,1,0,0.356,0.686,0.686,0,0,0 +1,0.353,0.353,1,0,1,0,0.434,0.715,0.715,0,0.21,0 +1,0.353,0.353,1,0,0.5,0,0.434,0.715,0.715,0,0.249,0 +1,0.353,0.353,1,0,0,0.8,0.434,0.715,0.715,0,0,0.244 +1,0.353,0.353,1,0,0,1,0.434,0.715,0.715,0,0.223,0 +1,0.353,0.353,1,0,0,1,0.434,0.715,0.715,0,0.296,0 +1,0.353,0.353,0.8,0,0,1,0.434,0.715,0.715,0,0.0987,0 +1,0.371,0.371,0,0,0,1,0.59,0.775,0.775,0,0.296,0 +1,0.371,0.371,0,0,0,1,0.59,0.775,0.775,0,0.459,0 +1,0.371,0.371,0,0,0,0.1,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.283,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.296,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.0386,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.197,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.249,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.483,0.366 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.298,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.296,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.159,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.459,0.488 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.545,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.137,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.361,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.288,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.236,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.249,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0.8,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0.6,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.227 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.101 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.101 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.339 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0.8,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0.189 +1,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0.5,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.244 +1,0.352,0.352,0,0,0,0,0.267,0.671,0.671,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.667,0.249,0.249,0.8,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0.5,0,0.375,0.632,0.632,0,0.0601,0.244 +1,0.353,0.353,1,0,1,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,1,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,0.5,0,0.434,0.715,0.715,0.37,0,0.244 +1,0.353,0.353,0.8,1,0,0.8,0.434,0.715,0.715,0.408,0,0 +1,0.371,0.371,0,1,0,1,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,1,0,1,0.59,0.775,0.775,0.701,0,0.366 +1,0.371,0.371,0,1,0,1,0.59,0.775,0.775,0.272,0,0.122 +1,0.371,0.371,0,1,0,0.6,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0.8,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0.3,0,0,0,0.79,0.701,0.701,0,0,0.528 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0.194 +1,0.799,0.799,0.1,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.366 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.244 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.244 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.122 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.244 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.122 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.488 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0.4,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.3 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.161 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0642 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.273 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.377 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.035 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.315 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.518 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0305 +0.667,0.249,0.249,0.8,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0.6,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.301 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.0335 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.339 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.271 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.276 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.068 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.068 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.165 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.132 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.108 +0.667,0.296,0.296,0.3,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.464,0.464,1,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0.1,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.341 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.127 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0.3,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0.1,0,0,0,0.478,0.551,0.551,0,0,0.109 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.167 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.334 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.403 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.249 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.35 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.156 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0936 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.333 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.667,0.259,0.259,0.8,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0.6,0,0,0,0.271,0.592,0.592,0,0,0.291 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.156 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.159 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.157,0.157,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.366 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.6,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.154 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.232 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.158 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.169 +0.667,0.139,0.139,0.3,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0.155 +0.667,0.139,0.139,0.5,0,0.5,0,0.331,0.494,0.494,0,0.0601,0.031 +0.667,0.139,0.139,0,0,1,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0,0,1,0,0.346,0.519,0.519,0,0.296,0 +0.667,0.167,0.167,0,0,1,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,1,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0.3,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,1,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0,0.336 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0,0.168 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0.6,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.488 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.221 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.153 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.427 +1,0.371,0.371,0.8,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0.4,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.268 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.488 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.335 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.401 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0.1 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.161 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.0642 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.336 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.189 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.542 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0353 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.218 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.488 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.488 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0.8,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,1,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,1,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.147 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.246 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.299 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0318 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.127 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.366 +0.667,0.16,0.16,0.8,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.366 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.185 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.174 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.174 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.244 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.697 +0.667,0.296,0.296,0.3,0,0,0,0.553,0.682,0.682,0,0,0.437 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.24 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.204 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.224 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.134 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.136 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.235 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.122 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.122 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.31,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.418,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.326,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.571,0,0 +1,0.0495,0.0495,0,0.8,0,0,0.258,0.465,0.465,0.359,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.326,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0.3,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.168,0.168,0.1,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0.5,0,0.298,0.524,0.524,0,0.0601,0 +1,0.168,0.168,0,0,1,0,0.298,0.524,0.524,0,0.236,0 +1,0.404,0.404,0,0,0,0.3,0.378,0.641,0.641,0,0.124,0 +1,0.404,0.404,0,0,0,1,0.378,0.641,0.641,0,0.0987,0 +1,0.404,0.404,0,0,0,1,0.378,0.641,0.641,0,0.408,0 +0.667,0.278,0.278,0,0,0,0.6,0.257,0.582,0.582,0,0.322,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.258,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.262,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.369,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.335,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.223,0.488 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.172,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.558,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.296,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.296,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.283,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.0258,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.258,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0.3,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0.732 +0.667,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.488 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0.652,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.337,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.701,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,0,0.3,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.209 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.134 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.168 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0351 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.168 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0335 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0.5,0,0,0.346,0.519,0.519,0.489,0,0.148 +0.667,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.391,0,0 +0.667,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.592,0,0 +0.667,0.284,0.284,0,1,0,0,0.435,0.572,0.572,0.397,0,0.171 +0.667,0.284,0.284,0,0.8,0,0,0.435,0.572,0.572,0.261,0,0.171 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0.261,0,0 +0.667,0.286,0.286,0,0,1,0,0.338,0.582,0.582,0.397,0.494,0 +0.667,0.286,0.286,0,0,0.5,0,0.338,0.582,0.582,0,0.309,0 +0.667,0.286,0.286,0,0,0,0.8,0.338,0.582,0.582,0,0.442,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0.468,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0.433,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0.0987,0 +0.333,0.164,0.164,0,0,0,1,0.257,0.524,0.524,0,0.249,0 +0.333,0.164,0.164,0,0,0,1,0.257,0.524,0.524,0,0.283,0.122 +0.333,0.164,0.164,0,0,0,0.1,0.257,0.524,0.524,0,0.195,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0.135,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0.486,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0.243,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.283,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.361,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.137,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.395,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.309,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.137,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.236,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.073,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.0515,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.0129,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.433,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.571,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.21,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.502,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.313,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.597,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.283,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.384,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.234,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.631,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.258,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.249,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.236,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.309,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.361,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.506,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.8,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.366 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.1,0,0,0,0.745,0.745,0.745,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.27 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.683 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.24 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.173 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.173 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0.5,0,0.257,0.524,0.524,0,0.309,0.122 +0.333,0.164,0.164,0,0,1,0,0.257,0.524,0.524,0,0.416,0.244 +0.333,0.16,0.16,0,0,1,0,0.261,0.524,0.524,0,0.18,0.244 +0.333,0.16,0.16,0,0,0.5,0,0.261,0.524,0.524,0,0.236,0 +0.667,0.27,0.27,0,0,0,0.8,0.264,0.582,0.582,0,0.197,0.244 +0.333,0.16,0.16,0,0,0,1,0.261,0.524,0.524,0,0.481,0 +0.333,0.16,0.16,0,0,0,1,0.261,0.524,0.524,0,0.249,0 +0.667,0.27,0.27,0,0,0,1,0.264,0.582,0.582,0,0.0515,0.122 +0.667,0.259,0.259,0,0,0,0.6,0.271,0.592,0.592,0,0.296,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.112,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.137,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.15,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.309,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.532,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.481,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.296,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.223,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.369,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.283,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.27,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.335,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.532,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.283,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0.5,0,0.323,0.612,0.612,0,0.309,0 +0.667,0.249,0.249,0,0,1,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.252,0.252,0,0,1,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0.5,0,0.375,0.632,0.632,0,0,0 +0.333,0.151,0.151,0,0,0,0.8,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0.8,0,0,1,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,1,0,0,1,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,1,0,0,1,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,1,0,0,1,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,1,0.479,0.672,0.672,0,0,0.301 +0.667,0.264,0.264,1,0,0,0.1,0.479,0.672,0.672,0,0,0.334 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0.4,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.337 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.303 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,1,0,0.701,0.79,0.79,0,0.459,0 +1,0.42,0.42,0,0,1,0,0.701,0.79,0.79,0,0.258,0 +1,0.42,0.42,0,0,1,0,0.701,0.79,0.79,0,0.444,0 +1,0.523,0.523,0,0,1,0,0.745,0.745,0.745,0,0.148,0 +1,0.523,0.523,0,0,0.5,0,0.745,0.745,0.745,0,0.27,0 +0.667,0.365,0.365,0,0,0,0.8,0.583,0.652,0.652,0,0.258,0 +0.667,0.365,0.365,0,0,0,1,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,1,0.583,0.652,0.652,0,0,0.366 +0.667,0.365,0.365,0,0,0,1,0.583,0.652,0.652,0,0,0 +1,0.671,0.671,0,0,0,0.6,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.488 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0945 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.177 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.158 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0316 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.17 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.339 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.102 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.167 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.134 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0.6,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.296 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0.8,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.799,0.799,1,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0.5,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0.5,0,0,0.768,0.671,0.671,0.647,0,0.366 +1,0.799,0.799,0,1,0,0,0.768,0.671,0.671,0.353,0,0.417 +1,0.799,0.799,0,1,0,0,0.768,0.671,0.671,0.304,0,0.0347 +1,0.582,0.582,0,1,0,0,0.656,0.596,0.596,0.473,0,0 +1,0.582,0.582,0,0.8,0,0,0.656,0.596,0.596,0.582,0,0.122 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0.44,0,0 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.136 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.337 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.2 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.207 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.349 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0349 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.154 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0309 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.177 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.204 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.154 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.3,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0.5,0,0,0,0.479,0.672,0.672,0,0,0.366 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.142 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.342 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.631 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.196 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.139 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.209 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.257 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.327 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.196 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.193 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.0643 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.312 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.193 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.381 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0651 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.366 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0.8,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0.3,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0.5,0,0.327,0.552,0.552,0,0.249,0 +1,0.238,0.238,0.3,0,1,0,0.327,0.552,0.552,0,0,0 +1,0.247,0.247,0,0,1,0,0.413,0.585,0.585,0,0.296,0 +1,0.247,0.247,0,0,1,0,0.413,0.585,0.585,0,0.348,0 +1,0.247,0.247,0,0,1,0,0.413,0.585,0.585,0,0.408,0 +1,0.345,0.345,0,0,0,0.3,0.491,0.646,0.646,0,0.592,0 +1,0.345,0.345,0,0,0,1,0.491,0.646,0.646,0,0.408,0.122 +1,0.345,0.345,0,0,0,1,0.491,0.646,0.646,0,0.296,0 +1,0.384,0.384,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.386 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.286 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.23 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.366 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.366 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.488 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.122 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.122 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.122 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.244 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.235,0.235,0.3,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0,0.337 +1,0.235,0.235,0.5,0,0,0,0.259,0.528,0.528,0,0,0.0337 +1,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.168 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.606 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.158 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.154 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.366 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.366 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.66 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.398 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0.3,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0.9,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.219,0.219,0,0.5,0,0,0.354,0.476,0.476,0.299,0,0 +0.667,0.219,0.219,0,1,0,0,0.354,0.476,0.476,0.435,0,0.122 +1,0.388,0.388,0,1,0,0,0.45,0.486,0.486,0.397,0,0 +1,0.388,0.388,0,1,0,0,0.45,0.486,0.486,0.446,0,0 +1,0.388,0.388,0,0.7,0,0,0.45,0.486,0.486,0.609,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0.359,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.336 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0671 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.157 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0314 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.297 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0329 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.244 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0.9,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0.5,0,0,0.413,0.585,0.585,0.25,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.435,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.38,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.554,0,0 +0.667,0.247,0.247,0,0.7,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0,0.5,0,0,0.475,0.594,0.594,0.315,0,0 +0.667,0.273,0.273,0,1,0,0,0.475,0.594,0.594,0.359,0,0.122 +0.667,0.273,0.273,0,1,0,0,0.475,0.594,0.594,0.386,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0.7,0,0,0.584,0.658,0.658,0.326,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.478,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.253,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.253,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.554,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.543,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.31,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0.495,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.207 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.289 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.167 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.135 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.189 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.343 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0.137 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0.195 +1,0.104,0.104,0.9,0,0,0,0.308,0.428,0.428,0,0,0.0649 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0.5,0,0.352,0.461,0.461,0,0.283,0 +1,0.222,0.222,0,0,1,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,1,0,0.352,0.461,0.461,0,0.481,0 +1,0.222,0.222,0.3,0,1,0,0.352,0.461,0.461,0,0.0601,0 +1,0.222,0.222,1,0,1,0,0.352,0.461,0.461,0,0,0 +0.667,0.277,0.277,1,0,0,0.3,0.376,0.503,0.503,0,0.451,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.451,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.283,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.159,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.0987,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,1,0,0,0.5,0.296,0.511,0.511,0,0.373,0 +0.667,0.274,0.274,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0.6,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.488 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0.3,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.345,0.345,0.1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0.3,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0.244 +0.667,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,1,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0.2,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.628 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.143 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.305 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.34 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.17 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.34 +0.667,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.136 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.204 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.102 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0.3,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.39,0.39,0.1,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.122 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0.5,0,0,0.296,0.511,0.511,0.348,0,0.281 +0.667,0.274,0.274,0,1,0,0,0.296,0.511,0.511,0.408,0,0.366 +0.667,0.274,0.274,0,1,0,0,0.296,0.511,0.511,0.473,0,0 +0.333,0.162,0.162,0,1,0,0,0.277,0.488,0.488,0.543,0,0.0669 +0.333,0.162,0.162,0,1,0,0,0.277,0.488,0.488,0.285,0,0.335 +0.333,0.162,0.162,0,1,0,0,0.277,0.488,0.488,0.285,0,0 +0.333,0.156,0.156,0,0.1,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.484,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.565,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.348,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.446,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.478,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.473,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.366 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0.5,0,0.258,0.496,0.496,0,0.0515,0 +0.667,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.142,0.142,0,0,0,0.3,0.268,0.492,0.492,0,0.644,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.0987,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.309,0.122 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.532,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.309,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0,0.244 +0.667,0.142,0.142,0,0,0,0.5,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.488 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0.3,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.345,0.345,0.1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.488 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.366 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.366 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.214 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.172 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.0343 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.354 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.598 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.349 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.175 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0.3,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.328,0.328,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0.9,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.137 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.157 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0945 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.488 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.181 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.175 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.169 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.236 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.342 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.103 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0 +0.667,0.136,0.136,0,0.5,1,0,0.305,0.463,0.463,0.353,0.0858,0 +0.667,0.136,0.136,0,1,1,0,0.305,0.463,0.463,0.315,0,0 +0.667,0.136,0.136,0,1,1,0,0.305,0.463,0.463,0.402,0,0 +0.667,0.136,0.136,0,1,0,0.3,0.305,0.463,0.463,0.478,0,0 +0.667,0.136,0.136,0,1,0,1,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,1,0,1,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0.1,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0.3,0,0,0.9,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0.9,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.254 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.667,0.256,0.256,0.8,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,1,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,1,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0.348,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0.44,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0.516,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0.478,0,0 +0.667,0.235,0.235,0,0.2,0,0,0.259,0.528,0.528,0.217,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0.3,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0.1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0,0.163,0 +1,0.467,0.467,0,0,0.5,0,0.621,0.621,0.621,0,0.597,0 +1,0.467,0.467,0,0,0,0.8,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0.6,0.621,0.621,0.621,0,0.356,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.0258,0.366 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.283,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.21,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.335,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.073,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.0987,0.122 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.137,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.361,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.421,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.283,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0.236,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.277 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.166 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.166 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.548 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.125 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.0625 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.274,0.274,0.3,0,0,0,0.296,0.511,0.511,0,0,0.279 +1,0.274,0.274,1,0,0,0,0.296,0.511,0.511,0,0,0.23 +1,0.274,0.274,1,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.274,0.274,0.5,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.551 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.414 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.166 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.0994 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.409 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.244 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.147 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.331 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.266 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.506 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.0984 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.189 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.151 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.173 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.488 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.238 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0.3,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.328,0.328,1,0,1,0,0.5,0.569,0.569,0,0.515,0.366 +0.667,0.328,0.328,1,0,1,0,0.5,0.569,0.569,0,0.155,0 +1,0.467,0.467,1,0,1,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,1,0,1,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0.3,0,0.5,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0.8,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0.6,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0.3,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,1,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.263,0.263,1,0,1,0,0.228,0.511,0.511,0,0.296,0 +1,0.263,0.263,0.5,0,1,0,0.228,0.511,0.511,0,0.137,0 +1,0.263,0.263,0,0,1,0,0.228,0.511,0.511,0,0,0 +1,0.37,0.37,0,0,0,0.3,0.213,0.534,0.534,0,0.386,0 +1,0.37,0.37,0,0,0,1,0.213,0.534,0.534,0,0.21,0 +1,0.37,0.37,0,0,0,1,0.213,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,1,0.222,0.534,0.534,0,0.369,0 +1,0.359,0.359,0,0,0,1,0.222,0.534,0.534,0,0.361,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0.309,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0.0901,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0.459,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.348,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.137,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.421,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.408,0.488 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.122 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.159,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.223,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.258,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.73,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.519,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.361,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.0987,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.348,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.395,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.519,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.262,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.27,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.309,0.122 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.0987,0.122 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.421,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.366 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.488 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.488 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0.8,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0.366 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0.366 +0.667,0.413,0.413,0.3,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0.433,0 +1,0.0768,0.0768,0,0,0.5,0,0.283,0.447,0.447,0,0.073,0 +1,0.0768,0.0768,0,0,0,0.8,0.283,0.447,0.447,0,0.0386,0 +1,0.136,0.136,0,0,0,1,0.305,0.463,0.463,0,0.21,0 +1,0.136,0.136,0,0,0,1,0.305,0.463,0.463,0,0.283,0 +1,0.136,0.136,0,0,0,1,0.305,0.463,0.463,0,0.481,0 +1,0.136,0.136,0,0,0,0.5,0.305,0.463,0.463,0,0.532,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0.176,0.204 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0.296,0.102 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0.249,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.296,0.27 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.249,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.1 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.262 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.167 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.0334 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.429 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.341 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.366 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.283 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.175 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.414 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0426 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.292 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.366 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.61 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.366 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.488 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.366 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.488 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.345 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.103 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.159 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.0318 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.506,0.167 +0.667,0.163,0.163,0,0,1,0,0.317,0.484,0.484,0,0.172,0.234 +0.667,0.277,0.277,0,0,1,0,0.376,0.503,0.503,0,0.481,0 +0.667,0.277,0.277,0,0,0.5,0,0.376,0.503,0.503,0,0.21,0 +0.667,0.277,0.277,0,0,0,0.8,0.376,0.503,0.503,0,0.249,0 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.283,0.35 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.569,0.663 +0.333,0.162,0.162,0,0,0,1,0.277,0.488,0.488,0,0.135,0.244 +0.333,0.162,0.162,0,0,0,0.5,0.277,0.488,0.488,0,0.361,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0.185,0.167 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0.455,0.167 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.0129,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.27,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.223,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.459,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.21,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0.3,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.345,0.345,0.1,0,0,0,0.491,0.646,0.646,0,0,0.189 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.137 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.467,0,0.102 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.326,0,0.122 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.22,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.22,0,0.158 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.364,0,0.0634 +1,0.384,0.384,0,0.2,0,0,0.584,0.658,0.658,0.734,0,0 +1,0.384,0.384,0.3,0,0,0,0.584,0.658,0.658,0.538,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0.398 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0.184 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.488 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.164 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.156 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0624 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.488 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0.9,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0.489,0,0.244 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.565,0,0.122 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.783,0,0.244 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.446,0,0 +0.667,0.273,0.273,0,0.2,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0.3,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,1,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.384,0.384,0.1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.156 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0936 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.472 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.244 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.308 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.244 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.198 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.226 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.167 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.1 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.349 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.349 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.14 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.312 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0352 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.211 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.122 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0.124,0 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0.249,0 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0.3,0.259,0.528,0.528,0,0.0258,0 +0.667,0.235,0.235,0,0,0,1,0.259,0.528,0.528,0,0.172,0 +0.667,0.235,0.235,0,0,0,1,0.259,0.528,0.528,0,0.541,0.122 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0.0386,0 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0.249,0 +0.667,0.235,0.235,0.3,0,0,0.9,0.277,0.519,0.519,0,0.249,0.172 +1,0.327,0.327,1,0,0,0,0.287,0.546,0.546,0,0.545,0.191 +1,0.328,0.328,0.1,0,0,0,0.297,0.571,0.571,0,0.459,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.605,0.244 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.223,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.148,0.148,0.3,0,0,0,0.336,0.525,0.525,0,0,0 +1,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.366 +1,0.247,0.247,0.5,0,0,0,0.413,0.585,0.585,0,0,0.488 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.244 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.489,0,0 +1,0.273,0.273,0,1,0,0,0.475,0.594,0.594,0.478,0,0 +1,0.328,0.328,0,1,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,1,0,0,0.5,0.569,0.569,0.788,0,0 +1,0.328,0.328,0,1,0,0,0.5,0.569,0.569,0.511,0,0 +1,0.328,0.328,0,0.2,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0.8,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.295 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.26 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.349 +0.667,0.274,0.274,0,0,0.5,0,0.296,0.511,0.511,0,0.0386,0.174 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0.3,0.296,0.511,0.511,0,0.408,0 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.369,0.17 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.309,0.0339 +0.333,0.156,0.156,0,0,0,1,0.243,0.488,0.488,0,0.159,0 +0.333,0.156,0.156,0,0,0,1,0.243,0.488,0.488,0,0.361,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.309,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.506,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.309,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.223,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.0129,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.629,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.444,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.605,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.112,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0987,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.249,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0129,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.283,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0987,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.0129,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.309,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.309,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.283,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.558,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.309,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.172,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.309,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.137,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.0987,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.258,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.21,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.341 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.3 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.488 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.214 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.157 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.0941 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.488 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.332 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0663 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0.3,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0.3,0,0.5,0,0.277,0.488,0.488,0,0.0258,0.366 +1,0.162,0.162,1,0,1,0,0.277,0.488,0.488,0,0.494,0 +1,0.156,0.156,1,0,0,0.3,0.243,0.488,0.488,0,0.185,0.24 +1,0.156,0.156,0.5,0,0,1,0.243,0.488,0.488,0,0.382,0.122 +1,0.156,0.156,0,0,0,1,0.243,0.488,0.488,0,0,0.122 +1,0.37,0.37,0,0,0,0.6,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.643 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.153 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.245 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.169 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.101 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.343 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.587 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.323 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.0323 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0.5,0,0,0.259,0.528,0.528,0.337,0,0 +0.667,0.235,0.235,0,1,0,0,0.259,0.528,0.528,0.391,0,0 +0.667,0.235,0.235,0,1,0,0,0.259,0.528,0.528,0.255,0,0 +0.667,0.235,0.235,0,1,0,0,0.277,0.519,0.519,0.462,0,0 +0.667,0.235,0.235,0,0.7,0,0,0.277,0.519,0.519,0.391,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0.397,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0.321,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0.386,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0.212,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0.212,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0.467,0,0 +0.667,0.235,0.235,0.8,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0.6,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.366 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.488 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.488 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0.554,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0.424,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0.473,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0.489,0,0.244 +1,0.557,0.557,0,0.2,0,0,0.547,0.497,0.497,0.467,0,0.244 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0.418,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0.429,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.244 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.265 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.066 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.33 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0.3,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,0.3,0,0,0,0.246,0.488,0.488,0,0,0.488 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.488 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0.4,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.34 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.102 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.12 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.207 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.164 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.164 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.337 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.101 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.17 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.536 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0.3,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0.1,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.488 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0.1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0.5,0,0,0.621,0.621,0.621,0.332,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.5,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.658,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.636,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.413,0.413,0,0.1,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.284 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0969 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.225 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.174 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0695 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.329 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0987 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.283,0.438,0.438,0,0,0.244 +1,0.0495,0.0495,1,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.301 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.288 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.222,0.222,0.1,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.144 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.488 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.279 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.071 +0.667,0.247,0.247,0.3,0,0,0,0.413,0.585,0.585,0,0,0.248 +0.667,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.467,0.467,0.6,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.331 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.176 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.106 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.222 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.166 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.233 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.488 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.253 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.334 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.191 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.239 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.107 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0328 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.238 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.101 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.337 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.467 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.205 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0.5,0,0.258,0.496,0.496,0,0.283,0 +0.333,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,1,0,0.268,0.492,0.492,0,0.519,0 +0.333,0.142,0.142,0,0,0.5,0,0.268,0.492,0.492,0,0.446,0.244 +0.333,0.142,0.142,0,0,0,0.8,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0.6,0.268,0.492,0.492,0,0.0258,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.0386,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.408,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.0129,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.489,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.142,0 +0.333,0.142,0.142,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,1,0.5,0,0,0.491,0.646,0.646,0.685,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.391,0,0.366 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.527,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.435,0,0 +1,0.384,0.384,0,0.7,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.516,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.37,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.576,0,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.418,0.532,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.226,0,0.122 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.226,0,0.122 +0.667,0.328,0.328,0,0,0,0.3,0.5,0.569,0.569,0.44,0,0 +0.667,0.328,0.328,0,0,0,1,0.5,0.569,0.569,0,0,0.122 +1,0.328,0.328,0,0,0,0.1,0.5,0.569,0.569,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.157 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0629 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.488 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.61 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0.289 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0.168 +1,0.0768,0.0768,0.6,0,0,0,0.283,0.447,0.447,0,0,0.201 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.216 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.199 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0498 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.61 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.366 +0.667,0.163,0.163,0.8,0,0,0,0.317,0.484,0.484,0,0,0.507 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0.366 +0.667,0.163,0.163,0.8,0,0,0,0.317,0.484,0.484,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.239 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.1 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.301 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.342 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.137 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.498 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0341 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.154 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0615 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.177 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0.5,0,0.296,0.511,0.511,0,0.0858,0.165 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0,0.0329 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0.558,0 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0.519,0 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0.223,0 +0.667,0.263,0.263,0,0,0,0.3,0.228,0.511,0.511,0,0.468,0.141 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0.348,0 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0.519,0 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0.0258,0.101 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.545,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.309,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.574,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.431,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.296,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0258,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.309,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.283,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.159,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.579,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.541,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.0386,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.73,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.18,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.24,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.421,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.0258,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.506,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.249,0.488 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.348,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.309,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.526,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.255,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.524,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.155,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.244 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.488 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.473,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.37,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.435,0,0.122 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.625,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0.6,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.34 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.204 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0.8,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.366 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0.679,0,0 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.177,0,0 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.177,0,0 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.565,0,0.488 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.565,0,0.122 +1,0.275,0.275,0,0.2,0,0,0.385,0.496,0.496,0.429,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0.353,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.21 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.138 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.122 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0.366 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.244 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.244 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.366 +0.667,0.148,0.148,1,0,0,0,0.336,0.525,0.525,0,0,0.366 +0.667,0.148,0.148,1,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.667,0.148,0.148,1,0,0,0,0.336,0.525,0.525,0,0,0.366 +0.667,0.148,0.148,0.9,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.175 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.246 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.488 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.323 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.337 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.135 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.336 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.14 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.213 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.213 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.157 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.0627 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.156 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.326 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.364 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.506 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.244 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.114 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.207 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.225 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0954 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.159 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0.5,0,0,0.512,0.528,0.528,0.679,0,0 +0.667,0.501,0.501,0,1,0,0,0.512,0.528,0.528,0.304,0,0 +0.667,0.501,0.501,0,1,0,0,0.512,0.528,0.528,0.614,0,0.122 +0.667,0.501,0.501,0,1,0,0,0.512,0.528,0.528,0.571,0,0 +0.667,0.501,0.501,0,0.7,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.122 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.258,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.137,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0.433,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0.0858,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0.3,0.352,0.461,0.461,0,0.433,0.23 +1,0.222,0.222,0.3,0,0,1,0.352,0.461,0.461,0,0.0129,0 +1,0.222,0.222,1,0,0,1,0.352,0.461,0.461,0,0.185,0 +1,0.308,0.308,0.1,0,0,1,0.398,0.459,0.459,0,0.137,0 +1,0.308,0.308,0,0,0,1,0.398,0.459,0.459,0,0.309,0.154 +1,0.308,0.308,0,0,0,1,0.398,0.459,0.459,0,0,0.0617 +1,0.39,0.39,0,0,0,0.5,0.436,0.521,0.521,0,0.262,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.0601,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.322,0.212 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.249,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.309,0.141 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.0386,0.281 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.442,0 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.438,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0.502,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.0601,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.137,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.0129,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.541,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.249,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.283,0.61 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.47,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.655,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.33,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.309,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.408,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.408,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.433,0.122 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.498,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.476,0.244 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.464,0.366 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.536,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.348,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.444,0 +0.667,0.237,0.237,0.3,0,0,0,0.234,0.528,0.528,0,0.457,0.122 +0.667,0.237,0.237,1,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0.446,0 +0.667,0.235,0.235,0.5,0,0,0,0.259,0.528,0.528,0,0.395,0.244 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.519,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.408,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.361,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.468,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.223,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.0987,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.249,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.438,0.236 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.253,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.0858,0.122 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.361,0.104 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.258,0.173 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.558,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.137,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.258,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.451,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.18,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.262 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0689 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.345 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.103 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.164 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.176 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.475 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.141 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.158 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0315 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0.348,0.122 +0.333,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0.309,0.298 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0,0.247 +0.333,0.142,0.142,0,0,1,0,0.268,0.492,0.492,0,0.223,0 +0.333,0.142,0.142,0,0,0.5,0,0.268,0.492,0.492,0,0.361,0 +0.333,0.142,0.142,0,0,0,0.8,0.268,0.492,0.492,0,0.309,0.104 +0.333,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.283,0.173 +0.333,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.258,0 +0.333,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.283,0 +0.333,0.142,0.142,0,0,0,1,0.271,0.501,0.501,0,0.159,0 +0.333,0.142,0.142,0,0,0,1,0.271,0.501,0.501,0,0.0386,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.691,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.348,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.137,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0.519,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0.296,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.8,0,0,0,0.292,0.509,0.509,0,0.558,0 +0.333,0.144,0.144,0.6,0,0,0,0.292,0.509,0.509,0,0.283,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.236,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.27,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.236,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.0386,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.296,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.21,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.488 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.488 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.275,0.275,0.8,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0.6,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.163 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.586 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.61 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.183 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0336 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.336 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0316 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,1,0.5,0,0,0.274,0.443,0.443,0.234,0,0 +1,0.05,0.05,1,1,0,0,0.274,0.443,0.443,0.408,0,0 +1,0.05,0.05,1,1,0,0,0.274,0.443,0.443,0.326,0,0 +1,0.0768,0.0768,1,1,0,0,0.283,0.447,0.447,0.299,0,0 +1,0.0768,0.0768,1,1,0,0,0.283,0.447,0.447,0,0,0.177 +1,0.104,0.104,1,1,0,0,0.308,0.428,0.428,0,0,0.0355 +1,0.104,0.104,1,0.1,0,0,0.308,0.428,0.428,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.104,0.104,0.6,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.548 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0341 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.34 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.17 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.488 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.488 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.2 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0501 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.324 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.488 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0.5,0,0,0.491,0.646,0.646,0.473,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.451,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.473,0,0.244 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.484,0,0.122 +1,0.384,0.384,0.3,1,0,0,0.584,0.658,0.658,0.179,0,0 +1,0.384,0.384,1,1,0,0,0.584,0.658,0.658,0.179,0,0.122 +1,0.384,0.384,1,0.1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0.288,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0.25,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0.397,0,0 +1,0.467,0.467,0.3,0,0.5,0,0.621,0.621,0.621,0,0.236,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.337,0,0.244 +1,0.467,0.467,0,0,0,0.3,0.621,0.621,0.621,0.462,0.438,0.366 +1,0.467,0.467,0,0,0,1,0.621,0.621,0.621,0,0.567,0 +1,0.467,0.467,0,0,0,1,0.621,0.621,0.621,0,0.206,0.244 +1,0.595,0.595,0,0,0,1,0.658,0.583,0.583,0,0.579,0.244 +1,0.595,0.595,0,0,0,1,0.658,0.583,0.583,0,0.361,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.249,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.27,0.488 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.296,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.309,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.433,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.446,0.366 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.249,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.836 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.296 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.243 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.173 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.139 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0.1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0751 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.353 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.21 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.325 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.159 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.175 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.349 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0.3,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.245,0.245,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0.5,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.153 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.238,0.238,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.366 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.259 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.139 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.087 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.332 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.106 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.199 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.366 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.248 +0.667,0.263,0.263,0.3,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0.5,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.5,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.244 +0.333,0.144,0.144,0,0,1,0,0.292,0.509,0.509,0,0.223,0 +0.333,0.144,0.144,0,0,1,0,0.292,0.509,0.509,0,0.309,0 +0.667,0.238,0.238,0,0,1,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0.3,0.413,0.585,0.585,0,0.455,0 +0.667,0.247,0.247,0,0,0,1,0.413,0.585,0.585,0,0.309,0 +0.667,0.247,0.247,0,0,0,0.1,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.0858,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.249,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.738,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.283,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.223,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.408,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.361,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.283,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.486,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.492,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.211 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.17 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.102 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.366 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.177 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.344 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.103 +1,0.256,0.256,0,0,0.5,0,0.234,0.511,0.511,0,0.369,0 +1,0.256,0.256,0,0,1,0,0.234,0.511,0.511,0,0.309,0 +1,0.343,0.343,0,0,1,0,0.232,0.546,0.546,0,0.369,0 +1,0.343,0.343,0,0,0.5,0,0.232,0.546,0.546,0,0.249,0.165 +1,0.343,0.343,0,0,0,0.8,0.232,0.546,0.546,0,0,0.0661 +1,0.343,0.343,0,0,0,1,0.232,0.546,0.546,0,0.249,0 +1,0.343,0.343,0,0,0,1,0.232,0.546,0.546,0,0,0 +0.667,0.245,0.245,0,0,0,0.1,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +1,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.122 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.122 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.488 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.071 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.273 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.61 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.488 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.488 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0.31,0,0 +0.667,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.435,0,0 +0.667,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.228,0,0 +0.667,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.228,0,0 +0.667,0.23,0.23,0,1,0,0,0.282,0.533,0.533,0.315,0,0 +0.667,0.23,0.23,0,0.1,0,0,0.282,0.533,0.533,0.587,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0.478,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.489,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.391,0,0.488 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.429,0,0.122 +0.667,0.233,0.233,0.8,0,0,0,0.325,0.549,0.549,0.37,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0.198,0,0.122 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0.198,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.366 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.366 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.108 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.163 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.327 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.155 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.605,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.309,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0.1,0.2,0.245,0.487,0.487,0,0.361,0 +0.333,0.15,0.15,0,0,0,1,0.245,0.487,0.487,0,0.369,0 +0.333,0.15,0.15,0,0,0,1,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0.361,0 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0.258,0.244 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0.3,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.61 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.366 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.202 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.202 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.239 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.299 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.354 +1,0.338,0.338,0.8,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,1,0,1,0,0.58,0.653,0.653,0,0.408,0 +1,0.377,0.377,1,0,0.5,0,0.58,0.653,0.653,0,0.27,0 +1,0.377,0.377,1,0,0,0.8,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,1,0.58,0.653,0.653,0,0.0858,0 +1,0.377,0.377,0.2,0,0,1,0.58,0.653,0.653,0,0.0515,0 +1,0.377,0.377,0,0,0,1,0.58,0.653,0.653,0,0.296,0 +1,0.461,0.461,0,0,0,1,0.616,0.616,0.616,0,0.648,0.134 +1,0.461,0.461,0,0,0,0.7,0.616,0.616,0.616,0,0.352,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.0601,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.193 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.193 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.145 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.268 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.338 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.162 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0972 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.222 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.214 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.157 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0629 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.096 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.138 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.734,0,0 +0.667,0.233,0.233,0,1,0,0,0.325,0.549,0.549,0.185,0,0.488 +0.667,0.233,0.233,0,1,0,0,0.325,0.549,0.549,0.185,0,0 +0.667,0.233,0.233,0,1,0,0,0.325,0.549,0.549,0.266,0,0.171 +1,0.324,0.324,0,1,0,0,0.359,0.592,0.592,0.418,0,0.343 +1,0.338,0.338,0,0.1,0,0,0.488,0.641,0.641,0.424,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.242,0.242,0.8,0,0,0,0.411,0.582,0.582,0,0,0.205 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0.4,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.159 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0.5,0,0.616,0.616,0.616,0,0.137,0.17 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.0129,0.0339 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.309,0 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.223,0.244 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0.2,0.1,0.653,0.579,0.579,0,0.433,0.277 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.283,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.579,0.122 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.283,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.459,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.571,0.219 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.309,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.185,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.0515,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.27,0.167 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.0129,0.334 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.124,0.0334 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.283,0.366 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0.249,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0.137,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.296,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.481,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.236,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.149 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.161 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.202 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.253 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.162 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0.5,0,0.245,0.495,0.495,0,0.249,0.122 +0.333,0.141,0.141,0,0,1,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,1,0,0.258,0.525,0.525,0,0.567,0 +0.667,0.23,0.23,0,0,1,0,0.258,0.525,0.525,0,0.421,0 +0.667,0.23,0.23,0,0,1,0,0.258,0.525,0.525,0,0.506,0 +0.667,0.23,0.23,0,0,0.2,0.1,0.258,0.525,0.525,0,0.446,0 +0.667,0.23,0.23,0,0,0,1,0.258,0.525,0.525,0,0.309,0 +0.667,0.23,0.23,0,0,0,1,0.258,0.525,0.525,0,0.361,0 +0.667,0.23,0.23,0,0,0,1,0.276,0.517,0.517,0,0.249,0 +0.667,0.23,0.23,0,0,0,1,0.276,0.517,0.517,0,0.369,0.122 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.283,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.197,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.258,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.309,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.0987,0.366 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0.3,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.9,0,0,0,0.325,0.549,0.549,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.25 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.366 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.244 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.16 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0.5,0,0.258,0.495,0.495,0,0.27,0 +0.333,0.14,0.14,0,0,1,0,0.258,0.495,0.495,0,0.27,0.122 +0.333,0.14,0.14,0,0,1,0,0.258,0.495,0.495,0,0.0601,0 +0.333,0.14,0.14,0,0,0.6,0,0.258,0.495,0.495,0,0.249,0 +0.333,0.14,0.14,0,0,0,0.7,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,1,0.267,0.491,0.491,0,0.382,0 +0.333,0.14,0.14,0,0,0,1,0.267,0.491,0.491,0,0.283,0.244 +0.333,0.14,0.14,0,0,0,1,0.267,0.491,0.491,0,0.0987,0 +0.333,0.14,0.14,0,0,0,0.4,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.124,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.322,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.0601,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0.3,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,0.7,0,0,0,0.325,0.549,0.549,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.366 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.61 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.375,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.359,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.435,0,0.366 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.353,0,0 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.625,0,0 +1,0.461,0.461,0,0.5,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.37,0,0 +1,0.59,0.59,0,1,0,0,0.653,0.579,0.579,0.467,0,0.122 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0.375,0,0 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0.283,0,0.122 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0.511,0,0 +1,0.273,0.273,0,0.5,0,0,0.383,0.495,0.495,0.652,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.168 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.177 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.355 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0355 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.115 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0.3,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.168 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.324 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0.3,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.232,0.232,1,0.5,0,0,0.233,0.525,0.525,0.364,0,0.244 +0.667,0.232,0.232,1,1,0,0,0.233,0.525,0.525,0.446,0,0 +0.667,0.232,0.232,0.9,1,0,0,0.233,0.525,0.525,0.549,0,0 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0.348,0,0 +0.667,0.232,0.232,0,0.6,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.331 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.221 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0.5,0,0,0.58,0.653,0.653,0.647,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.478,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.408,0,0 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.424,0,0 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.236,0,0.122 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.236,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.375,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.438,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.219,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.435,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.658,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.451,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.538,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.484,0,0.163 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.326,0,0.0326 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.478,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.435,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.227 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0.5,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.209 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.244 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.253 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0676 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.257 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.244 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.159 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0637 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.279 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0698 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.488 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.488 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.488 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.244 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.366 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.122 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.244 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.292 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0339 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.237 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.597 +1,0.22,0.22,0.3,0,0,0,0.35,0.459,0.459,0,0,0.344 +1,0.22,0.22,1,0,0,0,0.35,0.459,0.459,0,0,0.0689 +1,0.305,0.305,1,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.305,0.305,0.5,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.128 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.196 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0652 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.189 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.364 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.165 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0659 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.122 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.128 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.488 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.121 +1,0.0763,0.0763,0,0,0.5,0,0.282,0.446,0.446,0,0.348,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0.391,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0.253,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0.571,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0.2,0.1,0.35,0.459,0.459,0,0.309,0 +1,0.22,0.22,0,0,0,1,0.35,0.459,0.459,0,0.073,0.161 +1,0.22,0.22,0,0,0,1,0.35,0.459,0.459,0,0.506,0.0646 +1,0.22,0.22,0,0,0,0.6,0.35,0.459,0.459,0,0.408,0.258 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0.395,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.167 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.234 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.533,0,0 +0.333,0.141,0.141,0,1,0,0,0.291,0.507,0.507,0.315,0,0 +0.333,0.146,0.146,0,1,0,0,0.334,0.524,0.524,0.299,0,0 +0.333,0.146,0.146,0,1,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.242,0.242,0,1,0,0,0.411,0.582,0.582,0.25,0,0 +0.667,0.242,0.242,0,1,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0.5,0,0,0.411,0.582,0.582,0.505,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0.277,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.277,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.408,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.473,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.413,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.375,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.473,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.554,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.304,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.614,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.31,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.353,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.511,0,0.122 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.364,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.732 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.157 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0629 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.117 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.209 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.14 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.209 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.174 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.261 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.202 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0.3,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,1,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.9,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0.5,0,0,0.488,0.641,0.641,0.571,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.326,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.489,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.663,0,0 +1,0.338,0.338,0,0.6,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.17 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.224 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.301 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.898 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.355 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.419 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.649 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.161 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.295 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.104 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.311 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.332 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.133 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.209 +0.333,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0.5,0,0.267,0.491,0.491,0,0.283,0 +0.667,0.14,0.14,0,0,1,0,0.267,0.491,0.491,0,0.373,0 +0.333,0.14,0.14,0,0,1,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0.6,0,0.27,0.499,0.499,0,0.0987,0 +0.333,0.14,0.14,0,0,0,0.7,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,1,0.27,0.499,0.499,0,0.0386,0 +0.333,0.14,0.14,0,0,0,1,0.27,0.499,0.499,0,0.249,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.249,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.159,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.657,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.309,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.223,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.0129,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.0386,0.174 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.262 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.245,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.335,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.348,0.219 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.395,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.0515,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.283,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.369,0.344 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.322,0.566 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.35 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.33,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.309,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.0601,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.137,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.0644,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0.361,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0.223,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.172,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.223,0.122 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.249,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.296,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.185,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.223,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.472,0.366 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.639,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.283,0.122 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0.421,0.244 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.471 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.133 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.167 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.134 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.292 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0339 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.258,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.395,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.288,0 +0.333,0.15,0.15,0,0,0.7,0,0.245,0.487,0.487,0,0.444,0 +0.333,0.15,0.15,0,0,0,0.6,0.245,0.487,0.487,0,0.444,0 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0.399,0 +0.333,0.145,0.145,0.3,0,0,1,0.248,0.491,0.491,0,0.137,0.122 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0.488 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,1,0,0,0.3,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0.5,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.244 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.179 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.244 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.156 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.0625 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.365 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.488 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.142 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.235 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.344 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.655 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.511 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.394 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.165 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.198 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0.8,0,0,0,0.316,0.483,0.483,0,0,0.169 +1,0.162,0.162,0.6,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.124 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.521 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.231 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.131 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.287 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.19 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0474 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.61 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0.3,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.23,0.23,0.1,0,0,0,0.282,0.533,0.533,0,0,0.244 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.147 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.169 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0678 +1,0.162,0.162,0,0.5,0,0,0.316,0.483,0.483,0.587,0,0 +1,0.162,0.162,0,1,0,0,0.316,0.483,0.483,0.446,0,0 +1,0.162,0.162,0,1,0,0,0.316,0.483,0.483,0.293,0,0 +1,0.162,0.162,0,1,0,0,0.316,0.483,0.483,0.533,0,0 +1,0.162,0.162,0,0.6,0,0,0.316,0.483,0.483,0,0,0.166 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.0331 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.53 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.0668 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.131 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.23 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0.8,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0.6,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.263 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.366 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.294 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0344 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.659 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0341 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.158 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0947 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.241 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.206 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.241 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.244 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.3,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.259 +1,0.377,0.377,0.1,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.366 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.366 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.224 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.488 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.366 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.207 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.128 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.128 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.344 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.0688 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.169 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.337 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0.9,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.488 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.667,0.242,0.242,0.8,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0.2,0,0,0,0.58,0.653,0.653,0.571,0,0.122 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.554,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.549,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.516,0,0 +1,0.461,0.461,0,0.1,0,0,0.616,0.616,0.616,0.522,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.679,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.488 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.384 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.167 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.1 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.147 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.177 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.353 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.366 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0.3,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.122 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.227 +1,0.377,0.377,0.3,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.167 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.167 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.252 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.068 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.34 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.102 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.343 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.24 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.279 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.166 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.167 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.167 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.176 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.488 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0.3,0,0,0,0.334,0.524,0.524,0,0,0.488 +0.333,0.146,0.146,1,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0.5,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.332 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.155 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.924,0,0.156 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.272,0,0.0938 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0.457,0,0 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0.533,0,0.361 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0,0,0.137 +0.667,0.41,0.41,0,0.5,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.213 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.35 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.158 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0632 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.236,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.137,0 +1,0.0499,0.0499,0,0,1,0,0.273,0.442,0.442,0,0.579,0 +1,0.0499,0.0499,0,0,1,0,0.273,0.442,0.442,0,0.223,0 +1,0.0499,0.0499,0,0,0.7,0,0.273,0.442,0.442,0,0.322,0 +1,0.0499,0.0499,0,0,0,0.6,0.273,0.442,0.442,0,0.348,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.489,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.588,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.382,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.481,0 +1,0.0763,0.0763,0,0,0,0.9,0.282,0.446,0.446,0,0.27,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0.296,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0.0987,0.171 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0.0258,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0.296,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.177 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.177 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.325 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.175 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0701 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.262 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0328 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.122 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.138 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.244 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.366 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0.5,0,0.267,0.491,0.491,0,0.0258,0.244 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0.6,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0.7,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0.3,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0.1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.299 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.475 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.402 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0947 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.342 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0684 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.171 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0.5,0,0.294,0.508,0.508,0,0.369,0 +1,0.258,0.258,1,0,1,0,0.227,0.508,0.508,0,0.208,0 +1,0.258,0.258,1,0,1,0,0.227,0.508,0.508,0,0.148,0 +1,0.258,0.258,1,0,0.6,0,0.227,0.508,0.508,0,0.283,0 +1,0.362,0.362,1,0,0,0.7,0.212,0.53,0.53,0,0.73,0 +1,0.362,0.362,1,0,0,1,0.212,0.53,0.53,0,0.382,0 +0.667,0.258,0.258,1,0,0,1,0.227,0.508,0.508,0,0.0601,0 +0.667,0.25,0.25,1,0,0,1,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,1,0.233,0.508,0.508,0,0.644,0 +0.667,0.25,0.25,1,0,0,0.8,0.233,0.508,0.508,0,0.0515,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0.5,0,0,0,0.233,0.508,0.508,0,0.137,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0.361,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.249,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.0987,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.519,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.309,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0.359,0,0 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0.587,0,0.122 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0.685,0,0 +0.333,0.141,0.141,0,1,0,0,0.245,0.495,0.495,0.391,0,0.122 +0.333,0.141,0.141,0,0.1,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0.266,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0.511,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0.182,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0.182,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0.842,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0.484,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0.505,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0.473,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0.457,0,0.366 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0.533,0.249,0 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0,0.258,0.488 +0.667,0.23,0.23,0,0,1,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0.1,0.2,0.282,0.533,0.533,0,0.506,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0.457,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0.135,0 +0.667,0.23,0.23,0,0,0,0.5,0.282,0.533,0.533,0,0.554,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.433,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.556,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.53,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.395,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.488 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.0946 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.143 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.528 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0972 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.454 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.488 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.345 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0689 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0499 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.242 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.171 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0683 +1,0.258,0.258,0.8,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0.6,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.245 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.0997 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.0665 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.145,0.145,0.3,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +1,0.324,0.324,1,0,0,0,0.221,0.555,0.555,0,0,0.122 +1,0.324,0.324,1,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.324,0.324,0.3,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,1,0,0.258,0.555,0.555,0,0.519,0 +1,0.32,0.32,0,0,0.5,0,0.258,0.555,0.555,0,0.0858,0 +1,0.32,0.32,0,0,0,0.8,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,1,0.258,0.555,0.555,0,0.258,0 +1,0.32,0.32,0,0,0,0.9,0.258,0.555,0.555,0,0.0858,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0.488 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.27,0.244 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.421,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.373,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.223,0.244 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.249,0.366 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.223,0.366 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.137,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0.122 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0.8,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.61 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.191 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.402 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.276 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.387 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.316,0.483,0.483,0,0,0.244 +0.333,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0.7,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.61 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0.414 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.318 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.192 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0775 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0.5,0,0,0.472,0.591,0.591,0.5,0,0 +0.667,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.353,0,0.122 +0.667,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.582,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.266,0,0 +0.667,0.324,0.324,0,0.6,0,0,0.497,0.566,0.566,0.424,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.353,0,0.194 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.429,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.347 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.353 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.244 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.122 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.34 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.34 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.068 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.466 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0334 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.213 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.355 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.106 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.234 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.104 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.209 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0.3,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,1,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.5,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0.332,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.402,0,0 +1,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0,0,0 +1,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.636,0,0 +1,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.424,0,0.122 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.326,0,0 +1,0.377,0.377,0,0.5,0,0,0.58,0.653,0.653,0.408,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.418,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.266,0,0.488 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.408,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.799,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.258,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.258,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.44,0,0.366 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.592,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.255,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.734,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.332,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.326,0,0.244 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.766,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.435,0,0.19 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.236,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.236,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0988 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.488 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.332 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0663 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.169 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.338 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.168 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.202 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.349 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.279 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0.5,0,0,0.242,0.487,0.487,0.359,0,0 +0.333,0.154,0.154,0,1,0,0,0.242,0.487,0.487,0.25,0,0 +0.333,0.154,0.154,0,1,0,0,0.242,0.487,0.487,0.799,0,0 +0.333,0.15,0.15,0,1,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0.6,0.5,0,0.245,0.487,0.487,0,0.309,0.122 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.309,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.382,0 +0.333,0.15,0.15,0,0,0.6,0,0.245,0.487,0.487,0,0.519,0 +0.667,0.25,0.25,0,0,0,0.7,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,1,0.239,0.517,0.517,0,0.382,0 +0.667,0.24,0.24,0,0,0,1,0.239,0.517,0.517,0,0.369,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.425,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.227,0.122 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.275,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.433,0 +0.667,0.232,0.232,0.3,0,0,0,0.233,0.525,0.525,0,0.21,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0.244 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0.137,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0.0987,0 +0.667,0.232,0.232,0.9,0,0,0,0.233,0.525,0.525,0,0.309,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.476,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.464,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.442,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.0858,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.399,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.395,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.0601,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.319 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.197 +1,0.338,0.338,0,0.5,0,0,0.488,0.641,0.641,0.429,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.571,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.625,0,0.244 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.424,0,0.612 +1,0.377,0.377,0,0.6,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.549,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.277,0,0.171 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.522,0,0.0342 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.315,0,0 +1,0.461,0.461,0.3,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0.529 +1,0.41,0.41,0.5,0,0,0,0.521,0.541,0.541,0,0,0.0652 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0537 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.168 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.223 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.112 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.173 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.104 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.184 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.366 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.3,0,0,0,0.325,0.549,0.549,0,0,0.488 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.488 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0.5,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.324,0.324,0.8,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,1,0,0,0,0.497,0.566,0.566,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0.8,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,1,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.103,0.103,1,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0.8,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0.2,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.122 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.134 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.349 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.331 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.14 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.297 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.33 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.033 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.167 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.445 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0.38,0,0 +0.333,0.14,0.14,0,1,0,0,0.267,0.491,0.491,0,0,0.377 +0.333,0.14,0.14,0,1,0,0,0.267,0.491,0.491,0.462,0,0.2 +0.333,0.14,0.14,0,1,0,0,0.267,0.491,0.491,0.533,0,0.244 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.62,0,0 +0.333,0.14,0.14,0,0.1,0,0,0.27,0.499,0.499,0.37,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.571,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.571,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.337,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.408,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.8,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.6,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0.5,0,0,0.411,0.582,0.582,0.473,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.636,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0.6,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0.5,0,0,0.497,0.566,0.566,0.435,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.402,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.228,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.37,0,0 +0.667,0.324,0.324,0,0.6,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.366 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.366 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0946 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.159 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.13 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0.8,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0.5,0,0.294,0.508,0.508,0,0.0129,0 +1,0.381,0.381,1,0,1,0,0.313,0.53,0.53,0,0,0 +1,0.381,0.381,1,0,1,0,0.313,0.53,0.53,0,0.373,0 +1,0.381,0.381,1,0,1,0,0.313,0.53,0.53,0,0.0987,0 +1,0.362,0.362,1,0,1,0,0.212,0.53,0.53,0,0,0 +1,0.362,0.362,1,0,0.2,0.1,0.212,0.53,0.53,0,0.356,0 +1,0.362,0.362,1,0,0,1,0.212,0.53,0.53,0,0.414,0 +1,0.362,0.362,0.6,0,0,1,0.212,0.53,0.53,0,0.23,0.244 +1,0.362,0.362,0,0,0,1,0.212,0.53,0.53,0,0.27,0 +1,0.362,0.362,0,0,0,1,0.212,0.53,0.53,0,0.137,0.122 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.431,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.384,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.361,0.488 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.361,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.0386,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.262,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.335,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.47,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.431,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.163,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.163,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.309,0.61 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.322,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.309,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.309,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.369,0.122 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.219,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.33,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.283,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.283,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.356,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.156 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0.8,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.61 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0.5,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.295 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.159 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.128 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.337 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.236 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.298 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.342 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.173 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.158 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.366 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.259 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.402,0,0.122 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.315,0,0 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.234,0,0 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.234,0,0 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.647,0,0 +0.333,0.141,0.141,0,0.1,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.478,0,0.244 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.484,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.467,0,0.31 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.435,0,0.356 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0.516,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.345 +1,0.338,0.338,0.3,0,0,0,0.488,0.641,0.641,0,0,0.138 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.312 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.307 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0.3,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0.5,0,0.616,0.616,0.616,0,0.0987,0 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.506,0 +1,0.59,0.59,0,0,0,0.3,0.653,0.579,0.579,0,0.425,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.464,0.488 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.382,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.73,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.309,0 +1,0.41,0.41,0,0,0,1,0.521,0.541,0.541,0,0.361,0 +1,0.496,0.496,0,0,0,0.2,0.509,0.525,0.525,0,0.348,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.321 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.168 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.0671 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.297 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.187 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0.0935 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.157 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.156 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0624 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0.8,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0.6,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.488 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.366 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0.8,0.5,0,0,0.58,0.653,0.653,0.353,0,0.193 +1,0.377,0.377,1,1,0,0,0.58,0.653,0.653,0.554,0,0 +0.667,0.268,0.268,1,1,0,0,0.472,0.591,0.591,0.451,0,0 +1,0.377,0.377,1,1,0,0,0.58,0.653,0.653,0.527,0,0 +1,0.377,0.377,1,0.6,0,0,0.58,0.653,0.653,0.274,0,0 +1,0.377,0.377,0.8,0,0,0,0.58,0.653,0.653,0.274,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.326 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0652 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,1,0,0.635,0.555,0.555,0,0.519,0 +1,0.72,0.72,0,0,1,0,0.635,0.555,0.555,0,0.236,0.271 +1,0.496,0.496,0,0,1,0,0.509,0.525,0.525,0,0.309,0.0339 +1,0.386,0.386,0,0,0.1,0.2,0.448,0.484,0.484,0,0.459,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.112,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.283,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.296,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.296,0 +1,0.183,0.183,0,0,0,1,0.393,0.451,0.451,0,0.309,0 +1,0.183,0.183,0,0,0,1,0.393,0.451,0.451,0,0.322,0 +1,0.116,0.116,0,0,0,1,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0.1,0.325,0.458,0.458,0,0.369,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.348,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.369,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.322,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.348,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.309,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.296,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.472,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.309,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.309,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.369,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.232,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.236,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.558,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.0987,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.249,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.361,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.468,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.309,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.361,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.382,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.631,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.309,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.396 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.153 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.0612 +0.333,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0.4,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0.3,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.488 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.122 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.196 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.136 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.36 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.339 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0677 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0.3,0,0,0,0.304,0.462,0.462,0,0,0.149 +0.667,0.136,0.136,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.34 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.34 +0.333,0.163,0.163,0.9,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.558 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.1 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.575 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.237 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.135 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.275 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.309 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.337 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.167 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0668 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.264 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0659 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.138 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.142 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.198 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.234 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.352 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.341 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0682 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.281 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0956 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0.8,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0.6,0,0,0,0.472,0.591,0.591,0.364,0,0 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.647,0,0.122 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.359,0,0.244 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.342,0,0 +0.667,0.362,0.362,0,0.1,0,0,0.497,0.566,0.566,0.391,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.366 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.337 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.303 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.299 +1,0.397,0.397,0.3,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0.5,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.312 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.285 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.22 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.134 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.31 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0335 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.201 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.344 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.103 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0.5,0,0,0.653,0.579,0.579,0.473,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.761,0,0.283 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.435,0,0.161 +1,0.788,0.788,0,1,0,0,0.635,0.555,0.555,0.549,0,0 +1,0.788,0.788,0,0.6,0,0,0.635,0.555,0.555,0,0,0.488 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.337,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.527,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0.5,0,0.227,0.508,0.508,0,0.296,0 +1,0.263,0.263,0,0,1,0,0.227,0.508,0.508,0,0.309,0 +1,0.256,0.256,0,0,0,0.3,0.233,0.508,0.508,0,0.137,0 +1,0.256,0.256,0,0,0,1,0.233,0.508,0.508,0,0.309,0 +1,0.256,0.256,0,0,0,1,0.233,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,1,0.245,0.487,0.487,0,0.373,0 +0.667,0.153,0.153,0,0,0,1,0.245,0.487,0.487,0,0.0601,0 +0.667,0.153,0.153,0,0,0,1,0.245,0.487,0.487,0,0,0 +0.667,0.147,0.147,0,0,0,0.1,0.248,0.491,0.491,0,0.369,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.369,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.0258,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.348,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.472,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.249,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.258,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.73,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.408,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.0601,0.122 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.543,0.366 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.47,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.249,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.0515,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.0601,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.0987,0.122 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.575,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.313,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.631,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.193,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.451,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.579,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.159,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.309,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.0601,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.0258,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.408,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.382,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.137,0.244 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.407 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.098 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0.1,0,0,0,0.472,0.591,0.591,0,0,0.334 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.289,0.289,0,0.5,0,0,0.472,0.591,0.591,0.37,0,0 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.38,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.418,0,0.244 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.293,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.321,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.315,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.446,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.473,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.457,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.582,0,0.488 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.339 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0.3,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.256,0.256,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0.5,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.488 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.366 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.488 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.366 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.366 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.341 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0341 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0.3,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0.1,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.244 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.366 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.217 +1,0.571,0.571,0,0,0.5,0,0.543,0.493,0.493,0,0.137,0 +1,0.571,0.571,0,0,1,0,0.543,0.493,0.493,0,0.236,0 +1,0.183,0.183,0,0,0,0.3,0.393,0.451,0.451,0,0.124,0 +1,0.183,0.183,0,0,0,1,0.393,0.451,0.451,0,0.421,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.545,0.349 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.459,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.309,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.0386,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0.433,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0.0386,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.345 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.192 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.353 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0353 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.333 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.2 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.339 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.0678 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.244 +0.333,0.163,0.163,0,0.5,0,0,0.316,0.483,0.483,0.462,0,0 +0.333,0.163,0.163,0,1,0,0,0.316,0.483,0.483,0.625,0,0 +0.333,0.163,0.163,0,1,0,0,0.316,0.483,0.483,0.408,0,0 +0.333,0.162,0.162,0,1,0,0,0.276,0.487,0.487,0.495,0,0 +0.333,0.162,0.162,0,0.6,0,0,0.276,0.487,0.487,0.234,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0.234,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0.299,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.114 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.333 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0998 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.142,0.142,1,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0.5,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0.6,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,1,0.5,0,0,0.411,0.582,0.582,0.391,0,0 +0.667,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.44,0,0 +0.667,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.332,0,0.122 +0.667,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.413,0,0 +0.667,0.252,0.252,1,0.6,0,0,0.411,0.582,0.582,0.215,0,0 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0.215,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0.467,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0.8,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.488 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.273 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.147 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.147 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.441 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.246 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.158 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0.5,0,0,0.488,0.641,0.641,0.462,0,0 +1,0.353,0.353,0,1,0,0,0.488,0.641,0.641,0.565,0,0 +1,0.353,0.353,0,1,0,0,0.488,0.641,0.641,0.549,0,0.122 +1,0.408,0.408,0.8,1,0,0,0.58,0.653,0.653,0.429,0,0 +1,0.408,0.408,1,0.6,0,0,0.58,0.653,0.653,0.286,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0.572,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.38,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.279 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0941 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.326 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0326 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.328 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.207 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.164 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.352 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.211 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0.3,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0.1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.366 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.174 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.348 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.104 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.366 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.173 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.328 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.262 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.228 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.0652 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.193 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.0964 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.199 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.244 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.122 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.122 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.417 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.135 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.0327 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.327 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0327 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.306 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.283 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.113 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,1,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.166 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.199 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0.102 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.155 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.0311 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.301 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.0334 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.17 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.278 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.366 +0.667,0.274,0.274,0.3,0,0,0,0.294,0.508,0.508,0.288,0,0.122 +0.333,0.162,0.162,1,1,0,0,0.276,0.487,0.487,0.571,0,0 +0.667,0.274,0.274,1,1,0,0,0.294,0.508,0.508,0.168,0,0 +0.667,0.274,0.274,1,1,0,0,0.294,0.508,0.508,0.168,0,0 +0.667,0.274,0.274,1,1,0,0,0.294,0.508,0.508,0.457,0,0 +0.667,0.263,0.263,1,0.1,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.156,0.156,0.9,0,0,0,0.242,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0.244 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0.5,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.366 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0.5,0,0,0.616,0.616,0.616,0.63,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.397,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.598,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.424,0,0 +1,0.518,0.518,0,0.6,0,0,0.616,0.616,0.616,0.277,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.277,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.337,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.603,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.177 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0354 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.442 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.236,0 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.258,0 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.519,0 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.309,0 +1,0.408,0.408,0,0,0.5,0,0.58,0.653,0.653,0,0.0601,0 +1,0.408,0.408,0,0,0,0.8,0.58,0.653,0.653,0,0,0.122 +1,0.518,0.518,0,0,0,1,0.616,0.616,0.616,0,0.421,0 +1,0.518,0.518,0.3,0,0,1,0.616,0.616,0.616,0,0.309,0 +1,0.518,0.518,1,0,0,1,0.616,0.616,0.616,0,0.369,0 +1,0.518,0.518,1,0,0,0.2,0.616,0.616,0.616,0,0.554,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0.262,0.122 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0.283,0.244 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.429,0.366 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.631,0 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.223,0 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.27,0 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.296,0.122 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0.524,0 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0.476,0 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0.151 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,1,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,1,0,0,0,0.543,0.493,0.493,0,0,0.244 +1,0.571,0.571,1,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0.9,0,0,0,0.543,0.493,0.493,0,0,0.407 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.526 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.248 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.218 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.178 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.127 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.203 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.184 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.138 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.236 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0.462,0,0 +0.667,0.237,0.237,0,1,0,0,0.233,0.525,0.525,0.565,0,0.244 +0.667,0.237,0.237,0.8,1,0,0,0.233,0.525,0.525,0,0,0.366 +0.667,0.237,0.237,1,1,0,0,0.233,0.525,0.525,0.446,0,0 +0.667,0.237,0.237,1,1,0,0,0.233,0.525,0.525,0.38,0,0.244 +0.667,0.235,0.235,1,1,0,0,0.258,0.525,0.525,0.554,0,0 +0.667,0.235,0.235,1,0.5,0,0,0.258,0.525,0.525,0,0,0.244 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0.587,0,0 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0.375,0,0 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0.609,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.435,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.236,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.236,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.424,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.429,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0.429,0,0 +0.667,0.236,0.236,0.1,0,0,0,0.282,0.533,0.533,0.587,0,0.244 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0.321,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0.364,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0.549,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.446,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.397,0,0.244 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.397,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.62,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.236,0,0.122 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.236,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.495,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.37,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.505,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.451,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.38,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.554,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.321,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.337,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.446,0,0.488 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.326,0,0.122 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.429,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.44,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.25,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.457,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.435,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.582,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.582,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.435,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.153 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.061 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.264 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.281 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0956 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.354 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0354 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.165 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.132 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.488 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0.3,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0.5,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0.5,0,0,0.58,0.653,0.653,0.5,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.408,0,0.122 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.375,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.418,0,0 +1,0.518,0.518,0,0.6,0,0,0.616,0.616,0.616,0.277,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.533,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.467,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.533,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.182,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.182,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.413,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.527,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.359,0,0.488 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.408,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.359,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.587,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.326,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.386,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.576,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.446,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0.244 +0.667,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.342 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.348 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.032 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.288 +0.667,0.222,0.222,0,0,0.5,0,0.35,0.459,0.459,0,0.361,0 +0.667,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0.5,0,0.35,0.459,0.459,0,0,0.17 +0.333,0.136,0.136,0,0,0,0.8,0.304,0.462,0.462,0,0,0.238 +0,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0.9,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.488 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0.3,0,0,0,0.488,0.641,0.641,0.44,0,0 +1,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.337,0,0 +1,0.289,0.289,1,1,0,0,0.472,0.591,0.591,0,0,0 +1,0.289,0.289,1,1,0,0,0.472,0.591,0.591,0.56,0,0.366 +1,0.408,0.408,1,1,0,0,0.58,0.653,0.653,0.375,0,0.244 +1,0.408,0.408,1,0.1,0,0,0.58,0.653,0.653,0.38,0,0 +1,0.408,0.408,0.4,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.446,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.462,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.353,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.321,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.219 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.171 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.308 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0.3,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.142,0.142,0,0.5,0,0,0.267,0.491,0.491,0.489,0,0 +0.333,0.142,0.142,0,1,0,0,0.267,0.491,0.491,0.473,0,0.366 +0.333,0.142,0.142,0,1,0,0,0.267,0.491,0.491,0.56,0,0 +0.333,0.142,0.142,0,1,0,0,0.267,0.491,0.491,0.658,0,0 +0.333,0.142,0.142,0,0.6,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0.685,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.522,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.462,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.418,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.446,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.304,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0.652,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.587,0,0.488 +1,0.353,0.353,0,1,0,0,0.488,0.641,0.641,0.391,0,0.244 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.484,0,0.366 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.609,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.37,0,0 +1,0.408,0.408,0,0.5,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.533,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.467,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.522,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.418,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.179,0,0.17 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.179,0,0.0681 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.538,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.5,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.293,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.511,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.473,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.647,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.353,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.264,0,0.421 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.264,0,0.106 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0.402,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0.728,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.246 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.17 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.202 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.208 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.162 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.341 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.341 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.102 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.175 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.035 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.165 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.287 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.168 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.202 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0.167 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0.338 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.488 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0.9,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.366 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.366 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.366 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.488 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.211 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.26 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.161 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.161 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.342 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.308 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0312 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.218 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.34 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.034 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.204 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.488 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.245 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0925 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0.3,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,1,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0.4,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.183 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.185 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.337 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.333 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.654 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.385 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.353,0.353,0,0,1,0,0.488,0.641,0.641,0,0.21,0 +1,0.353,0.353,0,0,1,0,0.488,0.641,0.641,0.457,0.249,0 +1,0.353,0.353,0,1,1,0,0.488,0.641,0.641,0.418,0,0.122 +1,0.353,0.353,0.8,1,0,0.3,0.488,0.641,0.641,0,0.185,0 +1,0.353,0.353,1,1,0,1,0.488,0.641,0.641,0.255,0.309,0 +1,0.353,0.353,1,1,0,1,0.488,0.641,0.641,0.522,0,0.122 +1,0.408,0.408,0,0.1,0,1,0.58,0.653,0.653,0,0.408,0 +1,0.408,0.408,0,0,0,0.7,0.58,0.653,0.653,0.408,0.309,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.283,0.427,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.171,0.217,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.171,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.522,0,0 +1,0.518,0.518,0,0.1,0,0,0.616,0.616,0.616,0.592,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.457,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.462,0,0.122 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.609,0,0 +1,0.788,0.788,0,0.1,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.366 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0.5,0,0,0.258,0.525,0.525,0.348,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.685,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.538,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.299,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.19,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.19,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.488 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.366 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.488 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0.3,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0.366 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0.61 +1,0.518,0.518,0.4,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.333 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0999 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.122 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.163 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.195 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.122 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.105 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.1 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.147 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0.3,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.245,0.245,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0.5,0,0,0,0.239,0.517,0.517,0.402,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0.592,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0.462,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0.435,0,0 +0.667,0.237,0.237,0,0.1,0,0,0.233,0.525,0.525,0.332,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0.353,0,0.122 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.366 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.17 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.549 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0.5,0,0,0.282,0.533,0.533,0.418,0,0 +0.667,0.236,0.236,0,1,0,0,0.282,0.533,0.533,0.326,0,0 +1,0.329,0.329,0,1,0,0,0.294,0.567,0.567,0.38,0,0 +1,0.334,0.334,0,1,0,0,0.359,0.592,0.592,0.402,0,0 +1,0.334,0.334,0,0.6,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.31,0,0.218 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.5,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.457,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.364,0,0 +0.333,0.151,0.151,0,0,0.5,0,0.334,0.524,0.524,0.326,0.223,0.174 +0.667,0.252,0.252,0,0,1,0,0.411,0.582,0.582,0.182,0,0.4 +0.667,0.252,0.252,0,0,0,0.3,0.411,0.582,0.582,0.182,0.249,0 +0.667,0.252,0.252,0,0,0,1,0.411,0.582,0.582,0,0.124,0.488 +0.667,0.252,0.252,0,0,0,1,0.411,0.582,0.582,0,0.223,0.366 +0.667,0.289,0.289,0,0,0,1,0.472,0.591,0.591,0,0.567,0.15 +0.667,0.289,0.289,0,0,0,1,0.472,0.591,0.591,0,0.348,0 +0.667,0.289,0.289,0,0,0,1,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0.1,0.472,0.591,0.591,0,0.172,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.0258,0.488 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.322,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.433,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.185,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.112,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.164 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.488 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.163 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0978 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.172 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.103 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.354 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.0354 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.172 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.069 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.205 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.488 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.247 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.291 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.237 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.224 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.339 +1,0.408,0.408,0.5,0,0,0,0.58,0.653,0.653,0,0,0.224 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.332 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.219 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.303 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0674 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.527 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.161 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.17 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0679 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0733 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.288 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.351 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.158 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.063 +0.667,0.277,0.277,0,0,1,0,0.374,0.5,0.5,0,0.309,0 +0.667,0.277,0.277,0,0,1,0,0.374,0.5,0.5,0.418,0.309,0 +0.667,0.277,0.277,0,1,1,0,0.374,0.5,0.5,0.402,0.309,0 +0.667,0.277,0.277,0,1,0,0.3,0.374,0.5,0.5,0,0.506,0 +0.667,0.277,0.277,0,1,0,1,0.374,0.5,0.5,0.364,0.395,0 +0.667,0.277,0.277,0,1,0,0,0.374,0.5,0.5,0.38,0,0 +0.667,0.274,0.274,0,1,0,0,0.294,0.508,0.508,0,0.575,0 +0.667,0.274,0.274,0,0.5,0,0,0.294,0.508,0.508,0.511,0.412,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0.462,0.296,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0.459,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0.348,0.15,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0.446,0.476,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.167,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.296,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.283,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.309,0.122 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.283,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.0515,0.122 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.472,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.631,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.309,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.433,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.112,0.122 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.258,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.408,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.459,0.244 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.258,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.395,0.122 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.496,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.521,0.61 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.369,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.159,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.0386,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.366 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.366 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.366 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0.322 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.167 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.1 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.172 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0.8,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.488 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.244 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0.5,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.134 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.17 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.4 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.168 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.171 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.136 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.124,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,1,0,0.245,0.495,0.495,0,0.296,0 +0.667,0.143,0.143,0,0,0.5,0,0.245,0.495,0.495,0,0.391,0.122 +0.667,0.143,0.143,0,0,0,0.8,0.245,0.495,0.495,0,0.313,0 +0.667,0.142,0.142,0,0,0,0.5,0.258,0.495,0.495,0,0.236,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.309,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.296,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.258,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.249,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.159,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.472,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.0386,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.283,0 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.0258,0 +1,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.519,0 +1,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.275,0 +1,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.335,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.124,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.0386,0.488 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.614,0.366 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.155,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.296,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.408,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.185,0.291 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.0338 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.373,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.249,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.137,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.21,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.519,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.122 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.05,0.05,1,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0.5,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.179 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0.5,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.222 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.156 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.0312 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.488 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,1,0,0.244 +0.333,0.151,0.151,0,1,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0,1,0,0,0.365,0.528,0.528,0.326,0,0 +0.333,0.169,0.169,0,1,0,0,0.365,0.528,0.528,0.418,0,0.488 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.326,0,0 +0.667,0.289,0.289,0,0.1,0,0,0.472,0.591,0.591,0.451,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.362,0.362,0,0.5,0,0,0.497,0.566,0.566,0.636,0,0.122 +0.667,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0.489,0,0.122 +0.667,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0.587,0,0 +0.667,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0.6,0,0,0.497,0.566,0.566,0.364,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.283,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0.8,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.383,0.495,0.495,0,0,0.122 +0.667,0.296,0.296,1,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,0.9,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.333 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.2 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.129 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.0966 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.547 +1,0.104,0.104,0.3,0,0,0,0.307,0.426,0.426,0,0,0.104 +1,0.104,0.104,1,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.222,0.222,0.1,0,0,0,0.35,0.459,0.459,0,0,0.137 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.309 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.366 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.488 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.315 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.341 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0.8,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0.397,0,0.122 +1,0.518,0.518,1,1,0,0,0.616,0.616,0.616,0.533,0,0.244 +1,0.668,0.668,1,1,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0.5,1,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.337,0,0 +1,0.462,0.462,0,0.1,0,0,0.521,0.541,0.541,0.56,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.239,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.848,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.478,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.527,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.239,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.366 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0.31,0,0.488 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.451,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.375,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.467,0,0 +1,0.162,0.162,0,1,0,0,0.276,0.487,0.487,0.413,0,0 +1,0.162,0.162,0,1,0,0,0.276,0.487,0.487,0.174,0,0 +0.667,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.174,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.23 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.104 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.173 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0.3,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.359,0.359,1,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.343,0.343,0.1,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.144,0.144,0.8,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.239,0.239,0.9,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.732 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.366 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.122 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.154 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.306 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.288 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.35 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.15 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.244 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.257 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0679 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.34 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.136 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.284 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.176 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0703 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.732 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0.3,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,1,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0.366 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0.244 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0.122 +0.667,0.223,0.223,0.4,0,0,0,0.353,0.475,0.475,0,0,0.156 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.366 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.244 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.341 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.156 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.122 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.341 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.334 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.14 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.194 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.13 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.334,0.334,1,0,0,0,0.359,0.592,0.592,0,0,0.316 +1,0.334,0.334,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,1,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0.162 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0.0649 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0.3,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.121 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.212 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.716 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.284 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.276 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.295 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.244 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.234 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.285 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.122 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0.3,0,0,0,0.227,0.508,0.508,0,0,0.177 +0.667,0.263,0.263,1,0,0,0,0.227,0.508,0.508,0,0,0.141 +0.667,0.263,0.263,0.1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.329 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0658 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.273 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.19 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0.3,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0.9,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0.397,0,0 +0.333,0.143,0.143,0,1,0,0,0.245,0.495,0.495,0.438,0,0.122 +0.333,0.142,0.142,0,1,0,0,0.258,0.495,0.495,0.219,0,0 +0.333,0.142,0.142,0,1,0,0,0.258,0.495,0.495,0.484,0,0.366 +0.333,0.142,0.142,0,1,0,0,0.258,0.495,0.495,0.212,0,0.122 +0.333,0.142,0.142,0,0.1,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.24 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.658 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.55 +0.667,0.289,0.289,0.8,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.0353 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.353 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.353 +1,0.408,0.408,0.9,0,0,0,0.58,0.653,0.653,0,0,0.141 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.49 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +0.333,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0.9,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0.5,0,0.245,0.487,0.487,0,0.309,0 +0.333,0.153,0.153,0,0,1,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,1,0,0.245,0.487,0.487,0,0.446,0 +0.333,0.153,0.153,0,0,0.5,0,0.245,0.487,0.487,0,0.249,0 +0.333,0.153,0.153,0,0,0,0.8,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,1,0.248,0.491,0.491,0,0.408,0 +0.333,0.147,0.147,0,0,0,1,0.248,0.491,0.491,0,0.27,0 +0.333,0.147,0.147,0,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0.2,0.248,0.491,0.491,0,0.421,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.258,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.232,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.296,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.333 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.41 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.247 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0985 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.652 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.488 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.239,0.239,0.3,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.61 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.206,0.206,0.8,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,1,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,1,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.256,0.256,1,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0.5,0,0,0,0.39,0.503,0.503,0,0,0.244 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.432 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0917 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0.356,0 +1,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0.223,0.175 +1,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0,0.175 +1,0.222,0.222,0,0,0,0.3,0.35,0.459,0.459,0,0.283,0 +1,0.222,0.222,0,0,0,1,0.35,0.459,0.459,0,0.0987,0 +1,0.222,0.222,0,0,0,1,0.35,0.459,0.459,0,0,0 +1,0.39,0.39,0,0,0,1,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,1,0.432,0.518,0.518,0,0,0.34 +1,0.39,0.39,0,0,0,1,0.432,0.518,0.518,0,0,0.34 +1,0.39,0.39,0,0,0,0.1,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.271 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.175 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.035 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0.3,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0.5,0,0.5,0,0.233,0.525,0.525,0,0.395,0 +0.667,0.237,0.237,0,0,1,0,0.233,0.525,0.525,0,0.0644,0 +0.667,0.235,0.235,0,0,0,0.3,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.258,0.525,0.525,0,0.296,0 +0.667,0.235,0.235,0,0,0,1,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.258,0.525,0.525,0,0.309,0 +0.667,0.235,0.235,0,0,0,0.7,0.258,0.525,0.525,0,0.296,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.506,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.352,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.142,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.485,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.236,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.185,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.519,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.427,0.488 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.217,0.122 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.348,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.395,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.223,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.459,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.223,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.073,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.0258,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.353,0.353,0.8,0,0,0,0.488,0.641,0.641,0,0.236,0 +1,0.353,0.353,0.6,0,0,0,0.488,0.641,0.641,0,0.236,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0.258,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.636 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.274 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.594 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0627 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.533,0,0.0941 +1,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0.315,0,0 +1,0.462,0.462,0,1,0,0,0.521,0.541,0.541,0.264,0,0 +1,0.462,0.462,0,1,0,0,0.521,0.541,0.541,0.264,0,0 +1,0.462,0.462,0,1,0,0,0.521,0.541,0.541,0.424,0,0 +1,0.462,0.462,0,0.1,0,0,0.521,0.541,0.541,0.571,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.777,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.312,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.312,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.353,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.359,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.353,0,0.706 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.386,0,0.102 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.488 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.324 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0324 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.17 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.272 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.122 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.386 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.177 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.0706 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.178 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.335 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0.5,0,0,0.325,0.549,0.549,0.304,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0.315,0,0 +0.333,0.144,0.144,0,1,0,0,0.291,0.507,0.507,0.516,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0.527,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0.511,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.5,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.256 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0351 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.351 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.122 +1,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.457 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.539 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.034 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0.14 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0.244 +1,0.392,0.392,0.4,0,0,0,0.213,0.534,0.534,0,0,0.195 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.0974 +1,0.392,0.392,0.8,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0.1,0,0,0,0.222,0.534,0.534,0,0,0.4 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.488 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.122 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.402,0,0 +0.667,0.251,0.251,0,1,0,0,0.234,0.528,0.528,0.293,0,0.122 +0.667,0.251,0.251,0,1,0,0,0.234,0.528,0.528,0.166,0,0 +0.667,0.249,0.249,0,1,0,0,0.259,0.528,0.528,0.166,0,0.244 +0.667,0.249,0.249,0,1,0,0,0.259,0.528,0.528,0.522,0,0.122 +0.667,0.249,0.249,0.8,0.2,0,0,0.259,0.528,0.528,0.571,0,0 +0.667,0.249,0.249,1,0,0,0,0.259,0.528,0.528,0.277,0,0 +0.667,0.249,0.249,1,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.149,0.149,0.1,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.488 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.385 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.0701 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.0701 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.28 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.295 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.138 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0.9,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.16 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.462 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.244 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.129 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0.18 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.327 +1,0.286,0.286,0.5,0,0,0,0.296,0.511,0.511,0,0,0.0327 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.488 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.488 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.488 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,1,0,0.259,0.528,0.528,0,0.361,0 +0.667,0.249,0.249,0,0,1,0,0.277,0.519,0.519,0,0.309,0 +0.667,0.249,0.249,0,0,1,0,0.277,0.519,0.519,0,0.0987,0.244 +0.667,0.249,0.249,0,0,0,0.3,0.277,0.519,0.519,0,0.262,0 +0.667,0.249,0.249,0,0,0,1,0.277,0.519,0.519,0,0.433,0.488 +0.667,0.249,0.249,0,0,0,1,0.277,0.519,0.519,0,0.0601,0.244 +0.667,0.249,0.249,0,0,0,0.4,0.277,0.519,0.519,0,0.421,0.122 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.249,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0.8,0,0,0,0.271,0.501,0.501,0,0.519,0 +0.667,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0.283,0 +0.667,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0.408,0 +0.667,0.259,0.259,0.5,0,0,0,0.327,0.552,0.552,0,0.288,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.236,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.369,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.309,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.348,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.459,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.421,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.556,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.423,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.369,0.244 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.0258,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.27,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.283,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.159,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.369,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.392,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.587,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.408,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.168 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.379 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.289 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.417 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0346 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.339 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.203 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.312 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0.1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.219 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.154 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.49 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.488 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0.5,0,0,0.525,0.544,0.544,0.511,0,0 +0.667,0.554,0.554,0,1,0,0,0.525,0.544,0.544,0.397,0,0.244 +0.667,0.554,0.554,0,1,0,0,0.525,0.544,0.544,0.527,0,0 +1,0.851,0.851,0,1,0,0,0.639,0.559,0.559,0.342,0,0 +1,0.851,0.851,0,0.7,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.139,0.139,0.8,0.5,0,0,0.305,0.463,0.463,0.826,0,0.366 +1,0.139,0.139,1,1,0,0,0.305,0.463,0.463,0.402,0,0 +1,0.139,0.139,1,1,0,0,0.305,0.463,0.463,0.668,0,0.305 +1,0.228,0.228,0.1,1,0,0,0.352,0.461,0.461,0.204,0,0 +1,0.228,0.228,0,1,0,0,0.352,0.461,0.461,0.204,0,0 +1,0.228,0.228,0,1,0,0,0.352,0.461,0.461,0.375,0,0 +0.667,0.167,0.167,0,0.1,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.543,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.62,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.44,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.522,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0.272,0,0.336 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.168 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.366 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.273 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.148 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0297 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.286,0.286,0.8,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.539 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.501,0.501,0.1,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.366 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.366 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.137 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.457 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.161 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.161 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0642 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.292 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0311 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0932 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.334 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.27 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.7 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.105 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.246 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.351 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0.8,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0.9,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0.8,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.488 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0.1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.339 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.373 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.207 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0.207 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.177 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.142 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.177 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.244 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.249,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.0515,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0.3,0.246,0.496,0.496,0,0.0987,0 +0.333,0.15,0.15,0,0,0,1,0.246,0.496,0.496,0,0.137,0 +0.333,0.15,0.15,0,0,0,1,0.246,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0.15,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0.296,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0.0987,0 +0.333,0.149,0.149,0,0,0,0.2,0.258,0.496,0.496,0,0.399,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.137,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.236,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.309,0.366 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.249,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.258,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0.5,0,0,0.271,0.501,0.501,0.766,0,0 +0.333,0.15,0.15,0,1,0,0,0.271,0.501,0.501,0.315,0,0 +0.333,0.15,0.15,0,1,0,0,0.271,0.501,0.501,0.364,0,0 +0.333,0.154,0.154,0,1,0,0,0.292,0.509,0.509,0.418,0,0 +0.333,0.154,0.154,0,0.7,0,0,0.292,0.509,0.509,0.239,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.239,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.321,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.478,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.364,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0.3,0,0,0,0.413,0.585,0.585,0.446,0,0.122 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0.467,0,0.244 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0.701,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.435,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.359,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.467,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.625,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.307,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.307,0,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.435,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.28 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.231 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.169 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.27 +1,0.0781,0.0781,0.8,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0.6,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.363 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.195 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0.0486 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.334 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.278 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.197 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.61 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.461 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.244 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0.3,0,0,0,0.315,0.534,0.534,0,0,0.323 +1,0.404,0.404,1,0,0,0,0.315,0.534,0.534,0,0,0.259 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.228 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.244 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0627 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0.8,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0.6,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.149,0.149,0.1,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.366 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.244 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.278 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0313 +0.667,0.554,0.554,0.8,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,1,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,1,0,0,0,0.525,0.544,0.544,0,0,0.244 +0.667,0.554,0.554,1,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0.5,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.191 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.287 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.31 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.172 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.103 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.249 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.066 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.264 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.345 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0345 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.244 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0.8,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,0.5,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.244 +1,0.392,0.392,0.8,0,0,0,0.213,0.534,0.534,0,0,0.122 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0.244 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0.244 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0.122 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0.122 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0.7,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.167 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.189 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.397 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0.16 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0.128 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0.3,0,0,0,0.287,0.546,0.546,0,0,0.168 +1,0.349,0.349,1,0,0,0,0.287,0.546,0.546,0,0,0.134 +1,0.349,0.349,1,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0.355 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0.9,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.176 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.141 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.1 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.169 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0337 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.278 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.244 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.291 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.0676 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0,0.0987,0.174 +0.667,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0,0.159,0 +0.667,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,0,0.3,0.5,0.569,0.569,0,0.258,0 +0.667,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.137,0.488 +0.667,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.296,0.122 +0.667,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.0601,0 +0.667,0.554,0.554,0,0,0,0.8,0.525,0.544,0.544,0,0.0987,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0.348,0.122 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0.356,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0.416,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0.425,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.276 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.196 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.166 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0996 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.161 +1,0.164,0.164,0.8,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.231 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.168 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.302 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.364,0.364,1,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0.8,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.215 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0.5,0,0,0.232,0.546,0.546,0.587,0,0 +1,0.352,0.352,0,1,0,0,0.222,0.559,0.559,0.446,0,0.172 +1,0.352,0.352,0,1,0,0,0.222,0.559,0.559,0.391,0,0.0343 +1,0.352,0.352,0.8,1,0,0,0.222,0.559,0.559,0.554,0,0 +1,0.352,0.352,0.6,1,0,0,0.222,0.559,0.559,0.223,0,0 +1,0.352,0.352,0,1,0,0,0.222,0.559,0.559,0.223,0,0 +0.667,0.251,0.251,0,0.1,0,0,0.234,0.528,0.528,0.5,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.74 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.488 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.244 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.122 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.293 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0329 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.329 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0329 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.508 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.122 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0.3,0,0,0,0.277,0.488,0.488,0,0,0.103 +0.333,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0.324 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.398 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.0617 +0.333,0.16,0.16,1,0.5,0,0,0.246,0.488,0.488,0.402,0,0 +0.333,0.16,0.16,1,1,0,0,0.246,0.488,0.488,0.565,0,0 +0.333,0.16,0.16,1,1,0,0,0.246,0.488,0.488,0.582,0,0 +0.333,0.16,0.16,1,1,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,1,0.7,0,0,0.246,0.488,0.488,0.533,0,0 +0.333,0.16,0.16,1,0,0,0,0.246,0.488,0.488,0.212,0,0.122 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.207,0,0 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.207,0,0 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.332,0,0.122 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.489,0,0 +0.333,0.154,0.154,0.4,0,0,0,0.249,0.492,0.492,0.598,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.299,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.435,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.451,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.647,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.467,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0.1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.404,0.404,0,0,1,0,0.491,0.646,0.646,0,0.395,0 +1,0.404,0.404,0,0,0.5,0,0.491,0.646,0.646,0,0.305,0 +1,0.404,0.404,0,0,0,0.8,0.491,0.646,0.646,0,0.155,0.244 +1,0.404,0.404,0,0.5,0,1,0.491,0.646,0.646,0.342,0.15,0 +1,0.404,0.404,0,1,0,0.9,0.491,0.646,0.646,0.804,0.236,0 +1,0.404,0.404,0,1,0,0,0.491,0.646,0.646,0.549,0,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0.353,0.429,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0,0.27,0.122 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0.1,0,0,0.584,0.658,0.658,0,0.506,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.249,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.137,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.409 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.265 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.957 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.191 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.173 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.167 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.1 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.243 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.249 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0635 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.107 +0.667,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.106 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.286 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.319 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.366 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.324 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.231 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.366 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0.5,0,0.305,0.463,0.463,0,0.309,0 +1,0.139,0.139,0,0,1,0,0.305,0.463,0.463,0,0,0 +1,0.284,0.284,0,0,0,0.3,0.376,0.503,0.503,0,0.438,0 +1,0.284,0.284,0,0,0,1,0.376,0.503,0.503,0,0.313,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0.322,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0.137,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0.249,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.073,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.455,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.395,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.275,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.348,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.584,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.356,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.41 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.321,0,0 +0.667,0.259,0.259,0,1,0,0,0.327,0.552,0.552,0.402,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.304,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0,0,0.169 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.505,0,0.169 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0.6,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.175 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.349 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0349 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.176 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.282 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.316 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.17 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.19 +1,0.806,0.806,0.8,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0.6,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.287 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.419 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.541 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0.451,0,0 +1,0.391,0.391,0,1,0,0,0.45,0.486,0.486,0.587,0,0 +1,0.391,0.391,0,1,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,1,0,0,0.45,0.486,0.486,0.62,0,0 +1,0.22,0.22,0,1,0,0,0.354,0.476,0.476,0.408,0,0.366 +1,0.116,0.116,0,0.2,0,0,0.326,0.459,0.459,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0.5,0,0.246,0.488,0.488,0,0.296,0 +0.333,0.16,0.16,0,0,1,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,1,0,0.246,0.488,0.488,0,0.361,0 +0.333,0.16,0.16,0,0,0.5,0,0.246,0.488,0.488,0,0.0129,0 +0.333,0.16,0.16,0,0,0,0.8,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,1,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0.9,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0.5,0,0.24,0.519,0.519,0,0.258,0 +0.667,0.259,0.259,0,0,1,0,0.24,0.519,0.519,0,0.459,0 +0.667,0.251,0.251,0,0,0,0.3,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,1,0.234,0.528,0.528,0,0.0386,0 +0.667,0.251,0.251,0,0,0,1,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,1,0.234,0.528,0.528,0,0.644,0 +0.667,0.251,0.251,0,0,0,0.8,0.234,0.528,0.528,0,0.348,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.073,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.335,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.296,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.335,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.27,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.296,0.366 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.0987,0.488 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.258,0.244 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.0386,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.27,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.283,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.258,0.122 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.421,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.258,0.122 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0.8,0,0,0,0.297,0.571,0.571,0,0.514,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0.465,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0.1,0,0,0,0.361,0.596,0.596,0,0.159,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.249,0.244 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.309,0 +1,0.363,0.363,0.8,0,0,0,0.361,0.596,0.596,0,0.446,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0.288,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0.159,0.366 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.61 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0.249,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0.0515,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.296,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.283,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.296,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.322,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.0987,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.732 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.173 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.191 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.338 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.188 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0942 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0339 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.313 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.104 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.348 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.278 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.21 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.105 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.161 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.161 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0.3,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.134 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0.63,0,0 +0.667,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.429,0,0.244 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0,0,0.451 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0.457,0,0.278 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0.337,0,0 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0.457,0,0 +0.667,0.278,0.278,1,0.6,0,0,0.228,0.511,0.511,0.288,0,0.19 +0.667,0.278,0.278,0.8,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.538,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.592,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.353,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.511,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0.8,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.333,0.2,0.2,0.1,0,0,0,0.366,0.53,0.53,0,0,0.366 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.244 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.171 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.341 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.102 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.366 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.168 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.35 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.245 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0.3,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0.6,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.186 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.215 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.344 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.344 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.466 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.122 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.122 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.165 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.197 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.324 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.414 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.34 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.102 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.176 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.352 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0352 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0976 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0.494,0 +1,0.656,0.656,0,0,0.5,0,0.621,0.621,0.621,0,0.309,0.366 +1,0.656,0.656,0,0,0,0.8,0.621,0.621,0.621,0,0.137,0 +1,0.656,0.656,0,0,0,0.5,0.621,0.621,0.621,0,0.0129,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.0129,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.249,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.361,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.363,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.405,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.545,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.488 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.122 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.245 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.207 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.103 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.29 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0341 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.341 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.136 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +1,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +1,0.154,0.154,0.8,0,0,0,0.249,0.492,0.492,0,0,0 +1,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0.122 +1,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +1,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.15,0.15,0.5,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.155 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0619 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.354 +0.667,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0.391,0,0.244 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0.353,0,0 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0.826,0,0 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0.505,0,0 +0.667,0.168,0.168,0,0.2,0,0,0.336,0.525,0.525,0.31,0,0 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.209,0,0 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.209,0,0.244 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.61 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.516,0,0.122 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.402,0,0.244 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0.446,0,0 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0.565,0,0 +0.667,0.252,0.252,0,0,1,0,0.379,0.517,0.517,0,0.296,0 +0.667,0.252,0.252,0,0,0.5,0,0.379,0.517,0.517,0,0.27,0 +0.667,0.252,0.252,0,0,0,0.8,0.379,0.517,0.517,0,0,0 +0.667,0.252,0.252,0,0,0,1,0.379,0.517,0.517,0,0.532,0 +1,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.137,0 +1,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0.3,0.525,0.544,0.544,0,0.258,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.481,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.202,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.142,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.366 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.41 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0331 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0.8,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0.6,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0.1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.473,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.446,0,0 +0.333,0.2,0.2,0,1,0,0,0.366,0.53,0.53,0,0,0 +0.333,0.2,0.2,0,1,0,0,0.366,0.53,0.53,0.435,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.467,0,0 +0.667,0.351,0.351,0,0.2,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.244 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.16 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.032 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.333 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.155 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0943 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.161 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.736 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.354 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.0709 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.7 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.159 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.249 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.27,0.27,0,0.5,0,0,0.234,0.511,0.511,0.457,0,0.246 +0.667,0.27,0.27,0,1,0,0,0.234,0.511,0.511,0.462,0,0 +0.667,0.27,0.27,0,1,0,0,0.234,0.511,0.511,0.56,0,0 +0.667,0.259,0.259,0,1,0,0,0.24,0.519,0.519,0.239,0,0 +0.667,0.259,0.259,0,0.7,0,0,0.24,0.519,0.519,0.266,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0.293,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0.462,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0.457,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.554,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.293,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.249,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.283,0.122 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.369,0 +0.333,0.149,0.149,0,0,0,0.3,0.258,0.496,0.496,0,0.223,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.8,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0.2,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.174 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.453 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.136 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.204 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0348 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.272 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,1,0,1,0,0.305,0.463,0.463,0,0.283,0 +0.667,0.139,0.139,1,0,1,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,1,0,1,0,0.305,0.463,0.463,0,0,0 +0.667,0.228,0.228,1,0,0,0.3,0.352,0.461,0.461,0,0,0.236 +0.667,0.228,0.228,1,0,0,1,0.352,0.461,0.461,0,0,0 +0.333,0.139,0.139,1,0,0,1,0.305,0.463,0.463,0,0,0 +0.333,0.167,0.167,1,0,0,1,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0.4,0,0,0.8,0.317,0.484,0.484,0,0,0.163 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.13 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.488 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.333 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.155 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.653 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.188 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.339 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.237 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.201 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.366 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.173 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.433 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.168 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.134 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.199 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0331 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.8,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.6,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.149 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0299 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.231 +0.667,0.286,0.286,0,0.5,0,0,0.413,0.585,0.585,0.353,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.598,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.364,0,0.122 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.489,0,0 +0.667,0.286,0.286,0,0.7,0,0,0.413,0.585,0.585,0.193,0,0.366 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.193,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.288,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.435,0,0.488 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.424,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.277,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.353,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.375,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.408,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.576,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.56,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.473,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.609,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0.864,0,0 +1,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0.397,0,0.244 +1,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0.435,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.177 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.177 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.296 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.148 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0297 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.283 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0.6,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0.5,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.488 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0.5,0,0.413,0.585,0.585,0,0.395,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.0987,0.122 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0.5,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0.8,0.491,0.646,0.646,0,0,0.122 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0.7,0.584,0.658,0.658,0.223,0,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0.332,0,0 +1,0.656,0.656,0,1,0,0,0.621,0.621,0.621,0.236,0,0 +1,0.656,0.656,0,1,0,0,0.621,0.621,0.621,0.471,0,0.122 +1,0.656,0.656,0,1,0,0,0.621,0.621,0.621,0.516,0,0 +1,0.656,0.656,0,0.2,0,0,0.621,0.621,0.621,0.641,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.44,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.446,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.408,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.446,0,0.122 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0.293,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0.375,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0.489,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.179 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0.9,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0.429,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.402,0,0 +0.333,0.167,0.167,0,1,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,1,0,0,0.317,0.484,0.484,0.31,0,0 +0.333,0.167,0.167,0,1,0,0,0.317,0.484,0.484,0.38,0,0 +0.333,0.167,0.167,0,0.2,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.244 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.366 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.404,0.404,0,0,1,0,0.491,0.646,0.646,0,0.496,0.122 +1,0.404,0.404,0,0,0.5,0,0.491,0.646,0.646,0,0.273,0 +1,0.404,0.404,0,0,0,0.8,0.491,0.646,0.646,0,0.249,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.446,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.236,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.275,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.296,0 +1,0.501,0.501,0,0,0,0.7,0.584,0.658,0.658,0,0.0987,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.438,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.142,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.186 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.142 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.122 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.117 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.0342 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.342 +1,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0.103 +1,0.286,0.286,0.6,0,0,0,0.296,0.511,0.511,0,0,0.366 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.244 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.167 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.0333 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.313 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.366 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0.8,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.244 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.173 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.33 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.333,0.168,0.168,0.8,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0.4,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0.8,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0.5,0,0,0.621,0.621,0.621,0.37,0,0 +1,0.656,0.656,1,1,0,0,0.621,0.621,0.621,0.467,0,0 +1,0.656,0.656,1,1,0,0,0.621,0.621,0.621,0.533,0,0 +1,0.656,0.656,1,1,0,0,0.621,0.621,0.621,0.228,0,0.35 +1,0.806,0.806,0.4,1,0,0,0.658,0.583,0.583,0.348,0,0.245 +1,0.806,0.806,0,1,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0.1,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.159 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.127 +1,0.851,0.851,0,0,1,0,0.639,0.559,0.559,0,0.0129,0 +1,0.851,0.851,0,0,0.5,0,0.639,0.559,0.559,0,0.348,0.122 +1,0.851,0.851,0,0,0,0.8,0.639,0.559,0.559,0,0,0.122 +1,0.584,0.584,0,0,0,1,0.512,0.528,0.528,0,0.382,0 +1,0.391,0.391,0,0,0,1,0.45,0.486,0.486,0,0.433,0 +1,0.391,0.391,0,0,0,1,0.45,0.486,0.486,0,0.236,0 +1,0.391,0.391,0,0,0,1,0.45,0.486,0.486,0,0.395,0 +1,0.391,0.391,0,0,0,0.7,0.45,0.486,0.486,0,0.309,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.309,0.244 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.197,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.485,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.368 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0.349 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0.105 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,1,0.5,0,0,0.376,0.503,0.503,0.592,0,0 +1,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.527,0,0 +1,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.554,0,0 +1,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.625,0,0 +1,0.286,0.286,1,0.7,0,0,0.296,0.511,0.511,0.242,0,0 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0.242,0,0 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0.554,0,0 +1,0.278,0.278,0.1,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0.8,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.667,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.667,0.154,0.154,0.5,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.645 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.249,0.249,1,0,0.5,0,0.259,0.528,0.528,0,0.369,0 +0.667,0.249,0.249,1,0,1,0,0.259,0.528,0.528,0,0,0.177 +1,0.349,0.349,1,0,1,0,0.259,0.559,0.559,0,0.361,0 +1,0.349,0.349,1,0,1,0,0.259,0.559,0.559,0,0.309,0 +1,0.349,0.349,1,0,1,0,0.259,0.559,0.559,0,0.494,0 +0.667,0.249,0.249,1,0,0,0.3,0.259,0.528,0.528,0,0.433,0 +1,0.349,0.349,1,0,0,1,0.287,0.546,0.546,0,0.27,0.488 +1,0.349,0.349,0.8,0,0,1,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0,0,0,1,0.287,0.546,0.546,0,0.429,0 +1,0.349,0.349,0,0,0,0.8,0.287,0.546,0.546,0,0.296,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0.223,0.122 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0.296,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0.605,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0.283,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0.8,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.404,0.404,0.1,0,0,0,0.491,0.646,0.646,0,0,0.366 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.614,0,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0.524,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.524,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.522,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.614,0,0.366 +0.667,0.351,0.351,0,0.2,0,0,0.475,0.594,0.594,0.402,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.451,0,0.244 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.366 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.308 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.6,0,0.5,0,0.258,0.465,0.465,0,0.258,0 +0.667,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +0.333,0.167,0.167,0,0,0,0.3,0.317,0.484,0.484,0,0.258,0 +0.333,0.167,0.167,0,0,0,1,0.317,0.484,0.484,0,0.27,0 +0.333,0.167,0.167,0,0,0,1,0.317,0.484,0.484,0,0.309,0 +0.333,0.167,0.167,0,0,0,1,0.317,0.484,0.484,0,0.348,0 +0.333,0.167,0.167,0,0,0,0.8,0.317,0.484,0.484,0,0.283,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.137,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.296,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.189,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.296,0.244 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.283,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.27,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.438,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.464,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.162 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.187 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.58 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.223 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.238 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0.8,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0.1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.366 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.228,0.228,1,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0.5,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,1,0,0.376,0.503,0.503,0,0.0129,0 +0.667,0.284,0.284,0,0,1,0,0.376,0.503,0.503,0,0.223,0 +0.667,0.284,0.284,0,0,1,0,0.376,0.503,0.503,0,0.112,0 +0.667,0.286,0.286,0,0,1,0,0.296,0.511,0.511,0,0.627,0 +0.667,0.286,0.286,0,0,0.5,0,0.296,0.511,0.511,0,0.296,0 +0.667,0.286,0.286,0,0,0,0.8,0.296,0.511,0.511,0,0.579,0 +0.667,0.286,0.286,0,0,0,1,0.296,0.511,0.511,0,0.348,0 +0.667,0.286,0.286,0,0,0,1,0.296,0.511,0.511,0,0.137,0 +0.667,0.286,0.286,0,0,0,1,0.296,0.511,0.511,0,0.262,0 +0.667,0.278,0.278,0,0,0,1,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0.7,0.228,0.511,0.511,0,0.309,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.408,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.395,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.0601,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.335,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.309,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.262,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.732 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0.44,0,0 +0.333,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.38,0,0.122 +0.333,0.15,0.15,0,1,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,1,0,0,0.246,0.496,0.496,0.418,0,0 +0.333,0.15,0.15,0,1,0,0,0.246,0.496,0.496,0.462,0,0 +0.333,0.15,0.15,0,0.2,0,0,0.246,0.496,0.496,0.408,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.348,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.565,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.418,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.707,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.61 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0.321,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0.342,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0.473,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.268,0.492,0.492,0.397,0,0 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0.397,0,0.122 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0.4,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.489,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.279,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.418,0 +1,0.501,0.501,0,0,0,0.3,0.584,0.658,0.658,0,0.418,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.0386,0.244 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.361,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.137,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0.2,0.621,0.621,0.621,0,0.481,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.366 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.164 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.196 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.351 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.494 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.171 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.103 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.618 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.0646 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.422 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.293 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.345 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.1 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.487 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.556 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.261,0,0.488 +0.667,0.259,0.259,0,1,0,0,0.327,0.552,0.552,0.5,0,0.122 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.179,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.179,0,0.418 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0,0,0.192 +1,0.404,0.404,0,0.2,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.266 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.167 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.165 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.033 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.186 +1,0.656,0.656,0.8,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0.1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.488 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.107,0.107,0.1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.12 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.165 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0992 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.211 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.247 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.167 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.1 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.316 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.167 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.478 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,1,0,0.268,0.492,0.492,0,0.236,0 +0.333,0.149,0.149,0,0,1,0,0.268,0.492,0.492,0,0.0987,0 +0.333,0.149,0.149,0,0,1,0,0.268,0.492,0.492,0,0.309,0.122 +0.333,0.15,0.15,0,0,1,0,0.271,0.501,0.501,0,0.506,0 +0.333,0.15,0.15,0,0,0.5,0,0.271,0.501,0.501,0,0.382,0 +0.333,0.15,0.15,0,0,0,0.8,0.271,0.501,0.501,0,0.27,0 +0.333,0.15,0.15,0,0,0,1,0.271,0.501,0.501,0,0.421,0 +0.333,0.15,0.15,0,0,0,1,0.271,0.501,0.501,0,0.185,0 +0.333,0.15,0.15,0,0,0,1,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,1,0.292,0.509,0.509,0,0.172,0 +0.333,0.154,0.154,0,0,0,0.7,0.292,0.509,0.509,0,0.236,0.572 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0.348,0.257 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0.382,0.244 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0.236,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.15,0.34 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.296,0.278 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.0386,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.0601,0.161 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.373 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.0386,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.361,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.27,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.288,0.343 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.82,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.206,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.0987,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.663 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.105 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.256 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.435 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.343 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0686 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.226 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.175 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.14 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.162 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0.488 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0.4,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0.236,0 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0.309,0.122 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0.3,0.658,0.583,0.583,0,0.567,0 +1,0.806,0.806,0,0,0,1,0.658,0.583,0.583,0.527,0.27,0 +1,0.806,0.806,0,1,0,1,0.658,0.583,0.583,0.435,0.361,0 +1,0.806,0.806,0,1,0,1,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,1,0,0.8,0.658,0.583,0.583,0.505,0.0515,0 +1,0.806,0.806,0,1,0,0,0.658,0.583,0.583,0.37,0,0 +1,0.851,0.851,0,0.2,0,0,0.639,0.559,0.559,0.321,0.137,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0.505,0.137,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.275,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.343,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.249,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.309,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.609,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.223,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.404,0.404,1,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,1,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0.489,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0.635,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0.283,0 +1,0.392,0.392,0,0,0.5,0,0.213,0.534,0.534,0,0.322,0 +1,0.392,0.392,0,0,0,0.8,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,1,0.213,0.534,0.534,0,0.369,0 +1,0.392,0.392,0,0,0,1,0.213,0.534,0.534,0,0.378,0 +1,0.392,0.392,0,0,0,1,0.213,0.534,0.534,0,0.464,0 +1,0.392,0.392,0,0,0,0.3,0.213,0.534,0.534,0,0.124,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.258,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.0386,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.0901,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.172,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.0601,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.446,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.258,0.366 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.309,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.249,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.258,0.122 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.27,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.27,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.369,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.309,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.223,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.459,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.464,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.403,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.223,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.0386,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.472,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.356,0.244 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.073,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.296,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.236,0.366 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.27,0.244 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.506,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.0386,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.528,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.373,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.0601,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.309,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.369,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.249,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.361,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.174 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.715 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.157 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0.219 +0.667,0.164,0.164,0.6,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,0,0.5,0,0,0.249,0.492,0.492,0.668,0,0 +0.667,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.505,0,0 +0.667,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.533,0,0 +0.667,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.457,0,0 +1,0.352,0.352,0,0.7,0,0,0.222,0.559,0.559,0.228,0,0 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.488 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.366 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.581 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.348 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.0695 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0.228,0,0.307 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.391,0,0 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.166,0,0 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.166,0,0.122 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.473,0,0 +1,0.363,0.363,0.8,0.2,0,0,0.361,0.596,0.596,0,0,0.252 +1,0.404,0.404,0.6,0,0,0,0.491,0.646,0.646,0.408,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.402,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0634 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.467,0,0.0951 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.489,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.5,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.293,0,0.244 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.291,0,0.366 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.291,0,0.122 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.386,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.364,0,0 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.348,0,0.122 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.462,0,0 +1,0.454,0.454,0,0,0.5,0,0.5,0.569,0.569,0.571,0.0515,0 +1,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0.473,0,0.244 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0.293,0,0 +1,0.806,0.806,0,0,1,0,0.658,0.583,0.583,0.484,0,0 +1,0.806,0.806,0,0,1,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0.3,0.658,0.583,0.583,0.353,0,0 +1,0.806,0.806,0,0,0,1,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,1,0.658,0.583,0.583,0,0,0.244 +1,0.806,0.806,0,0,0,0.4,0.658,0.583,0.583,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.266 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.19 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.324 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.232 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.194 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0.3,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,1,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0.2,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0.565,0,0 +0.333,0.0495,0.0495,1,1,0,0,0.258,0.465,0.465,0.408,0,0 +0.333,0.162,0.162,0.2,1,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,1,0,0,0.29,0.538,0.538,0.418,0,0 +0.333,0.162,0.162,0,1,0,0,0.29,0.538,0.538,0.359,0,0 +0.333,0.162,0.162,0,1,0,0,0.29,0.538,0.538,0.679,0,0 +0.333,0.162,0.162,0,0.9,0,0,0.29,0.538,0.538,0.353,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.8,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.7,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.491 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.349 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.21 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.269 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0633 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.493 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.115 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0.318,0 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0.481,0 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0.361,0 +0.333,0.174,0.174,0,0,0.2,0.1,0.257,0.523,0.523,0,0.21,0.244 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.504,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.444,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.283,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.27,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.0386,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.488 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0.3,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0.122 +1,0.501,0.501,0.2,0.5,0,0,0.588,0.773,0.773,0.484,0,0 +1,0.501,0.501,0,1,0,0,0.588,0.773,0.773,0.467,0,0 +1,0.501,0.501,0,1,0,0,0.588,0.773,0.773,0.375,0,0.244 +1,0.501,0.501,0,1,0,0,0.588,0.773,0.773,0.299,0,0 +1,0.501,0.501,0,0.9,0,0,0.588,0.773,0.773,0.386,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.429,0,0.343 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.259 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.175 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.245 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.402 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.175 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.105 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.183 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.169 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.203 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.344 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0687 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.172,0.172,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0.7,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.265 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.288 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.343 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.244 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.348 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.104 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.174 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.209 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.245 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.101 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.268 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.348 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.174 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.248 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.088 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0587 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.8,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.16,0.16,0.2,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.244 +0.667,0.294,0.294,0.8,0,0,0,0.374,0.631,0.631,0,0,0.366 +0.667,0.294,0.294,0.7,0,0,0,0.374,0.631,0.631,0,0,0.244 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.522,0,0.122 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.527,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.505,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.402,0,0.122 +1,0.829,0.829,0,0.4,0,0,0.743,0.743,0.743,0.364,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.299,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.318 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.366 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.144 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.337 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.231 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.854 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.235 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.188 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.172 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.172 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.33 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.033 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.176 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.0352 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.244 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.401 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.366 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0644 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.405 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.488 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.244 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.331 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.132 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.244 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.488 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.106 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.488 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.244 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.35,0.35,0.3,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.453,0.453,0.2,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.488 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0.3,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,1,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0.224 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0.366 +1,0.356,0.356,1,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.356,0.356,1,0,0,0,0.522,0.551,0.551,0,0,0.121 +1,0.203,0.203,1,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0584 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.175,0.175,0.2,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.174,0.174,0,0.5,0,0,0.257,0.523,0.523,0.533,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.505,0,0.366 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.63,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.582,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.302,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.302,0,0 +0.667,0.17,0.17,0,0.4,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.17 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.238 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.192 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.129 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.785 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.66 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.133 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.16 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.16 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.169 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.15 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0301 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0 +0.333,0.309,0.309,0.3,0,0,0,0.42,0.558,0.558,0,0,0 +0.333,0.309,0.309,1,0,0,0,0.42,0.558,0.558,0,0,0 +0.667,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,1,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0.7,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.366 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.333,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +0.667,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.253 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.158 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0632 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.16 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.171 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.137 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0.5,0,0,0.261,0.523,0.523,0.402,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.5,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.44,0,0.244 +0.667,0.291,0.291,0,1,0,0,0.263,0.581,0.581,0.315,0,0 +0.667,0.291,0.291,0,0.9,0,0,0.263,0.581,0.581,0.402,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.467,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.364,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.418,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.467,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.237,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.475,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,1,0,0.263,0.601,0.601,0,0.532,0 +0.667,0.271,0.271,0,0,1,0,0.263,0.601,0.601,0,0.258,0.122 +0.667,0.271,0.271,0,0,1,0,0.263,0.601,0.601,0,0.322,0 +0.667,0.269,0.269,0,0,1,0,0.293,0.601,0.601,0,0.197,0 +0.667,0.269,0.269,0,0,0.2,0.1,0.293,0.601,0.601,0,0.0987,0.122 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0,0.244 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0.382,0.122 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0.21,0 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0.223,0 +0.667,0.269,0.269,0,0,0,0.1,0.315,0.591,0.591,0,0.665,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.361,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.309,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.373,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.309,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.244 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.258,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.309,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.528,0 +0.667,0.274,0.274,0.3,0,0,0,0.323,0.611,0.611,0,0.541,0 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.7,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.327 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.171 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.341 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0341 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0542 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.232 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.366 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.13 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.2,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0.266,0,0 +1,0.0798,0.0798,0,1,0,0,0.305,0.474,0.474,0.505,0,0 +1,0.236,0.236,0,1,0,0,0.404,0.522,0.522,0.245,0,0.327 +1,0.236,0.236,0,1,0.5,0,0.404,0.522,0.522,0.245,0.0386,0.0327 +1,0.236,0.236,0,1,1,0,0.404,0.522,0.522,0.462,0,0 +1,0.236,0.236,0,1,1,0,0.404,0.522,0.522,0,0.296,0 +1,0.236,0.236,0.3,0.9,0.3,0,0.404,0.522,0.522,0,0.348,0.154 +1,0.236,0.236,1,0,0,1,0.404,0.522,0.522,0,0.455,0.0615 +1,0.417,0.417,0.2,0,0,1,0.521,0.624,0.624,0,0.197,0 +1,0.417,0.417,0,0,0,1,0.521,0.624,0.624,0,0.21,0 +0.667,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.421,0 +0.667,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0.7,0.433,0.571,0.571,0,0.283,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0.288,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0.167,0 +0.667,0.301,0.301,0.3,0,0,0,0.337,0.581,0.581,0,0.425,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0.446,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0.7,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0.3,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.2,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.8,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.7,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0.3,0,0,0,0.293,0.601,0.601,0,0,0.122 +1,0.269,0.269,1,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,1,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0.7,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0.5,0,0.323,0.611,0.611,0,0.0129,0.122 +0.667,0.274,0.274,0,0,1,0,0.323,0.611,0.611,0,0.348,0 +0.667,0.274,0.274,0,0,1,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0.3,0,0.323,0.611,0.611,0,0.309,0 +0.667,0.274,0.274,0,0,0,1,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0.361,0 +0.667,0.294,0.294,0,0,0,0.8,0.374,0.631,0.631,0,0.369,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0.275,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0.172,0 +0.667,0.294,0.294,0.3,0,0,0,0.374,0.631,0.631,0,0,0.154 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0.0617 +0.667,0.35,0.35,0.2,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.255 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.177 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.279 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.308 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.164 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.31 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0.262 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,1,0,0.5,0,0.331,0.493,0.493,0,0.0601,0.167 +1,0.143,0.143,1,0,1,0,0.331,0.493,0.493,0,0.335,0.234 +1,0.172,0.172,1,0,1,0,0.346,0.518,0.518,0,0.446,0 +1,0.172,0.172,0.7,0,0.3,0,0.346,0.518,0.518,0,0.137,0 +1,0.172,0.172,0,0,0,1,0.346,0.518,0.518,0,0.408,0 +1,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.0987,0.225 +1,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.172,0 +1,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.708,0 +1,0.427,0.427,0,0,0,1,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0.7,0.377,0.639,0.639,0,0,0.17 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.34 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.125 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.18 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.488 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.244 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.255 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.233 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.61 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.196 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.488 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0.353,0,0 +0.667,0.453,0.453,0,1,0,0,0.552,0.68,0.68,0.304,0,0.244 +0.667,0.453,0.453,0,1,0,0,0.552,0.68,0.68,0.19,0,0 +0.667,0.453,0.453,0,1,0,0,0.552,0.68,0.68,0.19,0,0.122 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.37,0,0.122 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,0.9,0,0,0.743,0.743,0.743,0.745,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.473,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.315,0,0.366 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.478,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.391,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.488 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.634 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.0353 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.517 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.726 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.346 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.138 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.156 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.212 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0354 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.342 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.163 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.098 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.416 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.347 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,1,0,0.552,0.68,0.68,0,0.0601,0.234 +0.667,0.453,0.453,0,0,1,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.453,0.453,0,0,1,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.569,0.569,0,0,1,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0.2,0.1,0.581,0.65,0.65,0,0,0.149 +0.667,0.569,0.569,0,0,0,1,0.581,0.65,0.65,0,0,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0,0.457 +1,0.905,0.905,0,0,0,0.6,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.211 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.137 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.172 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.348 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0348 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0887 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.167 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.1 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.962 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0704 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.54 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0696 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0.163 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0,0.0651 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.7,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.178 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.126 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.551 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.322 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0.5,0,0,0.374,0.631,0.631,0.571,0,0.168 +0.667,0.294,0.294,0,1,0,0,0.374,0.631,0.631,0.429,0,0 +0.667,0.294,0.294,0,1,0,0,0.374,0.631,0.631,0.446,0,0 +0.667,0.35,0.35,0,1,0,0,0.478,0.67,0.67,0.402,0,0 +0.667,0.35,0.35,0,0.9,0,0,0.478,0.67,0.67,0.323,0,0.401 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.323,0,0.338 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.462,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.44,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.451,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.181 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0.5,0,0,0.743,0.743,0.743,0.342,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.478,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.609,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.576,0,0 +1,0.829,0.829,0,0.9,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.149 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.29 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.357 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.087 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.029 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0.7,0,0,0,0.305,0.464,0.464,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.352,0.462,0.462,0,0,0.197 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.331 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0662 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.17 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.346 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.366 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.33 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.132 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.161 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0321 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.249 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.7,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.107 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.333,0.162,0.162,0.8,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.162,0.162,0.7,0,0,0,0.29,0.538,0.538,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.523 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.19 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.488 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.61 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.337 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0337 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.175 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.035 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.17,0.17,0.2,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.732 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.61 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0.5,0,0.788,0.698,0.698,0,0.0858,0 +1,0.905,0.905,0,0,1,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,1,0,0.788,0.698,0.698,0,0.678,0 +1,0.905,0.905,0,0,0.3,0,0.788,0.698,0.698,0,0.421,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,1,0.765,0.669,0.669,0,0.356,0 +1,0.821,0.821,0,0,0,1,0.765,0.669,0.669,0,0.283,0.122 +1,0.821,0.821,0,0,0,1,0.765,0.669,0.669,0,0.395,0 +1,0.564,0.564,0,0,0,0.2,0.596,0.601,0.601,0,0.258,0.132 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.0987,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.0987,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.309,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.309,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.485,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.506,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.0601,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.455,0.122 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.339,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.464,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.0987,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.382,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0.468,0.248 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0.283,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0.7,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.168 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.412 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.202 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.403 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.127 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.179 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.173 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.173 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.338 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.338 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.101 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.156 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0625 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.253 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.073,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.296,0 +0.333,0.16,0.16,0,0,0.8,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0.5,0.275,0.533,0.533,0,0.541,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.395,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.506,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.618,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.0258,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,1,0.286,0.528,0.528,0,0.618,0 +0.333,0.159,0.159,0,0,0,0.6,0.286,0.528,0.528,0,0.361,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.451,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.536,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.0258,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.283,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.296,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.361,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.296,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.309,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.395,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.361,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.283,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0.5,0,0,0.368,0.568,0.568,0.342,0.322,0 +0.333,0.2,0.2,0,1,0,0,0.368,0.568,0.568,0.402,0.163,0.488 +0.333,0.2,0.2,0,1,0,0,0.368,0.568,0.568,0.495,0,0.122 +0.667,0.35,0.35,0,1,0,0,0.478,0.67,0.67,0.75,0,0 +0.667,0.35,0.35,0,0.9,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.413,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.522,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.283,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.19,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.19,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.44,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.386,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.356,0.256 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.27,0.185 +1,0.829,0.829,0,0,0.8,0,0.743,0.743,0.743,0,0.369,0 +1,0.905,0.905,0,0,0,0.5,0.788,0.698,0.698,0,0.0601,0 +1,0.905,0.905,0,0,0,0.9,0.788,0.698,0.698,0,0.124,0.488 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.585 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.136 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0.3,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0.2,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.257 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.253 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.531 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0661 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.304 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0.5,0,0,0.264,0.528,0.528,0.44,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.435,0,0.366 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.451,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.353,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.193,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.193,0,0.122 +0.333,0.16,0.16,0,0.4,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.3,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0.2,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.212 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.137 +1,0.905,0.905,0,0,0.5,0,0.788,0.698,0.698,0,0.309,0.591 +1,0.905,0.905,0,0,0.9,0,0.788,0.698,0.698,0,0.283,0.122 +1,0.905,0.905,0,0,0,0.4,0.788,0.698,0.698,0,0.236,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.309,0.169 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.0601,0.257 +1,0.821,0.821,0,0,0,0.4,0.765,0.669,0.669,0,0.223,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.412,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.601,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.464,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.227,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.481,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.296,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.369,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.249,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.283,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.339 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.339 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0678 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.125 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.667,0.236,0.236,0.8,0,0,0,0.404,0.522,0.522,0,0,0.317 +0.667,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0.7,0,0,0,0.404,0.522,0.522,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.61 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,1,0,0.5,0,0.323,0.611,0.611,0,0.249,0 +0.667,0.274,0.274,1,0,1,0,0.323,0.611,0.611,0,0,0.244 +0.667,0.294,0.294,0.2,0,1,0,0.374,0.631,0.631,0,0.382,0.244 +0.667,0.294,0.294,0,0,1,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0.7,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0.6,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,1,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0.6,0.478,0.67,0.67,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.241 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.319 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.372 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.154 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.349 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.343 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0343 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.395 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.488 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.338 +0.667,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.0338 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.2,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.159,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.369,0 +0.333,0.16,0.16,0,0,0.8,0,0.261,0.533,0.533,0,0.0386,0 +0.333,0.16,0.16,0,0,0,0.5,0.261,0.533,0.533,0,0.309,0 +0.333,0.16,0.16,0,0,0,1,0.261,0.533,0.533,0,0.335,0 +0.333,0.16,0.16,0,0,0,1,0.261,0.533,0.533,0,0.485,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0.7,0.275,0.533,0.533,0,0.21,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.322,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.296,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.283,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.185,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.159,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.0601,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.19 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +1,0.655,0.655,0,0.5,0,0,0.699,0.788,0.788,0.288,0,0.122 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.511,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.37,0,0.488 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.603,0,0.61 +1,0.829,0.829,0,0.9,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.266,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.375,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.413,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.489,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.338 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0.3,0,0,0,0.305,0.474,0.474,0,0,0.161 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0.0644 +1,0.33,0.33,0.2,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.266 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.0333 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.128 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.325 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0325 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.174 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.14 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.109 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.465 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0.3,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,1,0,0,0,0.286,0.528,0.528,0,0,0 +1,0.274,0.274,0.2,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.366 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.122 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.122 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0.3,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0.154 +1,0.417,0.417,0.7,0,0,0,0.433,0.713,0.713,0,0,0.61 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0.5,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.321,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.505,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.375,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.905,0.905,0,0.4,0,0,0.788,0.698,0.698,0.364,0,0.555 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.484,0,0.0481 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.359,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.571,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.228,0,0.292 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.457,0,0.136 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.326,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.446,0,0.0799 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.188,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.188,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.315,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.304,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.652,0,0.244 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.495,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.424,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.522,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.478,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.332,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.413,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.264,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.264,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.2,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.337 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.101 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.7,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.854 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0.3,0,0.5,0,0.699,0.788,0.788,0,0.236,0 +1,0.655,0.655,1,0,1,0,0.699,0.788,0.788,0,0.412,0.122 +1,0.829,0.829,1,0,1,0,0.743,0.743,0.743,0,0.425,0 +1,0.829,0.829,0.7,0,1,0,0.743,0.743,0.743,0,0.85,0 +1,0.829,0.829,0,0,0.7,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0.6,0.743,0.743,0.743,0,0.545,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0.309,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0.244 +1,0.905,0.905,0,0,0,0.2,0.788,0.698,0.698,0,0.481,0.366 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.481,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.618,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.373,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.197,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.322,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.361,0.488 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.481,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.112,0.122 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.348,0 +1,0.51,0.51,0.3,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0.122 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.249,0.249,1,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,1,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,1,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,0.2,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.295,0.295,0,0.5,0,0,0.433,0.571,0.571,0.636,0,0 +0.667,0.295,0.295,0,1,0,0,0.433,0.571,0.571,0.364,0,0 +0.667,0.295,0.295,0,1,0,0,0.433,0.571,0.571,0.429,0,0 +0.667,0.301,0.301,0,1,0,0,0.337,0.581,0.581,0.484,0,0 +0.667,0.301,0.301,0,0.9,0,0,0.337,0.581,0.581,0.234,0,0.488 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0.234,0,0.366 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.122 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.244 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0.5,0,0.293,0.601,0.601,0,0.369,0.122 +0.667,0.269,0.269,0,0,1,0,0.293,0.601,0.601,0,0,0 +1,0.378,0.378,0,0,1,0,0.311,0.669,0.669,0,0.459,0 +1,0.378,0.378,0,0,0.3,0,0.311,0.669,0.669,0,0.369,0 +1,0.378,0.378,0,0,0,1,0.311,0.669,0.669,0,0.73,0 +1,0.379,0.379,0,0,0,0.4,0.344,0.654,0.654,0,0.584,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0.433,0.244 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0.309,0.122 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0.296,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0.244 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.366 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.408,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.223,0 +0.333,0.309,0.309,0,0,1,0,0.42,0.558,0.558,0,0.249,0.122 +0.333,0.309,0.309,0,0,1,0,0.42,0.558,0.558,0,0.0386,0 +0.333,0.309,0.309,0,0,0.2,0.1,0.42,0.558,0.558,0,0.223,0.244 +0.333,0.309,0.309,0,0,0,1,0.42,0.558,0.558,0,0,0 +0.333,0.335,0.335,0,0,0,0.3,0.434,0.543,0.543,0,0.21,0 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0.296,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.15 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.336 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0672 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.172 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.294 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.61 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.488 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0.3,0,0,0,0.374,0.631,0.631,0,0,0.532 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0.299 +1,0.417,0.417,0.2,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.3,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.655,0.655,1,0.5,0,0,0.699,0.788,0.788,0.413,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.429,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.658,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.516,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,1,0.4,0,0,0.743,0.743,0.743,0.353,0,0 +1,0.829,0.829,0.7,0,0,0,0.743,0.743,0.743,0.457,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.451,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.457,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.353,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.418,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.397,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.418,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.244 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.156 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.127 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.8,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0.2,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.333,0.2,0.2,0.8,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,1,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0.2,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.174 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.154 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.157 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.0629 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.167 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.343 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.137 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.522,0,0.212 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.277,0,0 +0.333,0.172,0.172,0,1,0,0,0.346,0.518,0.518,0.234,0,0 +0.333,0.172,0.172,0.3,1,0,0,0.346,0.518,0.518,0.234,0,0 +0.333,0.172,0.172,1,1,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,1,0.4,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0.2,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.138 +1,0.501,0.501,0.3,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0.462,0,0 +1,0.501,0.501,1,1,0,0,0.588,0.773,0.773,0.397,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.44,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.348,0,0 +1,0.655,0.655,0.2,0.4,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.366 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.488 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.249,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.481,0 +1,0.0798,0.0798,0,0,1,0,0.305,0.474,0.474,0,0.481,0 +1,0.0798,0.0798,0,0,1,0,0.305,0.474,0.474,0,0.348,0 +1,0.0798,0.0798,0,0,0.7,0,0.305,0.474,0.474,0,0.296,0 +1,0.11,0.11,0,0,0,0.6,0.352,0.482,0.482,0,0.236,0.203 +1,0.11,0.11,0,0,0,1,0.352,0.482,0.482,0,0.369,0 +1,0.11,0.11,0,0,0,1,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,1,0.404,0.522,0.522,0,0.112,0.133 +1,0.236,0.236,0,0,0,0.6,0.404,0.522,0.522,0,0.185,0.133 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0.176,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0.258,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0.258,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0.348,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.309,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.468,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.223,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.137,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.0987,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.348,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.618,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.0386,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.519,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.21,0.122 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.69,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.486,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.164 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.168 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.168 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.263 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.172 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0688 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.105 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.244 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.366 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0.8,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.655,0.655,1,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0.7,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0.5,0,0.743,0.743,0.743,0,0.249,0.244 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.395,0.122 +1,0.569,0.569,0,0,1,0,0.581,0.65,0.65,0,0.236,0 +1,0.569,0.569,0,0,1,0,0.581,0.65,0.65,0,0.296,0 +1,0.569,0.569,0,0,0.7,0,0.581,0.65,0.65,0,0,0 +1,0.62,0.62,0,0,0,0.6,0.611,0.621,0.621,0,0.283,0 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0.348,0.488 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0,0.122 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0.506,0 +1,0.62,0.62,0,0,0,0.6,0.611,0.621,0.621,0,0.249,0.122 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.073,0.353 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.0858,0.212 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.476,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.155,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.309,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.249,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.309,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.296,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.168 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.168 +1,0.236,0.236,0.8,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.417,0.417,1,0,0,0,0.521,0.624,0.624,0,0,0.264 +1,0.417,0.417,0.7,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0658 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0987 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.244 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.732 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.244 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0.3,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.7,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.488 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.571,0,0 +1,0.905,0.905,0,1,0,0,0.788,0.698,0.698,0.5,0,0.122 +1,0.821,0.821,0,1,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,1,0,0,0.765,0.669,0.669,0.5,0,0 +1,0.821,0.821,0,1,0,0,0.765,0.669,0.669,0.554,0,0.244 +1,0.821,0.821,0,0.4,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.315,0,0.169 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.424,0,0.19 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0.217,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0.217,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0.342,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.354 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0708 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.159 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.323 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.647 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.127 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.372 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.176 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.246 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.276 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0694 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.139 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.412 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.278 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.244 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0.8,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.7,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0.5,0,0.588,0.773,0.773,0,0.283,0 +1,0.501,0.501,0,0,0.9,0,0.588,0.773,0.773,0,0.361,0.122 +0.667,0.35,0.35,0,0,0,0.4,0.478,0.67,0.67,0,0.0858,0 +0.667,0.35,0.35,0,0,0,1,0.478,0.67,0.67,0,0.249,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.575,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.391,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.27,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.223,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.309,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.395,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.366 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.488 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.139 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.142 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.199 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0994 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.122 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.244 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.202 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.136 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.102 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +1,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +1,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +1,0.269,0.269,0,0,0.5,0,0.315,0.591,0.591,0,0.0258,0.244 +0.667,0.159,0.159,0,0,0.9,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0.4,0.315,0.591,0.591,0,0.283,0 +0.667,0.269,0.269,0,0,0,1,0.315,0.591,0.591,0,0.408,0 +0.667,0.269,0.269,0,0,0,1,0.315,0.591,0.591,0,0,0 +1,0.387,0.387,0,0,0,0.4,0.355,0.684,0.684,0,0.504,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.457,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.309,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.0601,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.0386,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.197,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.0386,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.309,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.258,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.236,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.483,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.582,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.369,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.44,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.375,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.337,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0.9,0.5,0,0.743,0.743,0.743,0,0.0386,0 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.506,0 +1,0.829,0.829,0,0,0.3,0,0.743,0.743,0.743,0,0.382,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0.345,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.135,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.309,0.122 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0.2,0.788,0.698,0.698,0,0.309,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.348,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.545,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.369,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.545,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.0386,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.5,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.268,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.421,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.691,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.322,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.258,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.361,0.244 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.309,0.122 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0296 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.118 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0.8,0,0,0,0.331,0.493,0.493,0,0,0.344 +0.667,0.143,0.143,0.7,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.165 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0992 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.238 +0.333,0.172,0.172,0.8,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0.7,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.321 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.304 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.283 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0668 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.356 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.278 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.164 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.263 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.286 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.347 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.455 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.0706 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.114 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.297 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.28 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.198 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.171 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0683 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.467 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.069 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0.8,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0.7,0,0.5,0,0.374,0.631,0.631,0,0.309,0 +0.667,0.294,0.294,0,0,0.9,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0.4,0.374,0.631,0.631,0,0.343,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0.361,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0.258,0 +0.667,0.35,0.35,0,0,0,1,0.478,0.67,0.67,0,0.494,0 +0.667,0.35,0.35,0,0,0,0.8,0.478,0.67,0.67,0,0.481,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.0386,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.283,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.309,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.488 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.177 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.476 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0354 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.301 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.189 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.655 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.344 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.347 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0.478,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0.473,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0.516,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0.549,0,0 +0.667,0.172,0.172,0,0.4,0,0,0.346,0.518,0.518,0.353,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0.7,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.543,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.38,0,0 +0.667,0.569,0.569,0,1,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,1,0,0,0.581,0.65,0.65,0.397,0,0 +0.667,0.569,0.569,0,1,0,0,0.581,0.65,0.65,0.375,0,0.244 +0.667,0.569,0.569,0,0.4,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0887 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0647 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.171 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.274 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0629 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0944 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.132 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.492 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.161 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0.7,0,0.337,0.58,0.58,0,0.159,0 +1,0.452,0.452,0,0,1,0,0.376,0.637,0.637,0,0.644,0.0659 +1,0.452,0.452,0,0,1,0,0.376,0.637,0.637,0,0,0.264 +1,0.452,0.452,0,0,1,0,0.376,0.637,0.637,0,0.309,0 +1,0.456,0.456,0,0,0.5,0,0.254,0.637,0.637,0,0.395,0 +1,0.456,0.456,0,0,0,0.8,0.254,0.637,0.637,0,0.592,0.122 +1,0.456,0.456,0,0,0,1,0.254,0.637,0.637,0,0.468,0.229 +1,0.456,0.456,0,0,0,1,0.254,0.637,0.637,0,0.275,0.155 +1,0.456,0.456,0,0,0,1,0.254,0.637,0.637,0,0.27,0.122 +0.667,0.321,0.321,0,0,0,1,0.255,0.58,0.58,0,0.27,0.366 +0.667,0.312,0.312,0,0,0,1,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0.4,0.263,0.58,0.58,0,0.421,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.468,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.073,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.433,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0685 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.24 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.365 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.157 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.244 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0.5,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.61 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0.4,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0692 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.33 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.263 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.35 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.244 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.2,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.249,0 +1,0.0495,0.0495,0,0,0.2,0.1,0.258,0.465,0.465,0,0.369,0 +1,0.147,0.147,0,0,0,1,0.33,0.493,0.493,0,0,0.069 +1,0.147,0.147,0,0,0,0.4,0.33,0.493,0.493,0,0.335,0.345 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0.309,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,1,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,1,0,0,0,0.52,0.622,0.622,0,0,0.353 +0.667,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0.0706 +0.667,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0.0652 +0.667,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0.228 +0.667,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0.2,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.221 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0671 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.268 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0704 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.211 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0588 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0294 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.224 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0.142 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.063 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0.158 +0.667,0.289,0.289,0.6,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.244 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +1,0.946,0.946,0,0.2,0,0,0.697,0.785,0.785,0.315,0,0.366 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.435,0,0.182 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.63,0,0.121 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.326,0,0.193 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0.5,0,0,0.741,0.741,0.741,0.315,0,0.122 +1,0.919,0.919,0,0.2,0,0,0.741,0.741,0.741,0.397,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.592,0,0.054 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.31,0,0.149 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,1,0,0,0.785,0.696,0.696,0.19,0,0 +1,0.747,0.747,0,0.5,0,0,0.785,0.696,0.696,0.19,0,0.282 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.489,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.484,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.315,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.461 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0677 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.838 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.189 +0.667,0.175,0.175,0.3,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.667,0.292,0.292,0.3,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.488 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.168 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0671 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0.5,0,0.255,0.58,0.58,0,0.249,0 +0.667,0.321,0.321,0,0,1,0,0.255,0.58,0.58,0,0.348,0 +0.667,0.321,0.321,0,0,1,0,0.255,0.58,0.58,0,0.361,0 +0.667,0.321,0.321,0.3,0,0.3,0,0.255,0.58,0.58,0,0.0858,0 +0.667,0.321,0.321,1,0,0,1,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,1,0,0,0.5,0.263,0.58,0.58,0,0.283,0 +0.667,0.312,0.312,1,0,0,0,0.263,0.58,0.58,0,0.361,0 +0.667,0.312,0.312,1,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0.6,0,0,0,0.263,0.58,0.58,0,0.0386,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,1,0,0.27,0.59,0.59,0,0.27,0 +0.667,0.3,0.3,0,0,0.4,0,0.27,0.59,0.59,0,0.0258,0 +0.667,0.3,0.3,0,0,0,0.9,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0.27,0 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0.433,0 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0.7,0.263,0.6,0.6,0,0.21,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.236,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.446,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.506,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.249,0 +0.667,0.289,0.289,0.3,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0.9,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0858 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.244 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.315 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.386,0,0.159 +0.667,0.647,0.647,0,1,0,0,0.55,0.679,0.679,0.533,0,0.186 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.5,0,0.122 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.321,0,0.144 +0.667,0.629,0.629,0,0.7,0,0,0.58,0.649,0.649,0.413,0,0 +0.667,0.629,0.629,0.3,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0.244 +0.667,0.515,0.515,1,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,1,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,1,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0.9,0,0,0,0.763,0.667,0.667,0,0,0.25 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.224 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.556 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.126 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.126 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.189 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0.7,0,0.305,0.473,0.473,0,0.21,0 +1,0.0816,0.0816,0,0,0.7,0,0.305,0.473,0.473,0,0,0.122 +1,0.0816,0.0816,0,0,0,0.6,0.305,0.473,0.473,0,0.618,0.244 +1,0.0816,0.0816,0,0,0,1,0.305,0.473,0.473,0,0.185,0.122 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0.704,0 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0.395,0 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0.249,0 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0,0.6,0.403,0.521,0.521,0,0.605,0 +1,0.245,0.245,0.6,0,0,0,0.403,0.521,0.521,0,0.0987,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.132 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0698 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.349 +0.667,0.184,0.184,0.6,0,0,0,0.297,0.523,0.523,0,0,0.14 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.122 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.122 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0662 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.321 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0643 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.193 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.645 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.465 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0988 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.103 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.333,0.194,0.194,0,0,0.7,0,0.29,0.537,0.537,0,0.0601,0 +0.333,0.237,0.237,0,0,1,0,0.316,0.547,0.547,0,0,0.489 +0.333,0.237,0.237,1,0,1,0,0.316,0.547,0.547,0,0,0.214 +0.667,0.425,0.425,1,0,1,0,0.373,0.629,0.629,0,0,0 +1,0.612,0.612,1,0,0.5,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0.8,0.431,0.711,0.711,0,0,0.244 +1,0.612,0.612,0.9,0,0,1,0.431,0.711,0.711,0,0,0.214 +1,0.804,0.804,0,0,0,1,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0.3,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0.2,0,0,0.586,0.77,0.77,0.342,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.56,0,0.3 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.364,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.565,0,0 +1,0.946,0.946,0,0.5,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.066 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.066 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.244 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.245 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.349 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.31 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.259 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0646 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.194 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.24 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.119 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0.9,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.488 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.122 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.235 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.445 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.211 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0327 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.327 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0.2,0,0,0.297,0.523,0.523,0.37,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.457,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.429,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.397,0,0 +0.333,0.185,0.185,0,0.5,0,0,0.257,0.523,0.523,0.549,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.467,0,0.176 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0696 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.104 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0.2,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0.2,0,0,0.373,0.629,0.629,0.353,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.484,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.386,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.293,0,0.244 +0.667,0.553,0.553,0,0.5,0,0,0.477,0.669,0.669,0.446,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.451,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.488 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.226,0,0 +1,0.946,0.946,0,0.7,0,0,0.697,0.785,0.785,0.226,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.549,0,0.117 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.462,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.538,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.533,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.207,0,0.502 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.207,0,0.672 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.61 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.699 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.366 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.366 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.242 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.276 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0678 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0339 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.231 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.132 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0.6,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0.2,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,1,0,0.26,0.532,0.532,0,0.21,0 +0.333,0.171,0.171,0,0,0.2,0.1,0.26,0.532,0.532,0,0.421,0 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0.532,0 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0.283,0.122 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0.5,0.275,0.532,0.532,0,0.678,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.283,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.0386,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.459,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.309,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.433,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.0515,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.258,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.185,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.408,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.0987,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0.433,0 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0.223,0 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0.545,0.122 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0.618,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.244 +0.667,0.553,0.553,0.5,0,0,0,0.477,0.669,0.669,0,0.506,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.369,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.249,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.223,0.244 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.0601,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.0386,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.0601,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.395,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.166,0,0.244 +1,0.946,0.946,0,0.7,0,0,0.697,0.785,0.785,0.166,0.0386,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.348,0.27,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.348,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.511,0.159,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.446,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.426 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.333 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0671 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0335 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.207,0,0 +0.667,0.0495,0.0495,1,0.7,0,0,0.258,0.465,0.465,0.207,0,0 +0.667,0.0495,0.0495,1,1,0,0,0.258,0.465,0.465,0.37,0,0 +0.667,0.184,0.184,1,1,0,0,0.297,0.523,0.523,0.457,0,0 +0.667,0.184,0.184,1,1,0,0,0.297,0.523,0.523,0.424,0,0 +0.667,0.184,0.184,1,1,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.61 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.312,0.312,0.8,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,1,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0.2,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.069 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.172 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.152 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0305 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.425,0.425,0.5,0,0,0,0.373,0.629,0.629,0,0,0.223 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0.398 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0.4,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0.2,0,0,0.477,0.669,0.669,0.337,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.375,0,0.244 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.418,0,0.122 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.375,0,0 +1,0.946,0.946,0,0.5,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.126 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0874 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0291 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.366 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.244 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.624 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.343 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.172 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.178 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.161 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.332 +0.333,0.185,0.185,0.3,0,0,0,0.257,0.523,0.523,0,0,0.133 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0.488 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,1,0,1,0,0.264,0.528,0.528,0,0.429,0 +0.333,0.175,0.175,0.2,0,1,0,0.264,0.528,0.528,0,0.0258,0 +0.333,0.175,0.175,0,0,0.8,0,0.264,0.528,0.528,0,0.0987,0 +0.333,0.175,0.175,0,0,0,0.5,0.264,0.528,0.528,0,0.361,0 +0.333,0.175,0.175,0,0,0,1,0.264,0.528,0.528,0,0.468,0.122 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,1,0.263,0.6,0.6,0,0.0987,0 +0.667,0.292,0.292,0,0,0,1,0.263,0.6,0.6,0,0.159,0 +0.667,0.292,0.292,0,0,0,1,0.263,0.6,0.6,0,0.335,0 +0.667,0.292,0.292,0,0,0,0.7,0.263,0.6,0.6,0,0.249,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.373,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.468,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.322,0.366 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.258,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.395,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.386,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.296,0.122 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.0258,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.361,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.488 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,0.3,0,0,0,0.316,0.547,0.547,0,0,0.244 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +1,0.553,0.553,0.6,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.488 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.135 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.165 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.165 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.122 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.186 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.45 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.206 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.218 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0.625,0,0.122 +0.667,0.338,0.338,0,1,0,0,0.322,0.609,0.609,0.473,0,0 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0.543,0,0.165 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0.429,0,0.352 +0.667,0.425,0.425,0,0.7,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0.527,0,0.122 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0.527,0,0.0909 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.0303 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.435,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.364,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.326,0,0 +1,0.553,0.553,0.3,0,0,0,0.477,0.669,0.669,0,0,0.732 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0.9,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.556 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.156 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0624 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0905 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0678 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.229 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.342 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0691 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.346 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0593 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.119 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.233 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.266 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0.6,0,0,0,0.345,0.518,0.518,0,0,0.218 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.237 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.47 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.227 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0.242,0,0.0972 +0.667,0.3,0.3,0,0.7,0,0,0.27,0.59,0.59,0.242,0,0.122 +0.667,0.3,0.3,0,1,0,0,0.27,0.59,0.59,0.587,0,0 +0.667,0.292,0.292,0,1,0,0,0.263,0.6,0.6,0.598,0,0.0698 +0.667,0.292,0.292,0,1,0,0,0.263,0.6,0.6,0.37,0,0.349 +0.667,0.292,0.292,0,1,0,0,0.263,0.6,0.6,0.364,0,0.0698 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.315,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.475 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.066 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0.6,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.61 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0.277,0,0.122 +0.667,0.647,0.647,0,0.7,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,1,0,0,0.55,0.679,0.679,0.457,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.353,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.625,0,0.122 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.598,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0.6,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.244 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.122 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0.2,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0.2,0,1,0,0.403,0.521,0.521,0,0.223,0 +1,0.245,0.245,0,0,0.2,0.1,0.403,0.521,0.521,0,0.0386,0 +1,0.433,0.433,0,0,0,1,0.52,0.622,0.622,0,0.21,0 +1,0.433,0.433,0,0,0,0.4,0.52,0.622,0.622,0,0.631,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0.296,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0.545,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0.172,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.232 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0695 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.243 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.105 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.315 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.244 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0.2,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.223 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0638 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.582 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0687 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.397 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.244 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.245 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.035 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.226 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0647 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.0643 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.193 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0.9,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0625 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0937 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.482,0.482,1,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,1,0,0,0,0.354,0.681,0.681,0,0,0.122 +1,0.482,0.482,0.9,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.122 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0.8,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.287 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.218 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.307 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.222 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.229 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.277 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.228 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.198 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0.2,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.157 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.366 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,1,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0.2,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.23 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.146 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.191 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0631 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.126 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.225 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.28 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.366 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0.6,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.174 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.473 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.399 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.366 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0673 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.269 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0.6,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.223 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.153 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.0612 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.264 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.172 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.137 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.199 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0.3,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,1,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,0.9,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.366 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.244 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0.467,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0.413,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0.516,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0,0,0 +1,0.482,0.482,0,0.7,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.122 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0.375,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.457,0,0.244 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.228,0,0.244 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.255,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.527,0,0.122 +1,0.946,0.946,0,0.7,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.505,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.429,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.429,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.342,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.478,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.342,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.478,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.549,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.153 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.061 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.189 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.345,0.518,0.518,0,0,0.184 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.244 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.244 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0.8,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0.8,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0.122 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0.122 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.244 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.804,0.804,0,0.5,0,0,0.586,0.77,0.77,0.609,0,0.244 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.712,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.62,0,0.244 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.337,0,0.488 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0.8,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.488 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.366 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.61 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.366 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.493,0.493,0,0.5,0,0,0.652,0.593,0.593,0.234,0,0 +1,0.493,0.493,0,1,0,0,0.652,0.593,0.593,0.332,0,0 +1,0.493,0.493,0,1,0,0,0.652,0.593,0.593,0.489,0,0 +1,0.345,0.345,0,1,0,0,0.521,0.55,0.55,0.38,0,0 +1,0.345,0.345,0,1,0,0,0.521,0.55,0.55,0.495,0,0 +1,0.345,0.345,0,1,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0.8,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.675 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.21 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.216 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.313 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0521 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0681 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.238 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0.2,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.435 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.521 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.224 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.032 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.0623 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.309 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.219 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.153 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.488 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.428 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.102 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0.244 +0.667,0.629,0.629,0.1,0,0,0,0.58,0.649,0.649,0,0,0.122 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.145 +0.667,0.394,0.394,0,0,0.2,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,1,0,0.595,0.6,0.6,0,0.0515,0 +0.667,0.394,0.394,0,0,1,0,0.595,0.6,0.6,0,0.0858,0 +0.667,0.345,0.345,0,0,0.6,0,0.521,0.55,0.55,0,0,0.061 +0.667,0.345,0.345,0,0,0,0.7,0.521,0.55,0.55,0,0.0386,0.0916 +0.667,0.345,0.345,0,0,0,1,0.521,0.55,0.55,0,0.223,0 +0.667,0.345,0.345,0,0,0,1,0.521,0.55,0.55,0,0,0 +0.667,0.345,0.345,0,0,0,1,0.521,0.55,0.55,0,0,0.156 +0.667,0.197,0.197,0,0,0,1,0.389,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,1,0.356,0.488,0.488,0,0,0 +0.667,0.116,0.116,0,0,0,0.5,0.356,0.488,0.488,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.204 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0 +1,0.114,0.114,0.5,0,0,0,0.351,0.481,0.481,0,0,0 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0.0683 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0.205 +1,0.245,0.245,0.7,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.236 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.236 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0665 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0997 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.366 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.231 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.221 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0.7,0,0.29,0.537,0.537,0,0.408,0 +0.333,0.194,0.194,0,0,1,0,0.29,0.537,0.537,0,0.717,0 +0.333,0.194,0.194,0,0,1,0,0.29,0.537,0.537,0,0.27,0 +0.667,0.338,0.338,0,0,0.1,0.2,0.322,0.609,0.609,0,0.519,0 +0.667,0.425,0.425,0,0,0,1,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,1,0.373,0.629,0.629,0,0.249,0 +0.667,0.425,0.425,0,0,0,0.9,0.373,0.629,0.629,0,0.322,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.172,0.279 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.455,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.223,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.0987,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.233 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.133 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.195 +1,0.946,0.946,0.2,0,0,0,0.697,0.785,0.785,0,0,0.13 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0.7,0,0.741,0.741,0.741,0,0.283,0 +1,0.747,0.747,0,0,0.7,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0.6,0.785,0.696,0.696,0,0.494,0 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0.0258,0 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0.545,0.244 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0.348,0.736 +1,0.566,0.566,0,0,0,1,0.763,0.667,0.667,0,0.472,0.441 +1,0.566,0.566,0,0,0,0.6,0.763,0.667,0.667,0,0.498,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0.0129,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0.309,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0.0987,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.558,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.322,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.0858,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.348,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.296,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.21,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.0258,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.408,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.742,0.366 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.425,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0618 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0618 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.235 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.168 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.071 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.142 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.283,0,0.244 +0.333,0.185,0.185,0,0.7,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.342,0,0.122 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.739,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.391,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.299,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0653 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.294 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.305 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0674 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.169 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.144 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.244 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.228 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.155 +0.333,0.301,0.301,1,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,1,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,1,0,0,0,0.367,0.567,0.567,0,0,0.122 +0.333,0.301,0.301,0.2,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.122 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.61 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.122 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.451,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.245 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.0699 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.063 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.063 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.122 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0962 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.224 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.129 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.258 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.194 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0324 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.366 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0662 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0994 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.232 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.232 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.366 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.366 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.423 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.574 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.16 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0657 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0657 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.244 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.122 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.228 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0675 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.338 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0665 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.333 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.225 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0322 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0694 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.222 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.066 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.264 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.163 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0655 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.229 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0958 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.128 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.173 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.356 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.603 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.136 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.244 +0.667,0.647,0.647,0.5,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.333,0.348,0.348,1,0,0,0,0.404,0.572,0.572,0,0,0 +0.333,0.348,0.348,0.1,0,0,0,0.404,0.572,0.572,0,0,0.122 +0.667,0.647,0.647,0,0.2,0,0,0.55,0.679,0.679,0.772,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.625,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.255,0,0.122 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.255,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.629,0.629,0,0.5,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.294 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.44 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.142 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.244 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.488 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.488 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.247 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0353 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0651 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.26 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.206 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.165 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.198 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.118 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.164 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.0328 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.244 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.488 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,0.3,0,0,0,0.316,0.547,0.547,0,0,0.488 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0.366 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0.9,0.5,0,0,0.586,0.77,0.77,0.44,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.408,0,0.122 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.418,0,0.122 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.511,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.177,0,0 +1,0.946,0.946,0,0.2,0,0,0.697,0.785,0.785,0.177,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.429,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.172 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.244 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.188 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.13 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0325 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0.5,0,0.257,0.523,0.523,0,0.309,0 +0.667,0.185,0.185,0,0,1,0,0.257,0.523,0.523,0,0,0 +0.667,0.312,0.312,0,0,1,0,0.263,0.58,0.58,0,0.605,0 +0.667,0.312,0.312,0,0,1,0,0.263,0.58,0.58,0,0.309,0 +0.667,0.312,0.312,0,0,0.7,0,0.263,0.58,0.58,0,0.258,0 +0.667,0.312,0.312,0,0,0,0.6,0.263,0.58,0.58,0,0.236,0 +0.667,0.312,0.312,0,0,0,0.9,0.263,0.58,0.58,0,0.309,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.348,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.275,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.249,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.519,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.408,0.122 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.234 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.284 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0969 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.128 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.2 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.255 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0.3,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0.9,0,0,0,0.58,0.649,0.649,0,0,0.488 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.344 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.343 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.366 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.488 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0686 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.172 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.218 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0312 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.302 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0.5,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,1,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,1,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,1,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0.0568 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0.0568 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,0.9,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.402 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.384 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0.5,0,0,0,0.55,0.679,0.679,0,0,0 +0.333,0.348,0.348,1,0,0,0,0.404,0.572,0.572,0,0,0.122 +0.333,0.348,0.348,1,0,0,0,0.404,0.572,0.572,0,0,0 +0.667,0.647,0.647,0.7,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.224 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.446 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.219 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.234 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0669 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.244 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0941 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.157 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0.2,0,0,0.258,0.465,0.465,0.38,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.402,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.255,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.28,0,0 +0.333,0.184,0.184,0,1,0,0,0.297,0.523,0.523,0.28,0,0 +0.333,0.184,0.184,0,1,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,1,0,0,0.297,0.523,0.523,0.38,0,0 +0.333,0.184,0.184,0,0.1,0,0,0.297,0.523,0.523,0.397,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.391,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.424,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0.2,0,0,0.257,0.523,0.523,0.375,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.223,0,0.244 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0.1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0.2,0,0,0.316,0.547,0.547,0.609,0,0 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.527,0,0.122 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.62,0,0.122 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0,1,0,0,0.367,0.567,0.567,0.516,0,0.244 +0.333,0.301,0.301,0,1,0,0,0.367,0.567,0.567,0.505,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.571,0,0.135 +1,0.804,0.804,0,0.1,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.103 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.214 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.171 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.229 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.342 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.313 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.173 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.139 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0946 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.383 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.064 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0 +1,0.342,0.342,0,0,0.7,0,0.476,0.548,0.548,0,0.382,0 +1,0.342,0.342,0,0,1,0,0.476,0.548,0.548,0,0,0.202 +1,0.342,0.342,0,0,1,0,0.476,0.548,0.548,0,0.249,0 +1,0.342,0.342,0,0,0.1,0.2,0.476,0.548,0.548,0,0.361,0 +1,0.433,0.433,0,0,0,1,0.52,0.622,0.622,0,0.657,0.0603 +1,0.433,0.433,0,0,0,1,0.52,0.622,0.622,0,0,0.0905 +0.667,0.305,0.305,0,0,0,1,0.432,0.57,0.57,0,0.27,0 +0.667,0.305,0.305,0,0,0,1,0.432,0.57,0.57,0,0.361,0.366 +0.667,0.305,0.305,0,0,0,0.4,0.432,0.57,0.57,0,0.335,0 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0.0987,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.494,0.366 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.0987,0.854 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.382,0.122 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.395,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.223,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.309,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.618,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.541,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.618,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.361,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.283,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.309,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.876,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.258,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0.249,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0.309,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0.2,0,0,0.29,0.537,0.537,0.375,0,0 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.304,0,0 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.467,0,0.122 +0.333,0.237,0.237,0.5,1,0,0,0.316,0.547,0.547,0.277,0,0.366 +0.667,0.425,0.425,1,1,0,0,0.373,0.629,0.629,0.277,0,0 +0.667,0.425,0.425,0.1,1,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0.1,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0.2,0,0,0.55,0.679,0.679,0.31,0,0.244 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.337,0,0.105 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.429,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.299,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.549,0,0 +1,0.747,0.747,0,0.1,0,0,0.785,0.696,0.696,0.598,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.516,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.359,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.435,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.348,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0.9,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.122 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.366 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.366 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0.2,0,0,0.697,0.785,0.785,0.359,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0.31,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0.386,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0.299,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,1,0.5,0,0,0.741,0.741,0.741,0.375,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0.359,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.296,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.296,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.391,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.505,0,0.244 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.348,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,1,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0.7,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.186 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.225 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.366 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.241 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.103 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0627 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.125 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.116 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.217,0,0 +0.333,0.181,0.181,0,0.7,0,0,0.26,0.523,0.523,0.217,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0.283,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0.511,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0.489,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,1,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0.6,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.232 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.166 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0.2,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.366 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.13 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.366 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0698 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.227 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.241 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.332 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.24 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.155 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.287 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.176 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.0352 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.168 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0.3,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.183,0.183,0.3,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.244 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.366 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.122 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.732 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.332 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0996 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.169 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0674 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.117 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.138 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.167 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.189 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.236 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.161 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.195 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.244 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0.3,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,1,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,1,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,1,0,0,0,0.405,0.535,0.535,0,0,0.244 +1,0.116,0.116,0.4,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.481 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.317 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.0327 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.294 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.16 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.156 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0312 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0.8,0,0,0,0.419,0.635,0.635,0,0,0.457 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0.0508 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.169 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.0678 +1,1,1,0.9,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.189 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.115 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.366 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.386,0.386,0.3,0,0,0,0.729,0.717,0.717,0,0,0.122 +0.667,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0.25,0,0.61 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.495,0,0.366 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.168,0,0.122 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.168,0,0.122 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.288,0,0 +1,0.116,0.116,0,0.9,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.38,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.418,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.462,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.418,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0.462,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0.5,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.153 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0306 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0.3,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0.3,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.122 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.366 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0.8,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0.8,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0.5,0,0,0.673,0.817,0.817,0.533,0,0.289 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.495,0,0.366 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.413,0,0.244 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.467,0,0 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.258,0,0 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.258,0,0.244 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.299,0,0.366 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.272,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.293,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.44,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.582,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.364,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.257 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.187 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.244 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.134 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.302 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0.337,0,0 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0.484,0,0.122 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0.348,0,0 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0.9,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.164 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0654 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.347 +0.667,0.337,0.337,0.3,0,0,0,0.3,0.692,0.692,0,0,0.0347 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.552 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.278 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.488 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0.5,0,0,0.321,0.597,0.597,0.391,0,0 +0.333,0.204,0.204,0,1,0,0,0.321,0.597,0.597,0.326,0,0 +0.667,0.359,0.359,0,1,0,0,0.384,0.73,0.73,0.337,0,0 +0.667,0.457,0.457,0,1,0,0,0.449,0.755,0.755,0.37,0,0 +0.667,0.457,0.457,0,1,0,0,0.449,0.755,0.755,0.649,0,0 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0.324,0,0 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0.326,0,0 +1,0.661,0.661,0.3,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0.1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.154 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0615 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.335 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.266 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.277 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.031 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.488 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.254 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.345 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.322 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.173 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.18 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.116 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0291 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.169 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.337 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.409 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.198 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.291 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.164 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.164 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.343 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.137 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.333 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.316 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.366 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0.5,0,0,0.58,0.805,0.805,0.505,0,0 +0.667,0.596,0.596,0,1,0,0,0.58,0.805,0.805,0.337,0,0.61 +0.667,0.596,0.596,0,1,0,0,0.58,0.805,0.805,0.484,0,0.366 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.408,0,0 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.312,0,0.244 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.312,0,0.122 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0.5,0,0.711,0.78,0.78,0,0.249,0 +0.667,0.638,0.638,0,0,1,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,1,0,0.711,0.78,0.78,0,0.309,0 +0.667,0.638,0.638,0,0,1,0,0.711,0.78,0.78,0,0.395,0 +0.667,0.638,0.638,0,0,0.9,0,0.711,0.78,0.78,0,0.124,0 +0.667,0.504,0.504,0,0,0,0.4,0.748,0.742,0.742,0,0.309,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0.244 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0.244 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0,0.366 +1,0.554,0.554,0,0,0,0.2,0.965,0.843,0.843,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.341 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0341 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.169 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.339 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.135 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.174 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0348 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.198 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.242 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.256 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.163 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.163 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.166 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0331 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.304 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.237 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.167 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.134 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.232 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.208 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.156 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.182 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.124 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.337 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.172 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.24 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.661 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.328 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.474 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.38 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.33 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.296 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.308 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.278 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.309,0 +1,0.732,0.732,0,0,0.4,0,0.993,0.88,0.88,0,0.309,0.122 +1,0.504,0.504,0,0,0,0.9,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0.0258,0 +1,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0.137,0 +1,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0.122 +1,0.386,0.386,0,0,0,1,0.729,0.717,0.717,0,0.605,0 +1,0.386,0.386,0,0,0,1,0.729,0.717,0.717,0,0.361,0 +1,0.386,0.386,0,0,0,0.7,0.729,0.717,0.717,0,0.511,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.309,0.366 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.212 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.165 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.033 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,1,0,0.279,0.579,0.579,0,0.519,0 +1,0.193,0.193,0,0,1,0,0.279,0.579,0.579,0,0.185,0 +1,0.193,0.193,0,0,0.9,0,0.279,0.579,0.579,0,0.382,0 +1,0.189,0.189,0,0,0,0.4,0.284,0.579,0.579,0,0,0 +1,0.189,0.189,0,0,0,1,0.284,0.579,0.579,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0.244 +1,0.449,0.449,0.8,0,0,1,0.35,0.824,0.824,0,0,0.195 +1,0.449,0.449,1,0,0,0.2,0.35,0.824,0.824,0,0,0.488 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0.244 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0.176 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0.385 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0.244 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0.122 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0.205 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.432,0.432,1,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0.7,0,0,0,0.392,0.843,0.843,0,0,0.177 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.141 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.219 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.488 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.333,0.323,0.323,0.3,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.366,0.366,1,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.366,0.366,1,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.488 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.366 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.167 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.134 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.197 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.23 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.488 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.488 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.168 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.202 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.29 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0272 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0816 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.169 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0676 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.337 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0337 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.167 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.167 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.303 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.366 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0322 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.258 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.332 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.0332 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.608 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0309 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.52 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.122 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.122 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.183 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.355 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.071 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.299 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.283 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.188 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.329 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0329 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.543 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.421 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.328 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.22 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.416 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.137 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.227 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.157 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0945 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.318 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.158 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0316 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.333 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0665 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.177 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.354 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.212 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.343 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.409 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.255 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.209 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.156 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.315 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0327 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.693 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.122 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.117 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.173 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.104 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.508 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.101 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.202 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.257 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.366 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.272 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0.3,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0.7,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0.3,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.342,0.342,1,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0.4,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0.609 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0.3,0,0,0,0.601,0.693,0.693,0,0,0.329 +1,0.351,0.351,1,0,0,0,0.601,0.693,0.693,0,0,0.233 +1,0.444,0.444,0.3,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,1,0,0.3,0.692,0.692,0,0.296,0 +0.667,0.337,0.337,0,0,1,0,0.3,0.692,0.692,0,0.249,0 +0.667,0.337,0.337,0,0,0.9,0,0.3,0.692,0.692,0,0.605,0 +0.333,0.193,0.193,0,0,0,0.4,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,1,0.279,0.579,0.579,0,0.159,0 +0.333,0.193,0.193,0,0,0,1,0.279,0.579,0.579,0,0.249,0.244 +0.333,0.189,0.189,0,0,0,0.9,0.284,0.579,0.579,0,0.309,0.244 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0.309,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.33 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.132 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.176 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.247 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.205 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.127 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.307 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0449 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,1,0,0.937,0.937,0.937,0,0.442,0 +1,0.933,0.933,0,0,1,0,0.937,0.937,0.937,0,0.502,0 +1,0.933,0.933,0,0,1,0,0.937,0.937,0.937,0,0.305,0 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.0386,0 +1,0.732,0.732,0,0,0.4,0,0.993,0.88,0.88,0,0.249,0 +1,0.732,0.732,0,0,0,0.9,0.993,0.88,0.88,0,0.21,0 +1,0.732,0.732,0,0,0,0.7,0.993,0.88,0.88,0,0.0515,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0.0987,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0.433,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0.309,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.137,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.309,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.307 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.156 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0624 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.522,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.842,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.679,0,0 +0.333,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0.201,0,0 +0.333,0.181,0.181,0.3,1,0,0,0.391,0.572,0.572,0.201,0,0 +0.333,0.181,0.181,1,0.4,0,0,0.391,0.572,0.572,0.435,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0.1,0,0,0,0.33,0.579,0.579,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.177,0.177,0.7,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.366 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0.5,0,0,0.449,0.755,0.755,0.473,0,0 +0.667,0.457,0.457,0,1,0,0,0.449,0.755,0.755,0.321,0,0 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,0.8,1,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,1,0,0,0.741,0.974,0.974,0,0,0.366 +1,0.869,0.869,1,0.4,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.366 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +0.667,0.386,0.386,0,0,0.5,0,0.729,0.717,0.717,0,0.223,0 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0,0.122 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0.249,0 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0.0129,0 +1,0.554,0.554,0,0,0.9,0,0.965,0.843,0.843,0,0.395,0 +1,0.342,0.342,0,0,0,0.4,0.636,0.655,0.655,0,0.249,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.27,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.322,0.122 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.21,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.0386,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0,0.122 +1,0.183,0.183,0,0,0,1,0.552,0.605,0.605,0,0.309,0 +1,0.183,0.183,0,0,0,1,0.552,0.605,0.605,0,0.172,0 +1,0.183,0.183,0,0,0,0.9,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.408,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.27,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.545,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.309,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.0601,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.283,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.369,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.0601,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.519,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.296,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.682,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0.0386,0 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0.335,0 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0.0601,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.244 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.15 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.166 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0331 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.732 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.251 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.457,0.457,0.8,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.488 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.933,0.933,0.8,0.5,0,0,0.937,0.937,0.937,0.402,0,0.366 +1,0.933,0.933,0.8,1,0,0,0.937,0.937,0.937,0.31,0,0 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.533,0,0.366 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.375,0,0.244 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.522,0,0 +1,0.933,0.933,0,0.4,0,0,0.937,0.937,0.937,0.261,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.554,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.07 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.128 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.172 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.138 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.204 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.034 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.366 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.218 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.169 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.169 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.327 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0327 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.336 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0336 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.122 +1,0.446,0.446,0,0.5,0,0,0.433,0.824,0.824,0.408,0,0 +1,0.446,0.446,0,1,0,0,0.433,0.824,0.824,0.37,0,0 +1,0.446,0.446,0,1,0,0,0.433,0.824,0.824,0.408,0,0 +1,0.513,0.513,0,1,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,1,0,0,0.447,0.862,0.862,0.571,0,0 +1,0.513,0.513,0,0.4,0,0,0.447,0.862,0.862,0.467,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0.625,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0.342,0,0.122 +1,0.661,0.661,0.8,0,0,0,0.545,0.899,0.899,0.386,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,0.9,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.258 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.288 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0332 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.335 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.356 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.104 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.348 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.244 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.267 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0697 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.279 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.426 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0894 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.225 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0322 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.279 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0.3,0,0,0,0.33,0.579,0.579,0,0,0.119 +0.667,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.419 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.468,0.468,1,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.468,0.468,0.1,0,0,0,0.336,0.806,0.806,0,0,0.177 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.142 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.196 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0652 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.164 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.164 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.334 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.131 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.032 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.288 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0.244 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.352 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0.425,0 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0.549,0.272 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0.408,0 +0.667,0.683,0.683,0,0,0.4,0,0.673,0.817,0.817,0,0.592,0 +0.667,0.683,0.683,0,0,0,0.9,0.673,0.817,0.817,0,0.0386,0.244 +0.667,0.638,0.638,0,0,0,0.7,0.711,0.78,0.78,0,0,0.366 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0.8,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.504,0.504,0.5,0.5,0,0,0.748,0.742,0.742,0.576,0,0 +0.667,0.504,0.504,0,1,0,0,0.748,0.742,0.742,0.451,0,0.366 +0.667,0.504,0.504,0,1,0,0,0.748,0.742,0.742,0.255,0,0 +0.667,0.504,0.504,0,1,1,0,0.748,0.742,0.742,0,0.455,0 +0.667,0.504,0.504,0,1,1,0,0.748,0.742,0.742,0,0.112,0.366 +1,0.732,0.732,0,0.4,1,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0.73,0 +1,0.554,0.554,0,0,0.4,0,0.965,0.843,0.843,0,0.296,0.122 +1,0.554,0.554,0,0,0,0.9,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.459,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.0129,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.481,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.236,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0.236,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0.0386,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0.369,0.488 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.15,0.164 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.137,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.326 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.518 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.25 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.169 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.27 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.312 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.156 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0.3,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0.189 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.237 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.167 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.294 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.24 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.345 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.61 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.596 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0.467,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0.353,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0.429,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0.576,0,0.244 +0.667,0.638,0.638,1,1,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,1,0,0,0.711,0.78,0.78,0,0,0.198 +0.667,0.638,0.638,1,0.5,0,0,0.711,0.78,0.78,0,0,0.172 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.933,0.933,0.1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.332 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.133 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.206 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0.3,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0.3,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.164 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.35 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.035 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.172 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0686 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.488 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0.3,0,0,0,0.449,0.755,0.755,0,0,0.61 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0.5,0,0.741,0.974,0.974,0,0.137,0.17 +1,0.869,0.869,1,0,0.9,0,0.741,0.974,0.974,0,0,0.462 +1,0.869,0.869,0.7,0,0,0.4,0.741,0.974,0.974,0,0.296,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0.249,0 +0.667,0.596,0.596,0,0,0,1,0.58,0.805,0.805,0,0.283,0 +0.667,0.683,0.683,0,0,0,0.9,0.673,0.817,0.817,0,0.618,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.421,0.244 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0.12,0 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0.249,0 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0.309,0.286 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.488 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.528,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.296,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.0386,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.33 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.188 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.171 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.137 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0.276 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0.7,0,0,0,0.487,0.617,0.617,0,0,0.067 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.1 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.159 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.0956 +1,0.444,0.444,0,0.5,0,0,0.657,0.787,0.787,0.386,0,0 +1,0.444,0.444,0,1,0,0,0.657,0.787,0.787,0.565,0,0 +1,0.444,0.444,0,1,0,0,0.657,0.787,0.787,0.364,0,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.413,0,0.274 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.188,0,0 +1,0.47,0.47,0,0.4,0,0,0.475,0.806,0.806,0.188,0,0 +1,0.47,0.47,0,0,1,0,0.475,0.806,0.806,0.239,0.296,0.0707 +1,0.47,0.47,0,0,1,0,0.475,0.806,0.806,0,0.487,0.353 +1,0.47,0.47,0,0,0.9,0,0.475,0.806,0.806,0,0.453,0.106 +1,0.481,0.481,0,0,0,0.4,0.322,0.806,0.806,0,0.416,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0.408,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0.27,0.274 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0.0987,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0,0 +1,0.468,0.468,0,0,0,1,0.336,0.806,0.806,0,0.506,0 +1,0.468,0.468,0,0,0,0.2,0.336,0.806,0.806,0,0.21,0.169 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.682,0.102 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.421,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.369,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.159 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.133,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.369,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.273,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.135,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.412,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.266,0.244 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.366 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.61 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0.244 +1,0.661,0.661,0,0.5,0,0,0.545,0.899,0.899,0.364,0,0.122 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0.478,0,0 +0.333,0.253,0.253,0,1,0,0,0.354,0.61,0.61,0.538,0,0.122 +0.333,0.253,0.253,0,1,0,0,0.354,0.61,0.61,0.413,0,0 +0.333,0.253,0.253,0,1,0,0,0.354,0.61,0.61,0.204,0,0 +0.667,0.457,0.457,0,0.4,0,0,0.449,0.755,0.755,0.204,0,0 +0.667,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0.701,0,0 +0.667,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.488 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.176 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.196 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.147 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.422,0.542,0.542,0,0,0.102 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.267 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.122 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.174 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.349 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0349 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.309,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.223,0 +0.333,0.177,0.177,0,0,0.9,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0.4,0.302,0.591,0.591,0,0.275,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0.618,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0.283,0 +0.333,0.182,0.182,0,0,0,0.9,0.316,0.585,0.585,0,0.399,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.678,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.0515,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.258,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.502,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.425,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.0987,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.61 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.424 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.507 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.228 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.243 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.277 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0627 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.188 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.269 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.0697 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.349 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.0697 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.1 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.125 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0.424,0,0 +0.333,0.178,0.178,0,1,0,0,0.284,0.591,0.591,0.408,0,0 +0.333,0.177,0.177,0,1,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,1,0,0,0.302,0.591,0.591,0.326,0,0 +0.667,0.305,0.305,0,1,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,1,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,1,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.177,0.177,0,0.5,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.61 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0.3,0,0,0,0.58,0.805,0.805,0,0,0.488 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.244 +1,1,1,0.3,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.157 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0314 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.386,0.386,0.3,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.218,0.218,1,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,1,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,1,0,0,0,0.493,0.591,0.591,0,0,0.244 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0.1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.343 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.177 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.248 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.322 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.328 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.263 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.186 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.334 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0667 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.367 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0.3,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.366 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.732 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.488 +1,1,1,0.5,0,0,0,0.881,0.993,0.993,0,0,0.166 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0662 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.348 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.24 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.314 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0.8,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0.5,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.263 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0594 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0594 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.34 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.19 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0.8,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,1,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.667,0.328,0.328,0.5,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.488 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.171 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.205 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0.3,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,1,0,1,0,0.375,0.705,0.705,0,0.369,0 +0.667,0.314,0.314,1,0,1,0,0.375,0.705,0.705,0,0.159,0 +1,0.446,0.446,1,0,0.9,0,0.433,0.824,0.824,0,0,0 +1,0.513,0.513,1,0,0,0.4,0.447,0.862,0.862,0,0.258,0 +1,0.513,0.513,1,0,0,1,0.447,0.862,0.862,0,0.369,0 +1,0.513,0.513,0.4,0,0,1,0.447,0.862,0.862,0,0,0.244 +1,0.513,0.513,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.661,0.661,0,0,0,1,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0.2,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +1,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.366 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.342 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.137 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.189 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.152 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.274 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.17 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.354 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.299 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.258 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.667,0.596,0.596,0,0,1,0,0.58,0.805,0.805,0,0.21,0 +0.667,0.596,0.596,0,0,1,0,0.58,0.805,0.805,0,0,0.257 +1,0.869,0.869,0,0,1,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,1,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0.4,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0.9,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,1,0.881,0.993,0.993,0,0,0.531 +1,1,1,0,0,0,1,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,1,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,1,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.316 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.383 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.675 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.222 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.177 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.0354 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.185 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0.356,0 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0.348,0 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0.262,0.244 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0.4,0,0.284,0.591,0.591,0,0.124,0 +0.667,0.178,0.178,0,0,0,0.9,0.284,0.591,0.591,0,0.618,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0.8,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0.5,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.488 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0.3,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.366 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0.2,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.549,0,0 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.489,0,0 +1,0.732,0.732,0,1,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0.3,1,0,0,0.993,0.88,0.88,0.598,0,0 +1,0.732,0.732,1,1,0,0,0.993,0.88,0.88,0.429,0,0 +1,0.732,0.732,1,0.9,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0.505,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.402,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.435,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.413,0,0.366 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.489,0,0.251 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.674,0,0.179 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.455 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.335 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.067 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.354 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.0354 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.314 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.157 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.0627 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0.3,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0.135 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.403 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.584 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.177 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.35 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.189 +0.333,0.189,0.189,0.3,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0.1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.732 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0.3,0,0,0,0.419,0.635,0.635,0,0,0.488 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.351 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.0351 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.61 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0.5,0,0.993,0.88,0.88,0,0.137,0.244 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.425,0.122 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.142,0 +1,0.732,0.732,0,0,0.4,0,0.993,0.88,0.88,0,0.296,0 +1,0.732,0.732,0,0,0,0.9,0.993,0.88,0.88,0,0.403,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.438,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.296,0.488 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.0386,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0.7,0.965,0.843,0.843,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.219 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.312 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.0624 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.351,0.351,0.8,0,0,0,0.601,0.693,0.693,0,0,0.255 +1,0.351,0.351,0.8,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.175 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.245 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.19 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,1,0,0.302,0.591,0.591,0,0.296,0 +0.333,0.177,0.177,0,0,1,0,0.302,0.591,0.591,0,0.236,0 +0.333,0.177,0.177,0,0,0.9,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0.4,0.316,0.585,0.585,0,0.27,0 +0.333,0.182,0.182,0,0,0,1,0.316,0.585,0.585,0,0.361,0 +0.333,0.182,0.182,0,0,0,1,0.316,0.585,0.585,0,0.167,0 +0.667,0.314,0.314,0,0,0,1,0.375,0.705,0.705,0,0.155,0.143 +0.667,0.314,0.314,0,0,0,1,0.375,0.705,0.705,0,0.283,0 +0.667,0.314,0.314,0,0,0,0.5,0.375,0.705,0.705,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.502,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.451,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.369,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.532,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.296,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0.579,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0.245,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.309,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.309,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.0386,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.249,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.296,0.122 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.258,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.341 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.273 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0632 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.158 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.344 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.147 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.333 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.222 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.535 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.237 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.347 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.518 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.172 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.138 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.444 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0334 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0696 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0.3,0,0.5,0,0.34,0.516,0.516,0,0.0987,0 +1,0.0829,0.0829,1,0,1,0,0.34,0.516,0.516,0,0.223,0 +1,0.251,0.251,1,0,1,0,0.487,0.617,0.617,0,0.605,0 +1,0.251,0.251,1,0,0.4,0,0.487,0.617,0.617,0,0.0386,0.163 +1,0.351,0.351,0,0,0,0.9,0.601,0.693,0.693,0,0,0.163 +1,0.351,0.351,0,0,0,1,0.601,0.693,0.693,0,0.309,0 +1,0.351,0.351,0,0,0,1,0.601,0.693,0.693,0,0.466,0 +1,0.351,0.351,0,0,0,1,0.601,0.693,0.693,0,0.367,0 +1,0.444,0.444,0,0,0,1,0.657,0.787,0.787,0,0.841,0.12 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0.236,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0.421,0.196 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0.359,0.283,0.0654 +1,0.444,0.444,0,1,0,0,0.657,0.787,0.787,0.551,0.236,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.275,0.0386,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.375,0.159,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.299,0,0 +1,0.47,0.47,0,0.9,0,0,0.475,0.806,0.806,0.63,0.631,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0.435,0.0601,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.382,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.172,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.584,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.309,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.236,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.0987,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.283,0.283 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.405 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.519,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.21,0.366 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.567,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.446,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.532,0.244 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.275,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.459,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.27,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.236,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.0858,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.21,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0.0386,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0.223,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.575,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.502,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.197,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.395,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.0386,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.442,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.159,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.296,0.122 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.73,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.309,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.258,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.457,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.148,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.0858,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.421,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.159,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.21,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.296,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.136 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.61 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.488 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.366 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.122 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.348 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.169 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0338 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.289 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0321 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0.172 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0.276 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.33 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.033 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.244 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.122 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.171 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.605 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0,0.195 +1,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0,0.366 +1,0.316,0.316,0.5,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.392 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.0297 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0.3,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,1,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,1,0,0.5,0,0.449,0.755,0.755,0,0.309,0 +1,0.661,0.661,1,0,1,0,0.545,0.899,0.899,0,0.309,0 +1,0.661,0.661,1,0,1,0,0.545,0.899,0.899,0,0.0987,0 +1,0.661,0.661,1,0,1,0,0.545,0.899,0.899,0,0.309,0 +1,0.661,0.661,0.4,0,0.9,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,0,0,0,0.4,0.741,0.974,0.974,0,0.605,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0.395,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0.468,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,0,0,0,0.5,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.488 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.337,0.337,0.3,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.201 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.146 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.24 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0982 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.196 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.488 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.17 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.237 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.488 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.488 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.163 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.0651 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0.0848 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0.478,0,0 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0.359,0,0 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0.402,0,0.166 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0.538,0,0.0331 +1,0.444,0.444,0,0.9,0,0,0.657,0.787,0.787,0.283,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0.3,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0.4,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.488 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.122 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0.3,0,0,0,0.31,0.692,0.692,0.603,0,0.122 +0.667,0.328,0.328,1,1,0,0,0.31,0.692,0.692,0.489,0,0 +0.667,0.316,0.316,0.3,1,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0.3,1,0,0,0.319,0.705,0.705,0.592,0,0 +0.667,0.316,0.316,1,1,0,0,0.319,0.705,0.705,0.543,0,0 +0.667,0.316,0.316,1,1,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,1,1,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,1,0.5,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0.366 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0.1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.244 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.33 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.31 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.177 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.35 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 diff --git a/HPXMLtoOpenStudio/resources/schedules.rb b/HPXMLtoOpenStudio/resources/schedules.rb index 1c4c851ba5..b904168ec6 100644 --- a/HPXMLtoOpenStudio/resources/schedules.rb +++ b/HPXMLtoOpenStudio/resources/schedules.rb @@ -1389,6 +1389,7 @@ def initialize(runner: nil, import() battery_schedules + expand_schedules @tmp_schedules = Marshal.load(Marshal.dump(@schedules)) set_unavailable_periods(unavailable_periods) convert_setpoints @@ -1641,6 +1642,16 @@ def create_column_values_from_periods(col_name, periods) end end + def expand_schedules + # Expand schedules with fewer elements such that all the schedules have the same number of elements + max_size = @schedules.map { |_k, v| v.size }.uniq.max + @schedules.each do |col, values| + if values.size < max_size + @schedules[col] = values.map { |v| [v] * (max_size / values.size) }.flatten + end + end + end + def set_unavailable_periods(unavailable_periods) if @unavailable_periods_csv_data.nil? @unavailable_periods_csv_data = Schedule.get_unavailable_periods_csv_data @@ -1673,7 +1684,7 @@ def set_unavailable_periods(unavailable_periods) if schedule_name == ColumnWaterHeaterSetpoint # Temperature of tank < 2C indicates of possibility of freeze. @tmp_schedules[schedule_name][i] = UnitConversions.convert(2.0, 'C', 'F') if @tmp_schedules[column_name][i] == 1.0 - else + elsif ![SchedulesFile::ColumnHeatingSetpoint, SchedulesFile::ColumnCoolingSetpoint].include?(schedule_name) @tmp_schedules[schedule_name][i] *= (1.0 - @tmp_schedules[column_name][i]) end end diff --git a/HPXMLtoOpenStudio/resources/version.rb b/HPXMLtoOpenStudio/resources/version.rb index bfbd41e4aa..0fec97549d 100644 --- a/HPXMLtoOpenStudio/resources/version.rb +++ b/HPXMLtoOpenStudio/resources/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class Version - OS_HPXML_Version = '1.6.0' # Version of the OS-HPXML workflow + OS_HPXML_Version = '1.7.0' # Version of the OS-HPXML workflow OS_Version = '3.6.1' # Required version of OpenStudio (can be 'X.X' or 'X.X.X') HPXML_Version = '4.0' # HPXML schemaVersion diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 721c795227..d4d742fe30 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -809,26 +809,39 @@ def test_slabs hpxml.slabs[0].thickness = 7.0 hpxml.slabs[0].carpet_r_value = 1.1 hpxml.slabs[0].carpet_fraction = 0.5 + hpxml.slabs[0].depth_below_grade = 2.0 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default.slabs[0], 7.0, 1.1, 0.5) + _test_default_slab_values(hpxml_default.slabs[0], 7.0, 1.1, 0.5, nil) # Test defaults w/ conditioned basement hpxml.slabs[0].thickness = nil hpxml.slabs[0].carpet_r_value = nil hpxml.slabs[0].carpet_fraction = nil + hpxml.slabs[0].depth_below_grade = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default.slabs[0], 4.0, 2.0, 0.8) + _test_default_slab_values(hpxml_default.slabs[0], 4.0, 2.0, 0.8, nil) # Test defaults w/ crawlspace hpxml = _create_hpxml('base-foundation-unvented-crawlspace.xml') hpxml.slabs[0].thickness = nil hpxml.slabs[0].carpet_r_value = nil hpxml.slabs[0].carpet_fraction = nil + hpxml.slabs[0].depth_below_grade = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default.slabs[0], 0.0, 0.0, 0.0) + _test_default_slab_values(hpxml_default.slabs[0], 0.0, 0.0, 0.0, nil) + + # Test defaults w/ slab-on-grade + hpxml = _create_hpxml('base-foundation-slab.xml') + hpxml.slabs[0].thickness = nil + hpxml.slabs[0].carpet_r_value = nil + hpxml.slabs[0].carpet_fraction = nil + hpxml.slabs[0].depth_below_grade = nil + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_slab_values(hpxml_default.slabs[0], 4.0, 2.0, 0.8, 0.0) end def test_windows @@ -1379,9 +1392,9 @@ def test_stoves _test_default_stove_values(hpxml_default.heating_systems[0], 40, nil, false, nil) end - def test_portable_heaters + def test_space_heaters # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-portable-heater-gas-only.xml') + hpxml = _create_hpxml('base-hvac-space-heater-gas-only.xml') hpxml.heating_systems[0].fan_watts = 22 hpxml.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) @@ -1396,23 +1409,6 @@ def test_portable_heaters _test_default_portable_heater_values(hpxml_default.heating_systems[0], 0, nil) end - def test_fixed_heaters - # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-fixed-heater-gas-only.xml') - hpxml.heating_systems[0].fan_watts = 22 - hpxml.heating_systems[0].heating_capacity = 12345 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fixed_heater_values(hpxml_default.heating_systems[0], 22, 12345) - - # Test defaults - hpxml.heating_systems[0].fan_watts = nil - hpxml.heating_systems[0].heating_capacity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fixed_heater_values(hpxml_default.heating_systems[0], 0, nil) - end - def test_fireplaces # Test inputs not overridden by defaults hpxml = _create_hpxml('base-hvac-fireplace-wood-only.xml') @@ -3835,10 +3831,15 @@ def _test_default_floor_values(floor, int_finish_type, int_finish_thickness) end end - def _test_default_slab_values(slab, thickness, carpet_r_value, carpet_fraction) + def _test_default_slab_values(slab, thickness, carpet_r_value, carpet_fraction, depth_below_grade) assert_equal(thickness, slab.thickness) assert_equal(carpet_r_value, slab.carpet_r_value) assert_equal(carpet_fraction, slab.carpet_fraction) + if depth_below_grade.nil? + assert_nil(slab.depth_below_grade) + else + assert_equal(depth_below_grade, slab.depth_below_grade) + end end def _test_default_window_values(hpxml, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs, fraction_operable, azimuths) diff --git a/HPXMLtoOpenStudio/tests/test_enclosure.rb b/HPXMLtoOpenStudio/tests/test_enclosure.rb index b157474c6a..ed25bc5def 100644 --- a/HPXMLtoOpenStudio/tests/test_enclosure.rb +++ b/HPXMLtoOpenStudio/tests/test_enclosure.rb @@ -454,6 +454,32 @@ def test_floors end end + def test_manufactured_home_foundation + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + + hpxml = _create_hpxml('base-foundation-belly-wing-skirt.xml') + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + model, hpxml = _test_measure(args_hash) + hpxml_floor = hpxml.floors.find { |x| x.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly } + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_floor.id}" } + assert_equal('NoWind', os_surface.windExposure) + + hpxml.foundations.clear + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + model, hpxml = _test_measure(args_hash) + hpxml_floor = hpxml.floors.find { |x| x.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly } + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_floor.id}" } + assert_equal('NoWind', os_surface.windExposure) + + hpxml = _create_hpxml('base-foundation-belly-wing-no-skirt.xml') + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + model, hpxml = _test_measure(args_hash) + hpxml_floor = hpxml.floors.find { |x| x.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly } + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_floor.id}" } + assert_equal('WindExposed', os_surface.windExposure) + end + def test_slabs args_hash = {} args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) @@ -688,6 +714,142 @@ def test_furniture_mass _check_surface(hpxml.furniture_mass, os_surface, furniture_mass_layer_names) end + def test_foundation_properties + tests = { + '../tests/ASHRAE_Standard_140/L322XC.xml' => 1, # 1 basement foundation + 'base.xml' => 1, # 1 basement foundation + 'base-foundation-slab.xml' => 1, # 1 slab-on-grade foundation + 'base-foundation-basement-garage.xml' => 2, # 1 basement foundation + 1 garage slab + 'base-foundation-unconditioned-basement-above-grade.xml' => 1, # 1 basement foundation + 'base-foundation-conditioned-crawlspace.xml' => 1, # 1 crawlspace foundation + 'base-foundation-ambient.xml' => 0, # 0 foundations + 'base-foundation-walkout-basement.xml' => 2, # 1 basement foundation with 1 effective below-grade depth + additional no-wall exposed perimeter + 'base-foundation-multiple.xml' => 2, # 1 basement foundation + 1 crawlspace foundation + 'base-foundation-complex.xml' => 6, # 2 basement foundations, each with 1 effective below-grade depth + additional no-wall exposed perimeter + 'base-bldgtype-attached-2stories.xml' => 1, # 1 basement foundation + 'base-enclosure-2stories-garage.xml' => 2, # 1 basement foundation + 1 garage slab + } + + tests.each do |hpxml_name, num_kiva_objects| + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, hpxml_name)) + model, hpxml = _test_measure(args_hash) + + # Gather HPXML info + slab_int_adj_tos = {} + ext_fwall_int_adj_tos = {} + int_fwall_int_adj_tos = {} + hpxml.slabs.each do |slab| + int_adj_to = slab.interior_adjacent_to + int_adj_to = HPXML::LocationLivingSpace if HPXML::conditioned_locations.include?(int_adj_to) + + slab_int_adj_tos[int_adj_to] = [] if slab_int_adj_tos[int_adj_to].nil? + slab_int_adj_tos[int_adj_to] << slab + end + hpxml.foundation_walls.each do |fwall| + int_adj_to = fwall.interior_adjacent_to + int_adj_to = HPXML::LocationLivingSpace if HPXML::conditioned_locations.include?(int_adj_to) + + if fwall.is_exterior + ext_fwall_int_adj_tos[int_adj_to] = [] if ext_fwall_int_adj_tos[int_adj_to].nil? + ext_fwall_int_adj_tos[int_adj_to] << fwall + else + int_fwall_int_adj_tos[int_adj_to] = [] if int_fwall_int_adj_tos[int_adj_to].nil? + int_fwall_int_adj_tos[int_adj_to] << fwall + end + end + + # Check number of Kiva:Foundation objects + # We want the lowest possible number that is sufficient, in order to keep runtime performance fast + assert_equal(num_kiva_objects, model.getFoundationKivas.size) + + # Check slab exposed perimeters + slab_int_adj_tos.each do |int_adj_to, slabs| + osm_props = [] + model.getSurfacePropertyExposedFoundationPerimeters.each do |osm_prop| + surf = model.getSurfaces.find { |s| s.name.to_s == osm_prop.surfaceName } + next unless surf.space.get.name.to_s.start_with? int_adj_to + + osm_props << osm_prop + end + + osm_exposed_perimeter = osm_props.map { |p| p.totalExposedPerimeter.get }.sum + hpxml_exposed_perimeter = slabs.map { |s| s.exposed_perimeter }.sum + assert_in_epsilon(hpxml_exposed_perimeter, UnitConversions.convert(osm_exposed_perimeter, 'm', 'ft'), 0.01) + end + + # Check each Kiva:Foundation has identical slab exposed perimeter and total exterior foundation wall length + # This is required by Kiva, otherwise you get simulation errors. + model.getFoundationKivas.each do |foundation| + osm_exposed_perimeter = 0.0 + model.getSurfacePropertyExposedFoundationPerimeters.each do |osm_prop| + surf = model.getSurfaces.find { |s| s.name.to_s == osm_prop.surfaceName } + next unless surf.outsideBoundaryCondition == 'Foundation' && surf.adjacentFoundation.get == foundation + + osm_exposed_perimeter += UnitConversions.convert(osm_prop.totalExposedPerimeter.get, 'm', 'ft') + end + + osm_fwalls = model.getSurfaces.select { |s| s.outsideBoundaryCondition == 'Foundation' && s.adjacentFoundation.get == foundation && s.surfaceType == 'Wall' } + if not osm_fwalls.empty? + osm_fwalls_length = osm_fwalls.map { |s| Geometry.get_surface_length(s) }.sum + assert_in_epsilon(osm_exposed_perimeter, osm_fwalls_length, 0.01) + end + end + + # Check slab areas + slab_int_adj_tos.each do |int_adj_to, slabs| + osm_slabs = model.getSurfaces.select { |s| s.surfaceType == 'Floor' && s.outsideBoundaryCondition == 'Foundation' && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_area = osm_slabs.map { |s| s.grossArea }.sum + hpxml_area = slabs.map { |s| s.area }.sum + assert_in_epsilon(hpxml_area, UnitConversions.convert(osm_area, 'm^2', 'ft^2'), 0.01) + end + + # Check exterior foundation wall exposed areas + ext_fwall_int_adj_tos.each do |int_adj_to, fwalls| + osm_fwalls = model.getSurfaces.select { |s| s.surfaceType == 'Wall' && s.outsideBoundaryCondition == 'Foundation' && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_area = osm_fwalls.map { |s| s.grossArea }.sum + hpxml_area = fwalls.map { |fw| fw.net_area * fw.exposed_fraction }.sum + assert_in_epsilon(hpxml_area, UnitConversions.convert(osm_area, 'm^2', 'ft^2'), 0.01) + end + + # Check exterior foundation wall heights & below-grade depths + ext_fwall_int_adj_tos.each do |int_adj_to, fwalls| + osm_fwalls = model.getSurfaces.select { |s| s.surfaceType == 'Wall' && s.outsideBoundaryCondition == 'Foundation' && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_heights = osm_fwalls.map { |s| Geometry.get_surface_height(s) }.uniq.sort + hpxml_heights = fwalls.map { |fw| fw.height }.uniq.sort + assert_equal(hpxml_heights, osm_heights) + + osm_bgdepths = osm_fwalls.map { |s| -1 * Geometry.get_surface_z_values([s]).min }.uniq.sort + if hpxml_name == 'base-foundation-walkout-basement.xml' + # All foundation walls similar: single foundation wall w/ effective below-grade depth + hpxml_bgdepths = [4.5] + elsif hpxml_name == 'base-foundation-complex.xml' + # Pairs of foundation walls similar: pairs of foundation walls w/ effective below-grade depths + hpxml_bgdepths = [4.33333, 4.5] + else + hpxml_bgdepths = fwalls.map { |fw| fw.depth_below_grade }.uniq.sort + end + assert_equal(hpxml_bgdepths, osm_bgdepths) + end + + # Check interior foundation wall heights & below-grade depths + int_fwall_int_adj_tos.each do |int_adj_to, fwalls| + osm_fwalls = model.getSurfaces.select { |s| s.surfaceType == 'Wall' && s.outsideBoundaryCondition != 'Foundation' && Geometry.get_surface_z_values([s]).min < 0 && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_heights = osm_fwalls.map { |s| Geometry.get_surface_z_values([s]).max - Geometry.get_surface_z_values([s]).min }.uniq.sort + hpxml_heights = fwalls.map { |fw| fw.height - fw.depth_below_grade }.uniq.sort + assert_equal(hpxml_heights, osm_heights) + + osm_bgdepths = osm_fwalls.map { |s| -1 * Geometry.get_surface_z_values([s]).min }.uniq.sort + hpxml_bgdepths = fwalls.map { |fw| fw.height - fw.depth_below_grade }.uniq.sort + assert_equal(hpxml_bgdepths, osm_bgdepths) + end + end + end + def test_kiva_initial_temperatures initial_temps = { 'base.xml' => 68.0, # foundation adjacent to conditioned space, IECC zone 5 'base-foundation-conditioned-crawlspace.xml' => 68.0, # foundation adjacent to conditioned space, IECC zone 5 @@ -709,6 +871,8 @@ def test_kiva_initial_temperatures end def test_collapse_surfaces + # Check that multiple similar surfaces are correctly collapsed + # to reduce EnergyPlus runtime. def split_surfaces(surfaces, should_collapse_surfaces) surf_class = surfaces[0].class for n in 1..surfaces.size @@ -794,6 +958,29 @@ def get_num_surfaces_by_type(hpxml) end end end + + # Check that Slab/DepthBelowGrade is ignored for below-grade spaces when + # collapsing surfaces. + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-foundation-walkout-basement.xml')) + model, _hpxml = _test_measure(args_hash) + num_kiva_fnd_objects = model.getFoundationKivas.size + + hpxml = HPXML.new(hpxml_path: args_hash['hpxml_path']) + hpxml.slabs[0].depth_below_grade = hpxml.foundation_walls[0].depth_below_grade + hpxml.slabs[0].area /= 3.0 + hpxml.slabs[0].exposed_perimeter /= 3.0 + for i in 1..2 + hpxml.slabs << hpxml.slabs[0].dup + hpxml.slabs[i].id = "Slab#{i + 1}" + hpxml.slabs[i].perimeter_insulation_id = "Slab#{i + 1}PerimeterInsulation" + hpxml.slabs[i].under_slab_insulation_id = "Slab#{i + 1}UnderSlabInsulation" + hpxml.slabs[i].depth_below_grade = hpxml.foundation_walls[i].depth_below_grade * i / 3.0 + end + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + model, _hpxml = _test_measure(args_hash) + assert_equal(num_kiva_fnd_objects, model.getFoundationKivas.size) end def test_aspect_ratios diff --git a/HPXMLtoOpenStudio/tests/test_lighting.rb b/HPXMLtoOpenStudio/tests/test_lighting.rb index 3c8340b807..41481dbf87 100644 --- a/HPXMLtoOpenStudio/tests/test_lighting.rb +++ b/HPXMLtoOpenStudio/tests/test_lighting.rb @@ -81,10 +81,12 @@ def test_lighting_kwh_per_year # Check interior lighting int_kwh_yr = hpxml.lighting_groups.find { |lg| lg.location == HPXML::LocationInterior }.kwh_per_year + int_kwh_yr *= hpxml.lighting.interior_usage_multiplier unless hpxml.lighting.interior_usage_multiplier.nil? assert_in_delta(int_kwh_yr, get_kwh_per_year(model, Constants.ObjectNameInteriorLighting), 1.0) # Check exterior lighting ext_kwh_yr = hpxml.lighting_groups.find { |lg| lg.location == HPXML::LocationExterior }.kwh_per_year + ext_kwh_yr *= hpxml.lighting.exterior_usage_multiplier unless hpxml.lighting.exterior_usage_multiplier.nil? assert_in_delta(ext_kwh_yr, get_kwh_per_year(model, Constants.ObjectNameExteriorLighting), 1.0) end diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index c2b15560d0..3d69580981 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -85,8 +85,8 @@ def test_schema_schematron_error_messages 'duct-leakage-cfm50' => ['Expected Value to be greater than or equal to 0 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/DuctLeakageMeasurement/DuctLeakage[Units="CFM25" or Units="CFM50"], id: "HVACDistribution1"]'], 'duct-leakage-percent' => ['Expected Value to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/DuctLeakageMeasurement/DuctLeakage[Units="Percent"], id: "HVACDistribution1"]'], 'duct-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], - 'duct-location-unconditioned-space' => ["Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts1\"]", - "Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts2\"]"], + 'duct-location-unconditioned-space' => ["Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'manufactured home belly' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts1\"]", + "Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'manufactured home belly' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts2\"]"], 'emissions-electricity-schedule' => ['Expected NumberofHeaderRows to be greater than or equal to 0', 'Expected ColumnNumber to be greater than or equal to 1'], 'enclosure-attic-missing-roof' => ['There must be at least one roof adjacent to "attic - unvented". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="attic - unvented" or ExteriorAdjacentTo="attic - unvented"]]]'], @@ -109,7 +109,7 @@ def test_schema_schematron_error_messages 'generator-number-of-bedrooms-served' => ['Expected NumberofBedroomsServed to be greater than ../../../../BuildingSummary/BuildingConstruction/NumberofBedrooms [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator[IsSharedSystem="true"], id: "Generator1"]'], 'generator-output-greater-than-consumption' => ['Expected AnnualConsumptionkBtu to be greater than AnnualOutputkWh*3412 [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator, id: "Generator1"]'], 'heat-pump-capacity-17f' => ['Expected HeatingCapacity17F to be less than or equal to HeatingCapacity'], - 'heat-pump-lockout-temperatures' => ['Expected CompressorLockoutTemperature to be less than BackupHeatingLockoutTemperature'], + 'heat-pump-lockout-temperatures' => ['Expected CompressorLockoutTemperature to be less than or equal to BackupHeatingLockoutTemperature'], 'heat-pump-multiple-backup-systems' => ['Expected 0 or 1 element(s) for xpath: HeatPump/BackupSystem [context: /HPXML/Building/BuildingDetails]'], 'hvac-distribution-return-duct-leakage-missing' => ['Expected 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="CFM50" or Units="Percent") and TotalOrToOutside="to outside"] [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution[AirDistributionType[text()="regular velocity" or text()="gravity"]], id: "HVACDistribution1"]'], 'hvac-frac-load-served' => ['Expected sum(FractionHeatLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]', @@ -187,6 +187,13 @@ def test_schema_schematron_error_messages 'Expected 0 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency'], 'invalid-window-height' => ['Expected DistanceToBottomOfWindow to be greater than DistanceToTopOfWindow [context: /HPXML/Building/BuildingDetails/Enclosure/Windows/Window/Overhangs[number(Depth) > 0], id: "Window2"]'], 'lighting-fractions' => ['Expected sum(LightingGroup/FractionofUnitsInLocation) for Location="interior" to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails/Lighting]'], + 'manufactured-home-reference-duct' => ['There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home".', + 'A location is specified as "manufactured home belly" but no surfaces were found adjacent to the "manufactured home underbelly" space type.'], + 'manufactured-home-reference-water-heater' => ['There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home".', + 'A location is specified as "manufactured home belly" but no surfaces were found adjacent to the "manufactured home underbelly" space type.', + "Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space'"], + 'manufactured-home-reference-floor' => ['There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home".', + 'There must be at least one ceiling adjacent to "crawlspace - vented".'], 'missing-cfis-supplemental-fan' => ['Expected 1 element(s) for xpath: SupplementalFan'], 'missing-distribution-cfa-served' => ['Expected 1 element(s) for xpath: ../../../ConditionedFloorAreaServed [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[not(DuctSurfaceArea)], id: "Ducts2"]'], 'missing-duct-area' => ['Expected 1 or more element(s) for xpath: FractionDuctArea | DuctSurfaceArea [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[DuctLocation], id: "Ducts2"]'], @@ -200,7 +207,7 @@ def test_schema_schematron_error_messages 'refrigerator-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], 'solar-fraction-one' => ['Expected SolarFraction to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem, id: "SolarThermalSystem1"]'], 'water-heater-location' => ['A location is specified as "crawlspace - vented" but no surfaces were found adjacent to this space type.'], - 'water-heater-location-other' => ["Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem, id: \"WaterHeatingSystem1\"]"], + 'water-heater-location-other' => ["Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space'"], 'water-heater-recovery-efficiency' => ['Expected RecoveryEfficiency to be greater than EnergyFactor'] } all_expected_errors.each_with_index do |(error_case, expected_errors), i| @@ -527,6 +534,20 @@ def test_schema_schematron_error_messages hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) int_cfl = hpxml.lighting_groups.find { |lg| lg.location == HPXML::LocationInterior && lg.lighting_type == HPXML::LightingTypeCFL } int_cfl.fraction_of_units_in_location = 0.8 + elsif ['manufactured-home-reference-duct'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationManufacturedHomeBelly + elsif ['manufactured-home-reference-water-heater'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.water_heating_systems[0].location = HPXML::LocationManufacturedHomeBelly + elsif ['manufactured-home-reference-floor'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-foundation-vented-crawlspace.xml')) + hpxml.floors.each do |floor| + if floor.exterior_adjacent_to == HPXML::LocationCrawlspaceVented + floor.exterior_adjacent_to = HPXML::LocationManufacturedHomeUnderBelly + break + end + end elsif ['missing-cfis-supplemental-fan'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis.xml')) hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan diff --git a/ReportSimulationOutput/measure.rb b/ReportSimulationOutput/measure.rb index 3370c7a046..39eebe3ff7 100644 --- a/ReportSimulationOutput/measure.rb +++ b/ReportSimulationOutput/measure.rb @@ -127,6 +127,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(true) args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_annual_resilience', false) + arg.setDisplayName('Generate Annual Output: Resilience') + arg.setDescription('Generates annual resilience outputs.') + arg.setDefaultValue(true) + args << arg + timeseries_frequency_chs = OpenStudio::StringVector.new timeseries_frequency_chs << 'none' timeseries_frequency_chs << 'timestep' @@ -223,6 +229,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(false) args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_timeseries_resilience', false) + arg.setDisplayName('Generate Timeseries Output: Resilience') + arg.setDescription('Generates timeseries resilience outputs.') + arg.setDefaultValue(false) + args << arg + timestamp_chs = OpenStudio::StringVector.new timestamp_chs << 'start' timestamp_chs << 'end' @@ -353,6 +365,22 @@ def energyPlusOutputRequests(runner, user_arguments) if args[:include_timeseries_fuel_consumptions] result << OpenStudio::IdfObject.load("Output:Meter,ElectricStorage:ElectricityProduced,#{args[:timeseries_frequency]};").get end + + # Resilience + if args[:include_annual_resilience] || args[:include_timeseries_resilience] + resilience_frequency = 'timestep' + if args[:timeseries_frequency] != 'timestep' + resilience_frequency = 'hourly' + end + result << OpenStudio::IdfObject.load("Output:Meter,Electricity:Facility,#{resilience_frequency};").get + result << OpenStudio::IdfObject.load("Output:Meter,ElectricityProduced:Facility,#{resilience_frequency};").get + result << OpenStudio::IdfObject.load("Output:Meter,ElectricStorage:ElectricityProduced,#{resilience_frequency};").get + @resilience.values.each do |resilience| + resilience.variables.each do |_sys_id, varkey, var| + result << OpenStudio::IdfObject.load("Output:Variable,#{varkey},#{var},#{resilience_frequency};").get + end + end + end end # End Use/Hot Water Use/Ideal Load outputs @@ -518,7 +546,7 @@ def run(runner, user_arguments) if File.exist? msgpack_timeseries_path @msgpackDataTimeseries = MessagePack.unpack(File.read(msgpack_timeseries_path, mode: 'rb')) end - if not @emissions.empty? + if (not @emissions.empty?) || ((not @resilience[RT::Battery].variables.empty?) && (args[:timeseries_frequency] != 'timestep')) @msgpackDataHourly = MessagePack.unpack(File.read(File.join(output_dir, 'eplusout_hourly.msgpack'), mode: 'rb')) end @@ -613,6 +641,36 @@ def get_timestamps(msgpackData, hpxml, args) return timestamps, timestamps_dst, timestamps_utc end + def get_n_hours_per_period(timeseries_frequency, sim_start_day_of_year, sim_end_day_of_year, year) + if timeseries_frequency == 'daily' + n_hours_per_period = [24] * (sim_end_day_of_year - sim_start_day_of_year + 1) + elsif timeseries_frequency == 'monthly' + n_days_per_month = Constants.NumDaysInMonths(year) + n_days_per_period = n_days_per_month[@hpxml.header.sim_begin_month - 1..@hpxml.header.sim_end_month - 1] + n_days_per_period[0] -= @hpxml.header.sim_begin_day - 1 + n_days_per_period[-1] = @hpxml.header.sim_end_day + n_hours_per_period = n_days_per_period.map { |x| x * 24 } + end + return n_hours_per_period + end + + def rollup_timeseries_output_to_daily_or_monthly(timeseries_output, timeseries_frequency, average = false) + year = @hpxml.header.sim_calendar_year + sim_start_day_of_year, sim_end_day_of_year, _sim_start_hour, _sim_end_hour = get_sim_times_of_year(year) + n_hours_per_period = get_n_hours_per_period(timeseries_frequency, sim_start_day_of_year, sim_end_day_of_year, year) + fail 'Unexpected failure for n_hours_per_period calculations.' if n_hours_per_period.sum != timeseries_output.size + + ts_output = [] + start_hour = 0 + n_hours_per_period.each do |n_hours| + timeseries = timeseries_output[start_hour..start_hour + n_hours - 1].sum() + timeseries /= timeseries_output[start_hour..start_hour + n_hours - 1].size if average + ts_output << timeseries + start_hour += n_hours + end + return ts_output + end + def get_outputs(runner, args) outputs = {} @@ -643,6 +701,8 @@ def get_outputs(runner, args) months = ['June', 'July', 'August'] elsif (season == PFT::Winter && is_northern_hemisphere) || (season == PFT::Summer && is_southern_hemisphere) months = ['December', 'January', 'February'] + elsif season == PFT::Annual + months = ['Maximum of Months'] end for month in months val = get_tabular_data_value(peak_fuel.report.upcase, 'Meter', 'Custom Monthly Report', [month], 'ELECTRICITY:FACILITY {Maximum}', peak_fuel.annual_units) @@ -872,6 +932,76 @@ def get_outputs(runner, args) @totals[TE::Net].timeseries_output = @totals[TE::Total].timeseries_output.zip(outputs[:elec_prod_timeseries]).map { |x, y| x + y * unit_conv } end + # Resilience + @resilience.each do |key, resilience| + next unless key == RT::Battery + next unless (args[:include_annual_resilience] || args[:include_timeseries_resilience]) + + resilience.variables.map { |v| v[0] }.uniq.each do |sys_id| + keys = resilience.variables.select { |v| v[0] == sys_id }.map { |v| v[1] } + vars = resilience.variables.select { |v| v[0] == sys_id }.map { |v| v[2] } + + minimum_storage_state_of_charge_fraction = nil + batt_kwh = nil + batt_kw = nil + batt_roundtrip_eff = nil + batt_loss = nil + + @hpxml.batteries.each do |battery| + @model.getElectricLoadCenterDistributions.each do |elcd| + battery_id = elcd.additionalProperties.getFeatureAsString('HPXML_ID') + next unless (battery_id.is_initialized && battery_id.get == battery.id) + + minimum_storage_state_of_charge_fraction = elcd.minimumStorageStateofChargeFraction + end + + batt_kw = battery.rated_power_output / 1000.0 + batt_roundtrip_eff = battery.round_trip_efficiency + + @model.getElectricLoadCenterStorageLiIonNMCBatterys.each do |elcs| + battery_id = elcs.additionalProperties.getFeatureAsString('HPXML_ID') + next unless (battery_id.is_initialized && battery_id.get == battery.id) + + batt_kwh = elcs.additionalProperties.getFeatureAsDouble('UsableCapacity_kWh').get + batt_loss = "#{Constants.ObjectNameBatteryLossesAdjustment(elcs.name)} outvar" + end + end + + resilience_frequency = 'timestep' + ts_per_hr = @model.getTimestep.numberOfTimestepsPerHour + if args[:timeseries_frequency] != 'timestep' + resilience_frequency = 'hourly' + ts_per_hr = 1 + end + + batt_soc = get_report_variable_data_timeseries(keys, vars, 1, 0, resilience_frequency) + batt_soc_kwh = batt_soc.map { |soc| soc - minimum_storage_state_of_charge_fraction }.map { |soc| soc * batt_kwh } + elec_prod = get_report_meter_data_timeseries(['ElectricityProduced:Facility'], UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + elec_stor = get_report_meter_data_timeseries(['ElectricStorage:ElectricityProduced'], UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + batt_loss = get_report_variable_data_timeseries(['EMS'], [batt_loss], UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + elec_prod = elec_prod.zip(elec_stor).map { |x, y| -1 * (x - y) } + elec = get_report_meter_data_timeseries(['Electricity:Facility'], UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + crit_load = elec.zip(elec_prod, batt_loss).map { |x, y, z| x + y + z } + + resilience_timeseries = [] + n_timesteps = crit_load.size + (0...n_timesteps).each do |init_time_step| + resilience_timeseries << get_resilience_timeseries(init_time_step, batt_kwh, batt_kw, batt_soc_kwh[init_time_step], crit_load, batt_roundtrip_eff, n_timesteps, ts_per_hr) + end + + resilience.annual_output = resilience_timeseries.sum(0.0) / resilience_timeseries.size + + next unless args[:include_timeseries_resilience] + + resilience.timeseries_output = resilience_timeseries + + # Aggregate up from hourly to the desired timeseries frequency + if ['daily', 'monthly'].include? args[:timeseries_frequency] + resilience.timeseries_output = rollup_timeseries_output_to_daily_or_monthly(resilience.timeseries_output, args[:timeseries_frequency], true) + end + end + end + # Zone temperatures if args[:include_timeseries_zone_temperatures] zone_names = [] @@ -1018,26 +1148,9 @@ def get_outputs(runner, args) @emissions[key].timeseries_output_by_end_use[eu_key] = timeseries_elec.zip(timeseries_elec_factors).map { |n, f| n * f * elec_units_mult } # Aggregate up from hourly to the desired timeseries frequency - next unless ['daily', 'monthly'].include? args[:timeseries_frequency] - - if args[:timeseries_frequency] == 'daily' - n_hours_per_period = [24] * (sim_end_day_of_year - sim_start_day_of_year + 1) - elsif args[:timeseries_frequency] == 'monthly' - n_days_per_month = Constants.NumDaysInMonths(year) - n_days_per_period = n_days_per_month[@hpxml.header.sim_begin_month - 1..@hpxml.header.sim_end_month - 1] - n_days_per_period[0] -= @hpxml.header.sim_begin_day - 1 - n_days_per_period[-1] = @hpxml.header.sim_end_day - n_hours_per_period = n_days_per_period.map { |x| x * 24 } + if ['daily', 'monthly'].include? args[:timeseries_frequency] + @emissions[key].timeseries_output_by_end_use[eu_key] = rollup_timeseries_output_to_daily_or_monthly(@emissions[key].timeseries_output_by_end_use[eu_key], args[:timeseries_frequency]) end - fail 'Unexpected failure for emissions calculations.' if n_hours_per_period.sum != @emissions[key].timeseries_output_by_end_use[eu_key].size - - timeseries_output = [] - start_hour = 0 - n_hours_per_period.each do |n_hours| - timeseries_output << @emissions[key].timeseries_output_by_end_use[eu_key][start_hour..start_hour + n_hours - 1].sum() - start_hour += n_hours - end - @emissions[key].timeseries_output_by_end_use[eu_key] = timeseries_output end # Calculate emissions for fossil fuels @@ -1335,6 +1448,14 @@ def report_runperiod_output_results(runner, outputs, args, annual_output_path) results_out << [line_break] end + # Resilience + if args[:include_annual_resilience] + @resilience.each do |_type, resilience| + results_out << ["#{resilience.name} (#{resilience.annual_units})", resilience.annual_output.to_f.round(n_digits)] + end + results_out << [line_break] + end + # Sizing data if args[:include_annual_hvac_summary] results_out = append_sizing_results(results_out, line_break) @@ -1577,6 +1698,11 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar else weather_data = [] end + if args[:include_timeseries_resilience] + resilience_data = @resilience.values.select { |x| x.timeseries_output.sum(0.0) != 0 }.map { |x| [x.name, x.timeseries_units] + x.timeseries_output.map { |v| v.round(n_digits) } } + else + resilience_data = [] + end # EnergyPlus output variables if not @output_variables.empty? @@ -1587,7 +1713,7 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar return if (total_energy_data.size + fuel_data.size + end_use_data.size + system_use_data.size + emissions_data.size + emission_fuel_data.size + emission_end_use_data.size + hot_water_use_data.size + total_loads_data.size + comp_loads_data.size + unmet_hours_data.size + - zone_temps_data.size + airflows_data.size + weather_data.size + output_variables_data.size) == 0 + zone_temps_data.size + airflows_data.size + weather_data.size + resilience_data.size + output_variables_data.size) == 0 fail 'Unable to obtain timestamps.' if @timestamps.empty? @@ -1595,7 +1721,7 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar # Assemble data data = data.zip(*timestamps2, *timestamps3, *total_energy_data, *fuel_data, *end_use_data, *system_use_data, *emissions_data, *emission_fuel_data, *emission_end_use_data, *hot_water_use_data, *total_loads_data, *comp_loads_data, - *unmet_hours_data, *zone_temps_data, *airflows_data, *weather_data, *output_variables_data) + *unmet_hours_data, *zone_temps_data, *airflows_data, *weather_data, *resilience_data, *output_variables_data) # Error-check n_elements = [] @@ -1657,7 +1783,7 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar [total_energy_data, fuel_data, end_use_data, system_use_data, emissions_data, emission_fuel_data, emission_end_use_data, hot_water_use_data, total_loads_data, comp_loads_data, unmet_hours_data, - zone_temps_data, airflows_data, weather_data, output_variables_data].each do |d| + zone_temps_data, airflows_data, weather_data, resilience_data, output_variables_data].each do |d| d.each do |o| grp, name = o[0].split(':', 2) h[grp] = {} if h[grp].nil? @@ -1715,6 +1841,39 @@ def get_report_variable_data_annual(key_values, variables, unit_conv = UnitConve return val end + def get_resilience_timeseries(init_time_step, batt_kwh, batt_kw, batt_soc_kwh, crit_load, batt_roundtrip_eff, n_timesteps, ts_per_hr) + for i in 0...n_timesteps + t = (init_time_step + i) % n_timesteps # for wrapping around end of year + load_kw = crit_load[t] + + # even if load_kw is negative, we return if batt_soc_kwh isn't charged at all + return i / Float(ts_per_hr) if batt_soc_kwh <= 0 + + if load_kw < 0 # load is met with PV + if batt_soc_kwh < batt_kwh # charge battery if there's room in the battery + batt_soc_kwh += [ + batt_kwh - batt_soc_kwh, # room available + batt_kw / batt_roundtrip_eff, # inverter capacity + -load_kw * batt_roundtrip_eff, # excess energy + ].min + end + + else # check if we can meet load with generator then storage + if [batt_kw, batt_soc_kwh].min >= load_kw # battery can carry balance + # prevent battery charge from going negative + batt_soc_kwh = [0, batt_soc_kwh - load_kw / batt_roundtrip_eff].max + load_kw = 0 + end + end + + if load_kw > 0 # failed to meet load in this time step + return i / Float(ts_per_hr) + end + end + + return n_timesteps / Float(ts_per_hr) + end + def get_report_meter_data_timeseries(meter_names, unit_conv, unit_adder, timeseries_frequency) return [0.0] * @timestamps.size if meter_names.empty? @@ -1853,7 +2012,7 @@ def create_all_object_variables_by_key @model.getModelObjects.sort.each do |object| next if object.to_AdditionalProperties.is_initialized - [EUT, HWT, LT].each do |class_name| + [EUT, HWT, LT, RT].each do |class_name| sys_id = object.additionalProperties.getFeatureAsString('HPXML_ID') sys_id = sys_id.is_initialized ? sys_id.get : nil vars_by_key = get_object_output_variables_by_key(@model, object, sys_id, class_name) @@ -1947,6 +2106,14 @@ def initialize(variables: []) attr_accessor(:variables, :annual_output_by_system, :timeseries_output_by_system) end + class Resilience < BaseOutput + def initialize(variables: []) + super() + @variables = variables + end + attr_accessor(:variables) + end + class PeakFuel < BaseOutput def initialize(report:) super() @@ -2218,10 +2385,23 @@ def get_timeseries_units_from_fuel_type(fuel_type) hot_water.timeseries_units = 'gal' end + # Resilience + @resilience = {} + @resilience[RT::Battery] = Resilience.new(variables: get_object_variables(RT, RT::Battery)) + + @resilience.each do |resilience_type, resilience| + next unless resilience_type == RT::Battery + + resilience.name = "Resilience: #{resilience_type}" + resilience.annual_units = 'hr' + resilience.timeseries_units = 'hr' + end + # Peak Fuels @peak_fuels = {} - @peak_fuels[[FT::Elec, PFT::Winter]] = PeakFuel.new(report: 'Peak Electricity Winter Total') - @peak_fuels[[FT::Elec, PFT::Summer]] = PeakFuel.new(report: 'Peak Electricity Summer Total') + @peak_fuels[[FT::Elec, PFT::Winter]] = PeakFuel.new(report: 'Peak Electricity Total') + @peak_fuels[[FT::Elec, PFT::Summer]] = PeakFuel.new(report: 'Peak Electricity Total') + @peak_fuels[[FT::Elec, PFT::Annual]] = PeakFuel.new(report: 'Peak Electricity Total') @peak_fuels.each do |key, peak_fuel| fuel_type, peak_fuel_type = key @@ -2370,7 +2550,7 @@ def setup_timeseries_includes(emissions, args) args[:include_timeseries_fuel_consumptions] = true end end - if args[:include_timeseries_total_consumptions] + if args[:include_timeseries_total_consumptions] || args[:include_timeseries_resilience] args[:include_timeseries_fuel_consumptions] = true end if args[:include_timeseries_fuel_consumptions] @@ -2671,6 +2851,13 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) end + elsif class_name == RT + + # Resilience + + if object.to_ElectricLoadCenterStorageLiIonNMCBattery.is_initialized + return { RT::Battery => ['Electric Storage Charge Fraction'] } + end end return {} diff --git a/ReportSimulationOutput/measure.xml b/ReportSimulationOutput/measure.xml index b4cde8acc6..2afb22e08c 100644 --- a/ReportSimulationOutput/measure.xml +++ b/ReportSimulationOutput/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 report_simulation_output df9d170c-c21a-4130-866d-0d46b06073fd - 5362758c-ff55-4684-b0aa-16341d1ada75 - 20230502T172559Z + c14b1c1f-b326-4821-a167-07d751dc2be7 + 2023-07-14T21:39:21Z 9BF1E6AC ReportSimulationOutput HPXML Simulation Output Report @@ -304,6 +304,25 @@ + + include_annual_resilience + Generate Annual Output: Resilience + Generates annual resilience outputs. + Boolean + false + false + true + + + true + true + + + false + false + + + timeseries_frequency Timeseries Reporting Frequency @@ -601,6 +620,25 @@ + + include_timeseries_resilience + Generate Timeseries Output: Resilience + Generates timeseries resilience outputs. + Boolean + false + false + false + + + true + true + + + false + false + + + timeseries_timestamp_convention Generate Timeseries Output: Timestamp Convention @@ -714,12 +752,6 @@ - - output_report_test.rb - rb - test - 5CECB67A - OpenStudio @@ -729,7 +761,13 @@ measure.rb rb script - E24243D5 + FA98256B + + + output_report_test.rb + rb + test + 1A9EB26C diff --git a/ReportSimulationOutput/tests/output_report_test.rb b/ReportSimulationOutput/tests/output_report_test.rb index 47f562d7c0..e9fefc77f4 100644 --- a/ReportSimulationOutput/tests/output_report_test.rb +++ b/ReportSimulationOutput/tests/output_report_test.rb @@ -144,6 +144,7 @@ def teardown "Unmet Hours: #{UHT::Cooling} (hr)", "Peak Electricity: #{PFT::Winter} #{TE::Total} (W)", "Peak Electricity: #{PFT::Summer} #{TE::Total} (W)", + "Peak Electricity: #{PFT::Annual} #{TE::Total} (W)", "Peak Load: #{PLT::Heating} (kBtu/hr)", "Peak Load: #{PLT::Cooling} (kBtu/hr)", "Component Load: Heating: #{CLT::Roofs} (MBtu)", @@ -190,6 +191,7 @@ def teardown "Hot Water: #{HWT::Dishwasher} (gal)", "Hot Water: #{HWT::Fixtures} (gal)", "Hot Water: #{HWT::DistributionWaste} (gal)", + 'Resilience: Battery (hr)', 'HVAC Capacity: Cooling (Btu/h)', 'HVAC Capacity: Heating (Btu/h)', 'HVAC Capacity: Heat Pump Backup (Btu/h)', @@ -265,6 +267,10 @@ def teardown "Hot Water: #{HWT::DistributionWaste}", ] + BaseHPXMLTimeseriesColsResilience = [ + 'Resilience: Battery' + ] + BaseHPXMLTimeseriesColsTotalLoads = [ "Load: #{LT::Heating}", "Load: #{LT::Cooling}", @@ -581,7 +587,8 @@ def test_annual_only 'include_timeseries_component_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, - 'include_timeseries_weather' => false } + 'include_timeseries_weather' => false, + 'include_timeseries_resilience' => false } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(!File.exist?(timeseries_csv)) @@ -609,7 +616,8 @@ def test_annual_only2 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(!File.exist?(timeseries_csv)) @@ -635,7 +643,8 @@ def test_annual_disabled_outputs 'include_annual_peak_loads' => false, 'include_annual_component_loads' => false, 'include_annual_hot_water_uses' => false, - 'include_annual_hvac_summary' => false } + 'include_annual_hvac_summary' => false, + 'include_annual_resilience' => false } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(!File.exist?(timeseries_csv)) @@ -1155,7 +1164,8 @@ def test_timeseries_hourly_ALL 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) @@ -1164,7 +1174,8 @@ def test_timeseries_hourly_ALL emissions_timeseries_cols + emission_fuels_timeseries_cols + emission_end_uses_timeseries_cols + - pv_battery_timeseries_cols + pv_battery_timeseries_cols + + BaseHPXMLTimeseriesColsResilience actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) @@ -1192,7 +1203,8 @@ def test_timeseries_daily_ALL 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) @@ -1201,7 +1213,8 @@ def test_timeseries_daily_ALL emissions_timeseries_cols + emission_fuels_timeseries_cols + emission_end_uses_timeseries_cols + - pv_battery_timeseries_cols + pv_battery_timeseries_cols + + BaseHPXMLTimeseriesColsResilience actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) @@ -1229,7 +1242,8 @@ def test_timeseries_monthly_ALL 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) @@ -1238,7 +1252,8 @@ def test_timeseries_monthly_ALL emissions_timeseries_cols + emission_fuels_timeseries_cols + emission_end_uses_timeseries_cols + - pv_battery_timeseries_cols + pv_battery_timeseries_cols + + BaseHPXMLTimeseriesColsResilience actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) @@ -1247,6 +1262,22 @@ def test_timeseries_monthly_ALL _check_for_nonzero_timeseries_values(timeseries_csv, ["End Use: #{FT::Elec}: #{EUT::Refrigerator}"]) end + def test_timeseries_monthly_resilience + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-pv-battery-scheduled.xml'), + 'skip_validation' => true, + 'timeseries_frequency' => 'monthly', + 'include_timeseries_resilience' => true } + annual_csv, timeseries_csv = _test_measure(args_hash) + assert(File.exist?(annual_csv)) + assert(File.exist?(timeseries_csv)) + expected_timeseries_cols = ['Time'] + + BaseHPXMLTimeseriesColsResilience + actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') + assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) + timeseries_rows = CSV.read(timeseries_csv) + assert_equal(12, timeseries_rows.size - 2) + end + def test_timeseries_timestep args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), 'timeseries_frequency' => 'timestep', diff --git a/ReportUtilityBills/measure.rb b/ReportUtilityBills/measure.rb index 2d14be649b..17c0d3c985 100644 --- a/ReportUtilityBills/measure.rb +++ b/ReportUtilityBills/measure.rb @@ -37,12 +37,44 @@ def arguments(model = nil) # rubocop:disable Lint/UnusedMethodArgument format_chs << 'csv' format_chs << 'json' format_chs << 'msgpack' + # format_chs << 'csv_dview': # TODO: support this arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('output_format', format_chs, false) arg.setDisplayName('Output Format') arg.setDescription('The file format of the annual (and timeseries, if requested) outputs.') arg.setDefaultValue('csv') args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_annual_bills', false) + arg.setDisplayName('Generate Annual Utility Bills') + arg.setDescription('Generates annual utility bills.') + arg.setDefaultValue(true) + args << arg + + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_monthly_bills', false) + arg.setDisplayName('Generate Monthly Utility Bills') + arg.setDescription('Generates monthly utility bills.') + arg.setDefaultValue(true) + args << arg + + timestamp_chs = OpenStudio::StringVector.new + timestamp_chs << 'start' + timestamp_chs << 'end' + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('monthly_timestamp_convention', timestamp_chs, false) + arg.setDisplayName('Generate Monthly Output: Timestamp Convention') + arg.setDescription('Determines whether monthly timestamps use the start-of-period or end-of-period convention.') + arg.setDefaultValue('start') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeStringArgument('annual_output_file_name', false) + arg.setDisplayName('Annual Output File Name') + arg.setDescription("If not provided, defaults to 'results_bills.csv' (or 'results_bills.json' or 'results_bills.msgpack').") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeStringArgument('monthly_output_file_name', false) + arg.setDisplayName('Monthly Output File Name') + arg.setDescription("If not provided, defaults to 'results_bills_monthly.csv' (or 'results_bills_monthly.json' or 'results_bills_monthly.msgpack').") + args << arg + return args end @@ -92,6 +124,22 @@ def check_for_next_type_warnings(utility_bill_scenario) return warnings.uniq end + def get_arguments(runner, arguments, user_arguments) + args = get_argument_values(runner, arguments, user_arguments) + args.each do |k, val| + if val.respond_to?(:is_initialized) && val.is_initialized + args[k] = val.get + elsif k.start_with?('include_annual') + args[k] = true # default if not provided + elsif k.start_with?('include_monthly') + args[k] = true # default if not provided + else + args[k] = nil # default if not provided + end + end + return args + end + # return a vector of IdfObject's to request EnergyPlus objects needed by the run method def energyPlusOutputRequests(runner, user_arguments) super(runner, user_arguments) @@ -141,9 +189,9 @@ def energyPlusOutputRequests(runner, user_arguments) next unless has_fuel[hpxml_fuel_map[fuel_type]] next if is_production && @hpxml.pv_systems.empty? - if fuel_type == FT::Elec - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},monthly;").get if @hpxml.header.utility_bill_scenarios.has_simple_electric_rates - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},hourly;").get if @hpxml.header.utility_bill_scenarios.has_detailed_electric_rates + result << OpenStudio::IdfObject.load("Output:Meter,#{meter},monthly;").get + if fuel_type == FT::Elec && @hpxml.header.utility_bill_scenarios.has_detailed_electric_rates + result << OpenStudio::IdfObject.load("Output:Meter,#{meter},hourly;").get else result << OpenStudio::IdfObject.load("Output:Meter,#{meter},monthly;").get end @@ -178,18 +226,10 @@ def run(runner, user_arguments) return false end - # assign the user inputs to variables - args = get_argument_values(runner, arguments(model), user_arguments) - output_format = args[:output_format].get + args = get_arguments(runner, arguments(model), user_arguments) output_dir = File.dirname(runner.lastEpwFilePath.get.to_s) - if not File.exist? File.join(output_dir, 'eplusout.msgpack') - runner.registerError('Cannot find eplusout.msgpack.') - return false - end - @msgpackData = MessagePack.unpack(File.read(File.join(output_dir, 'eplusout.msgpack'), mode: 'rb')) - hpxml_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_path').get hpxml_defaults_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get building_id = @model.getBuilding.additionalProperties.getFeatureAsString('building_id').get @@ -197,15 +237,34 @@ def run(runner, user_arguments) return true if @hpxml.header.utility_bill_scenarios.empty? + if not File.exist? File.join(output_dir, 'eplusout.msgpack') + runner.registerError('Cannot find eplusout.msgpack.') + return false + end + @msgpackData = MessagePack.unpack(File.read(File.join(output_dir, 'eplusout.msgpack'), mode: 'rb')) + warnings = check_for_return_type_warnings() if register_warnings(runner, warnings) return true end # Set paths - output_path = File.join(output_dir, "results_bills.#{output_format}") - FileUtils.rm(output_path) if File.exist?(output_path) + if not args[:annual_output_file_name].nil? + annual_output_path = File.join(output_dir, args[:annual_output_file_name]) + else + annual_output_path = File.join(output_dir, "results_bills.#{args[:output_format]}") + end + if not args[:monthly_output_file_name].nil? + monthly_output_path = File.join(output_dir, args[:monthly_output_file_name]) + else + monthly_output_path = File.join(output_dir, "results_bills_monthly.#{args[:output_format]}") + end + + if args[:include_monthly_bills] + @timestamps = get_timestamps(args) + end + monthly_data = [] @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| warnings = check_for_next_type_warnings(utility_bill_scenario) if register_warnings(runner, warnings) @@ -230,38 +289,66 @@ def run(runner, user_arguments) # Calculate utility bills get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario, @hpxml.header) - # Write/report results - report_runperiod_output_results(runner, utility_bills, output_format, output_path, utility_bill_scenario.name) + # Write/report runperiod results + report_runperiod_output_results(runner, args, utility_bills, annual_output_path, utility_bill_scenario.name) + + # Get monthly results + get_monthly_output_results(args, utility_bills, utility_bill_scenario.name, monthly_data, @hpxml.header) end + # Write/report monthly results + report_monthly_output_results(runner, args, @timestamps, monthly_data, monthly_output_path) + return true end - def report_runperiod_output_results(runner, utility_bills, output_format, output_path, bill_scenario_name) - segment = utility_bills.keys[0].split(':', 2)[0] - segment = segment.strip + def get_timestamps(args) + ep_timestamps = @msgpackData['MeterData']['Monthly']['Rows'].map { |r| r.keys[0] } + + timestamps = [] + year = @hpxml.header.sim_calendar_year + ep_timestamps.each do |ep_timestamp| + month_day, hour_minute = ep_timestamp.split(' ') + month, day = month_day.split('/').map(&:to_i) + hour, minute, _ = hour_minute.split(':').map(&:to_i) + + # Convert from EnergyPlus default (end-of-timestep) to start-of-timestep convention + if args[:monthly_timestamp_convention] == 'start' + ts_offset = Constants.NumDaysInMonths(year)[month - 1] * 60 * 60 * 24 # seconds + end + + ts = Time.utc(year, month, day, hour, minute) + ts -= ts_offset unless ts_offset.nil? + + timestamps << ts.iso8601.delete('Z') + end + + return timestamps + end + + def report_runperiod_output_results(runner, args, utility_bills, annual_output_path, bill_scenario_name) + return unless args[:include_annual_bills] results_out = [] results_out << ["#{bill_scenario_name}: Total (USD)", utility_bills.values.sum { |bill| bill.annual_total.round(2) }.round(2)] utility_bills.each do |fuel_type, bill| - new_segment = fuel_type.split(':', 2)[0] - new_segment = new_segment.strip - if new_segment != segment - segment = new_segment - end - results_out << ["#{bill_scenario_name}: #{fuel_type}: Fixed (USD)", bill.annual_fixed_charge.round(2)] results_out << ["#{bill_scenario_name}: #{fuel_type}: Energy (USD)", bill.annual_energy_charge.round(2)] results_out << ["#{bill_scenario_name}: #{fuel_type}: PV Credit (USD)", bill.annual_production_credit.round(2)] if [FT::Elec].include?(fuel_type) results_out << ["#{bill_scenario_name}: #{fuel_type}: Total (USD)", bill.annual_total.round(2)] end - if ['csv'].include? output_format - CSV.open(output_path, 'a') { |csv| results_out.to_a.each { |elem| csv << elem } } - elsif ['json', 'msgpack'].include? output_format + line_break = nil + results_out << [line_break] + + if ['csv'].include? args[:output_format] + CSV.open(annual_output_path, 'a') { |csv| results_out.to_a.each { |elem| csv << elem } } + elsif ['json', 'msgpack'].include? args[:output_format] h = {} results_out.each do |out| + next if out == [line_break] + if out[0].include? ':' grp, name = out[0].split(':', 2) h[grp] = {} if h[grp].nil? @@ -271,14 +358,14 @@ def report_runperiod_output_results(runner, utility_bills, output_format, output end end - if output_format == 'json' + if args[:output_format] == 'json' require 'json' - File.open(output_path, 'a') { |json| json.write(JSON.pretty_generate(h)) } - elsif output_format == 'msgpack' - File.open(output_path, 'a') { |json| h.to_msgpack(json) } + File.open(annual_output_path, 'a') { |json| json.write(JSON.pretty_generate(h)) } + elsif args[:output_format] == 'msgpack' + File.open(annual_output_path, 'a') { |json| h.to_msgpack(json) } end end - runner.registerInfo("Wrote bills output to #{output_path}.") + runner.registerInfo("Wrote annual bills output to #{annual_output_path}.") results_out.each do |name, value| next if name.nil? || value.nil? @@ -290,6 +377,60 @@ def report_runperiod_output_results(runner, utility_bills, output_format, output end end + def get_monthly_output_results(args, utility_bills, bill_scenario_name, monthly_data, header) + run_period = (header.sim_begin_month - 1)..(header.sim_end_month - 1) + monthly_data << ["#{bill_scenario_name}: Total", 'USD'] + ([0.0] * run_period.size) + total_ix = monthly_data.size - 1 + + if args[:include_monthly_bills] + utility_bills.each do |fuel_type, bill| + monthly_data[total_ix][2..-1] = monthly_data[total_ix][2..-1].zip(bill.monthly_total[run_period].map { |v| v.round(2) }).map { |x, y| x + y } + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: Fixed", 'USD'] + bill.monthly_fixed_charge[run_period].map { |v| v.round(2) } + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: Energy", 'USD'] + bill.monthly_energy_charge[run_period].map { |v| v.round(2) } + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: PV Credit", 'USD'] + bill.monthly_production_credit[run_period].map { |v| v.round(2) } if [FT::Elec].include?(fuel_type) + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: Total", 'USD'] + bill.monthly_total[run_period].map { |v| v.round(2) } + end + end + end + + def report_monthly_output_results(runner, args, timestamps, monthly_data, monthly_output_path) + return if timestamps.nil? + + # Initial output data w/ Time column(s) + data = ['Time', nil] + timestamps + + return if (monthly_data.size) == 0 + + fail 'Unable to obtain timestamps.' if timestamps.empty? + + if ['csv'].include? args[:output_format] + # Assemble data + data = data.zip(*monthly_data) + + # Write file + CSV.open(monthly_output_path, 'wb') { |csv| data.to_a.each { |elem| csv << elem } } + elsif ['json', 'msgpack'].include? args[:output_format] + h = {} + h['Time'] = data[2..-1] + + [monthly_data].each do |d| + d.each do |o| + grp, name = o[0].split(':', 2) + h[grp] = {} if h[grp].nil? + h[grp]["#{name.strip} (#{o[1]})"] = o[2..-1] + end + end + + if args[:output_format] == 'json' + require 'json' + File.open(monthly_output_path, 'w') { |json| json.write(JSON.pretty_generate(h)) } + elsif args[:output_format] == 'msgpack' + File.open(monthly_output_path, 'w') { |json| h.to_msgpack(json) } + end + end + runner.registerInfo("Wrote monthly bills output to #{monthly_output_path}.") + end + def get_utility_rates(hpxml_path, fuels, utility_rates, bill_scenario, pv_systems) warnings = [] utility_rates.each do |fuel_type, rate| @@ -440,9 +581,16 @@ def get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario utility_bills.values.each do |bill| if bill.annual_production_credit != 0 bill.annual_production_credit *= -1 + + # Report the PV credit at the end of the year for all scenarios. + for month in 0..10 + bill.monthly_production_credit[month] = 0.0 + end + bill.monthly_production_credit[11] = bill.annual_production_credit end bill.annual_total = bill.annual_fixed_charge + bill.annual_energy_charge + bill.annual_production_credit + bill.monthly_total = [bill.monthly_fixed_charge, bill.monthly_energy_charge, bill.monthly_production_credit].transpose.map { |x| x.reduce(:+) } end end @@ -508,19 +656,8 @@ def get_outputs(fuels, utility_bill_scenario) end end - def reporting_frequency_map - return { - 'timestep' => 'Zone Timestep', - 'hourly' => 'Hourly', - 'daily' => 'Daily', - 'monthly' => 'Monthly', - } - end - def get_report_meter_data_timeseries(meter_names, unit_conv, unit_adder, timeseries_freq) - msgpack_timeseries_name = { 'timestep' => 'TimeStep', - 'hourly' => 'Hourly', - 'daily' => 'Daily', + msgpack_timeseries_name = { 'hourly' => 'Hourly', 'monthly' => 'Monthly' }[timeseries_freq] begin data = @msgpackData['MeterData'][msgpack_timeseries_name] diff --git a/ReportUtilityBills/measure.xml b/ReportUtilityBills/measure.xml index 9cae6a3bdd..6ad16f287d 100644 --- a/ReportUtilityBills/measure.xml +++ b/ReportUtilityBills/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 report_utility_bills ca88a425-e59a-4bc4-af51-c7e7d1e960fe - 10456a16-b1fc-449f-b7f8-71fbcdabb1c9 - 20230401T012721Z + 279e9ac9-8a85-4425-9d87-6683d723e839 + 2023-06-23T23:58:03Z 15BF4E57 ReportUtilityBills Utility Bills Report @@ -34,6 +34,79 @@ + + include_annual_bills + Generate Annual Utility Bills + Generates annual utility bills. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_monthly_bills + Generate Monthly Utility Bills + Generates monthly utility bills. + Boolean + false + false + true + + + true + true + + + false + false + + + + + monthly_timestamp_convention + Generate Monthly Output: Timestamp Convention + Determines whether monthly timestamps use the start-of-period or end-of-period convention. + Choice + false + false + start + + + start + start + + + end + end + + + + + annual_output_file_name + Annual Output File Name + If not provided, defaults to 'results_bills.csv' (or 'results_bills.json' or 'results_bills.msgpack'). + String + false + false + + + monthly_output_file_name + Monthly Output File Name + If not provided, defaults to 'results_bills_monthly.csv' (or 'results_bills_monthly.json' or 'results_bills_monthly.msgpack'). + String + false + false + @@ -49,58 +122,63 @@ - Contains Demand Charges.json - json - test - 31A7BE3B + + OpenStudio + 3.3.0 + 3.3.0 + + measure.rb + rb + script + E7C1ABA5 - Invalid Fixed Charge Units.json + detailed_rates/Sample Flat Rate Min Annual Charge.json json - test - 6CDC3F13 + resource + 453ED6BD - Invalid Min Charge Units.json + detailed_rates/Sample Flat Rate Min Monthly Charge.json json - test - 32FB5BA8 + resource + A39362E3 - Missing Required Fields.json + detailed_rates/Sample Flat Rate.json json - test - 3DCED656 + resource + C0FCBE3B - Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json + detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json json - test - 953EE2AC + resource + 12C12981 - data.csv - csv - test - F96CB80F + detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json + json + resource + DE28BDA1 - detailed_rates/openei_rates.zip - zip + detailed_rates/Sample Real-Time Pricing Rate.json + json resource - 56DDA6EC + 40D684ED - detailed_rates/Sample Flat Rate.json + detailed_rates/Sample Tiered Rate Min Annual Charge.json json resource - C0FCBE3B + 05C5F7BD - detailed_rates/Sample Real-Time Pricing Rate.json + detailed_rates/Sample Tiered Rate Min Monthly Charge.json json resource - 40D684ED + 9177D651 detailed_rates/Sample Tiered Rate.json @@ -108,18 +186,48 @@ resource 27936FC1 + + detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json + json + resource + E59E9AEE + + + detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json + json + resource + 75AD92DF + detailed_rates/Sample Tiered Time-of-Use Rate.json json resource 4508028D + + detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json + json + resource + 2CC2386E + + + detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json + json + resource + 387337AD + detailed_rates/Sample Time-of-Use Rate.json json resource AD93D08A + + detailed_rates/openei_rates.zip + zip + resource + 56DDA6EC + simple_rates/Average_retail_price_of_electricity.csv csv @@ -157,87 +265,52 @@ D9D25D07 - detailed_rates/Sample Flat Rate Min Annual Charge.json - json - resource - 453ED6BD - - - detailed_rates/Sample Flat Rate Min Monthly Charge.json - json - resource - A39362E3 - - - detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json - json - resource - 12C12981 - - - detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json - json - resource - DE28BDA1 - - - detailed_rates/Sample Tiered Rate Min Annual Charge.json - json + util.rb + rb resource - 05C5F7BD + 70347ABF - detailed_rates/Sample Tiered Rate Min Monthly Charge.json + Contains Demand Charges.json json - resource - 9177D651 + test + 31A7BE3B - detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json + Invalid Fixed Charge Units.json json - resource - E59E9AEE + test + 6CDC3F13 - detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json + Invalid Min Charge Units.json json - resource - 75AD92DF + test + 32FB5BA8 - detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json + Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json json - resource - 2CC2386E + test + 953EE2AC - detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json + Missing Required Fields.json json - resource - 387337AD + test + 3DCED656 - util.rb - rb - resource - 041AE7DE + data.csv + csv + test + F96CB80F utility_bills_test.rb rb test - 08FABF5F - - - - OpenStudio - 3.3.0 - 3.3.0 - - measure.rb - rb - script - 13808DAA + 8AAE9CCC diff --git a/ReportUtilityBills/resources/util.rb b/ReportUtilityBills/resources/util.rb index a6954e34f4..6b8ba307e2 100644 --- a/ReportUtilityBills/resources/util.rb +++ b/ReportUtilityBills/resources/util.rb @@ -39,14 +39,15 @@ def initialize() @annual_fixed_charge = 0.0 @annual_total = 0.0 - @monthly_energy_charge = [0] * 12 - @monthly_fixed_charge = [0] * 12 + @monthly_energy_charge = [0.0] * 12 + @monthly_fixed_charge = [0.0] * 12 + @monthly_total = [0.0] * 12 @monthly_production_credit = [0] * 12 @annual_production_credit = 0.0 end attr_accessor(:annual_energy_charge, :annual_fixed_charge, :annual_total, - :monthly_energy_charge, :monthly_fixed_charge, + :monthly_energy_charge, :monthly_fixed_charge, :monthly_total, :monthly_production_credit, :annual_production_credit) end @@ -59,10 +60,12 @@ def self.simple(fuel_type, header, fuel_time_series, is_production, rate, bill, monthly_fuel_cost = [0] * 12 for month in 0..fuel_time_series.size - 1 + month_ix = month + header.sim_begin_month - 1 + if is_production && fuel_type == FT::Elec && rate.feed_in_tariff_rate - monthly_fuel_cost[month] = fuel_time_series[month] * rate.feed_in_tariff_rate + monthly_fuel_cost[month_ix] = fuel_time_series[month] * rate.feed_in_tariff_rate else - monthly_fuel_cost[month] = fuel_time_series[month] * rate.flatratebuy + monthly_fuel_cost[month_ix] = fuel_time_series[month] * rate.flatratebuy end if fuel_type == FT::Elec @@ -74,13 +77,13 @@ def self.simple(fuel_type, header, fuel_time_series, is_production, rate, bill, end if is_production - bill.monthly_production_credit[month] = monthly_fuel_cost[month] + bill.monthly_production_credit[month_ix] = monthly_fuel_cost[month_ix] else - bill.monthly_energy_charge[month] = monthly_fuel_cost[month] + bill.monthly_energy_charge[month_ix] = monthly_fuel_cost[month_ix] if not rate.fixedmonthlycharge.nil? # If the run period doesn't span the entire month, prorate the fixed charges - prorate_fraction = calculate_monthly_prorate(header, month + 1) - bill.monthly_fixed_charge[month] = rate.fixedmonthlycharge * prorate_fraction + prorate_fraction = calculate_monthly_prorate(header, month_ix + 1) + bill.monthly_fixed_charge[month_ix] = rate.fixedmonthlycharge * prorate_fraction end end end @@ -350,6 +353,7 @@ def self.detailed_electric(header, fuels, rate, bill) annual_total_charge_with_pv = annual_payments + end_of_year_bill_credit - excess_sellback bill.annual_production_credit = annual_total_charge - annual_total_charge_with_pv + for m in 0..11 bill.monthly_fixed_charge[m] += monthly_min_charges[m] end diff --git a/ReportUtilityBills/tests/utility_bills_test.rb b/ReportUtilityBills/tests/utility_bills_test.rb index 77258a3dde..f368347f2d 100644 --- a/ReportUtilityBills/tests/utility_bills_test.rb +++ b/ReportUtilityBills/tests/utility_bills_test.rb @@ -86,6 +86,7 @@ def setup @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') @tmp_hpxml_path = File.join(@sample_files_path, 'tmp.xml') @bills_csv = File.join(File.dirname(__FILE__), 'results_bills.csv') + @bills_monthly_csv = File.join(File.dirname(__FILE__), 'results_bills_monthly.csv') @fuels_pv_none_simple = _load_timeseries(0, false) @fuels_pv_1kw_simple = _load_timeseries(1, false) @@ -93,87 +94,90 @@ def setup @fuels_pv_none_detailed = _load_timeseries(0, true) @fuels_pv_1kw_detailed = _load_timeseries(1, true) @fuels_pv_10kw_detailed = _load_timeseries(10, true) + + @monthly_data = [] end def teardown File.delete(@tmp_hpxml_path) if File.exist? @tmp_hpxml_path File.delete(@bills_csv) if File.exist? @bills_csv + File.delete(@bills_monthly_csv) if File.exist? @bills_monthly_csv end # Simple (non-JSON) Calculations def test_simple_pv_none - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_simple, @hpxml.header, [], utility_bill_scenario) - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_simple, @hpxml.header, [], utility_bill_scenario) + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_simple_pv_1kW_net_metering_user_excess_rate @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_simple_pv_10kW_net_metering_user_excess_rate @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_simple_pv_10kW_net_metering_retail_excess_rate @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_simple_pv_10kW_net_metering_zero_excess_rate @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_simple_pv_1kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_simple_pv_10kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_workflow_wood_cord @@ -182,9 +186,10 @@ def test_workflow_wood_cord hpxml.header.utility_bill_scenarios.add(name: 'Test 1', wood_marginal_rate: 0.015) hpxml.header.utility_bill_scenarios.add(name: 'Test 2', wood_marginal_rate: 0.03) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() + actual_bills, actual_monthly_bills = _test_measure() expected_val = actual_bills['Test 1: Wood Cord: Total (USD)'] assert_in_delta(expected_val * 2, actual_bills['Test 2: Wood Cord: Total (USD)'], 1) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_workflow_wood_pellets @@ -193,9 +198,10 @@ def test_workflow_wood_pellets hpxml.header.utility_bill_scenarios.add(name: 'Test 1', wood_pellets_marginal_rate: 0.02) hpxml.header.utility_bill_scenarios.add(name: 'Test 2', wood_pellets_marginal_rate: 0.01) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() + actual_bills, actual_monthly_bills = _test_measure() expected_val = actual_bills['Test 1: Wood Pellets: Total (USD)'] assert_in_delta(expected_val / 2, actual_bills['Test 2: Wood Pellets: Total (USD)'], 1) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_workflow_coal @@ -205,33 +211,36 @@ def test_workflow_coal hpxml.header.utility_bill_scenarios.add(name: 'Test 2', coal_marginal_rate: 0.1) hpxml.header.utility_bill_scenarios.add(name: 'Test 3', coal_marginal_rate: 0.025) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() + actual_bills, actual_monthly_bills = _test_measure() expected_val = actual_bills['Test 1: Coal: Total (USD)'] assert_in_delta(expected_val * 2, actual_bills['Test 2: Coal: Total (USD)'], 1) assert_in_delta(expected_val / 2, actual_bills['Test 3: Coal: Total (USD)'], 1) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_workflow_leap_year @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-location-AMY-2012.xml')) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() + actual_bills, actual_monthly_bills = _test_measure() assert_operator(actual_bills['Bills: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_workflow_semi_annual_run_period @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-simcontrol-runperiod-1-month.xml')) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() + actual_bills, actual_monthly_bills = _test_measure() assert_operator(actual_bills['Bills: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_workflow_no_bill_scenarios @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-bills-none.xml')) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure(hpxml: hpxml) + actual_bills, _actual_monthly_bills = _test_measure(hpxml: hpxml) assert_nil(actual_bills) end @@ -240,8 +249,9 @@ def test_workflow_detailed_calculations hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json') XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() + actual_bills, actual_monthly_bills = _test_measure() assert_operator(actual_bills['Test 1: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_workflow_detailed_calculations_all_electric @@ -249,8 +259,9 @@ def test_workflow_detailed_calculations_all_electric hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json') XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() + actual_bills, actual_monthly_bills = _test_measure() assert_operator(actual_bills['Test 1: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_auto_marginal_rate @@ -282,7 +293,7 @@ def test_warning_region hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-oil-location-miami-fl.xml')) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['Could not find state average fuel oil rate based on Florida; using region (PADD 1C) average.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -291,7 +302,7 @@ def test_warning_national hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-propane-location-portland-or.xml')) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['Could not find state average propane rate based on Oregon; using national average.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -300,7 +311,7 @@ def test_warning_dse hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-dse.xml')) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['DSE is not currently supported when calculating utility bills.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -309,7 +320,7 @@ def test_warning_no_rates hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-location-capetown-zaf.xml')) XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['Could not find a marginal Electricity rate.', 'Could not find a marginal Natural Gas rate.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -319,7 +330,7 @@ def test_warning_invalid_fixed_charge_units hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Invalid Fixed Charge Units.json') XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['Fixed charge units must be $/month.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -329,7 +340,7 @@ def test_warning_invalid_min_charge_units hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Invalid Min Charge Units.json') XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['Min charge units must be either $/month or $/year.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -339,7 +350,7 @@ def test_warning_demand_charges hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Contains Demand Charges.json') XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['Demand charges are not currently supported when calculating detailed utility bills.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -349,7 +360,7 @@ def test_warning_missing_required_fields hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Missing Required Fields.json') XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) expected_warnings = ['Tariff file must contain energyweekdayschedule, energyweekendschedule, and energyratestructure fields.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) assert_nil(actual_bills) end @@ -385,57 +396,57 @@ def test_monthly_prorate def test_detailed_flat_pv_none @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_flat_pv_1kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_flat_pv_10kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_flat_pv_10kW_net_metering_retail_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_flat_pv_10kW_net_metering_zero_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_flat_pv_1kW_feed_in_tariff @@ -443,12 +454,12 @@ def test_detailed_flat_pv_1kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_flat_pv_10kW_feed_in_tariff @@ -456,79 +467,79 @@ def test_detailed_flat_pv_10kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end # Tiered def test_detailed_tiered_pv_none @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_pv_1kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -190 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -190 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_pv_10kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -867 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -867 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_pv_10kW_net_metering_retail_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1443 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1443 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_pv_10kW_net_metering_zero_excess_rate @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -580 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -580 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_pv_1kW_feed_in_tariff @@ -536,14 +547,14 @@ def test_detailed_tiered_pv_1kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_pv_10kW_feed_in_tariff @@ -551,81 +562,81 @@ def test_detailed_tiered_pv_10kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end # Time-of-Use def test_detailed_tou_pv_none @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tou_pv_1kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -112 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -112 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tou_pv_10kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -681 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -681 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tou_pv_10kW_net_metering_retail_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1127 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1127 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tou_pv_10kW_net_metering_zero_excess_rate @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -393 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -393 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tou_pv_1kW_feed_in_tariff @@ -633,14 +644,14 @@ def test_detailed_tou_pv_1kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tou_pv_10kW_feed_in_tariff @@ -648,81 +659,81 @@ def test_detailed_tou_pv_10kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end # Tiered and Time-of-Use def test_detailed_tiered_tou_pv_none @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_tou_pv_1kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -108 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -108 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_tou_pv_10kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -665 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -665 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_tou_pv_10kW_net_metering_retail_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1000 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1000 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_tou_pv_10kW_net_metering_zero_excess_rate @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -377 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -377 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_tou_pv_1kW_feed_in_tariff @@ -730,14 +741,14 @@ def test_detailed_tiered_tou_pv_1kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_tiered_tou_pv_10kW_feed_in_tariff @@ -745,81 +756,81 @@ def test_detailed_tiered_tou_pv_10kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end # Real-time Pricing def test_detailed_rtp_pv_none @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_rtp_pv_1kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -106 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -106 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_rtp_pv_10kW_net_metering_user_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -641 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -641 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_rtp_pv_10kW_net_metering_retail_excess_rate @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1060 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1060 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_rtp_pv_10kW_net_metering_zero_excess_rate @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -354 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -354 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_rtp_pv_1kW_feed_in_tariff @@ -827,14 +838,14 @@ def test_detailed_rtp_pv_1kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_rtp_pv_10kW_feed_in_tariff @@ -842,14 +853,14 @@ def test_detailed_rtp_pv_10kW_feed_in_tariff @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end # Extra Fees & Charges @@ -857,153 +868,153 @@ def test_detailed_rtp_pv_10kW_feed_in_tariff def test_simple_pv_1kW_grid_fee_dollars_per_kW @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars_per_kw = 2.50 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 126 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 126 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_simple_pv_1kW_grid_fee_dollars @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars = 7.50 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 186 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 186 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_1kW_grid_fee_dollars_per_kW @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars_per_kw = 2.50 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 126 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 126 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_1kW_grid_fee_dollars @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars = 7.50 @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 186 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 186 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_none_min_monthly_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_none_min_annual_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_1kW_net_metering_user_excess_rate_min_monthly_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_1kW_net_metering_user_excess_rate_min_annual_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_10kW_net_metering_user_excess_rate_min_monthly_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 180 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 180 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_10kW_net_metering_user_excess_rate_min_annual_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 200 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 200 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_10kW_net_metering_retail_excess_rate_min_monthly_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 180 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 180 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_detailed_pv_10kW_net_metering_retail_excess_rate_min_annual_charge @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 200 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 200 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) end def test_downloaded_utility_rates @@ -1012,33 +1023,34 @@ def test_downloaded_utility_rates require 'tempfile' @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - Zip.on_exists_proc = true - Zip::File.open(File.join(File.dirname(__FILE__), '../resources/detailed_rates/openei_rates.zip')) do |zip_file| - zip_file.each do |entry| - next unless entry.file? - - tmpdir = Dir.tmpdir - tmpfile = Tempfile.new(['rate', '.json'], tmpdir) - tmp_path = tmpfile.path.to_s - - File.open(tmp_path, 'wb') do |f| - f.print entry.get_input_stream.read - - utility_bill_scenario.elec_tariff_filepath = tmp_path - File.delete(@bills_csv) if File.exist? @bills_csv - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - if !File.exist?(@bills_csv) - puts entry.name - assert(false) - end - if entry.name.include? 'North Slope Borough Power Light - Aged or Handicappedseniors over 60' - # No cost if < 600 kWh/month, which is the case for PV_None.csv - assert_equal(0, actual_bills['Test: Electricity: Total (USD)']) - else - assert_operator(actual_bills['Test: Electricity: Total (USD)'], :>, 0) - end + utility_bill_scenario = @hpxml.header.utility_bill_scenarios[0] + Zip.on_exists_proc = true + Zip::File.open(File.join(File.dirname(__FILE__), '../resources/detailed_rates/openei_rates.zip')) do |zip_file| + zip_file.each do |entry| + next unless entry.file? + + tmpdir = Dir.tmpdir + tmpfile = Tempfile.new(['rate', '.json'], tmpdir) + tmp_path = tmpfile.path.to_s + + File.open(tmp_path, 'wb') do |f| + f.print entry.get_input_stream.read + + utility_bill_scenario.elec_tariff_filepath = tmp_path + File.delete(@bills_csv) if File.exist? @bills_csv + File.delete(@bills_monthly_csv) if File.exist? @bills_monthly_csv + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) + if !File.exist?(@bills_csv) + puts entry.name + assert(false) end + if entry.name.include? 'North Slope Borough Power Light - Aged or Handicappedseniors over 60' + # No cost if < 600 kWh/month, which is the case for PV_None.csv + assert_equal(0, actual_bills['Test: Electricity: Total (USD)']) + else + assert_operator(actual_bills['Test: Electricity: Total (USD)'], :>, 0) + end + _check_monthly_bills(actual_bills, actual_monthly_bills) end end end @@ -1067,6 +1079,14 @@ def _check_bills(expected_bills, actual_bills) end end + def _check_monthly_bills(actual_bills, actual_monthly_bills) + # Check sum of monthly equal to annual + actual_bills.keys.each do |bill| + assert(actual_monthly_bills.keys.include?(bill)) + assert_in_delta(actual_bills[bill], actual_monthly_bills[bill].sum, 0.1) # within 10 cents + end + end + def _load_timeseries(pv_size_kw, use_hourly_electricity) fuels = @measure.setup_fuel_outputs() columns = CSV.read(File.join(File.dirname(__FILE__), 'data.csv')).transpose @@ -1112,14 +1132,15 @@ def _load_timeseries(pv_size_kw, use_hourly_electricity) def _bill_calcs(fuels, header, pv_systems, utility_bill_scenario) runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - output_format = 'csv' - output_path = File.join(File.dirname(__FILE__), "results_bills.#{output_format}") + args = { output_format: 'csv', include_annual_bills: true, include_monthly_bills: true } utility_rates, utility_bills = @measure.setup_utility_outputs() @measure.get_utility_rates(@hpxml_path, fuels, utility_rates, utility_bill_scenario, pv_systems) @measure.get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario, header) - @measure.report_runperiod_output_results(runner, utility_bills, output_format, output_path, utility_bill_scenario.name) + # Annual + output_path = File.join(File.dirname(__FILE__), "results_bills.#{args[:output_format]}") + @measure.report_runperiod_output_results(runner, args, utility_bills, output_path, utility_bill_scenario.name) # Check written values exist and are registered assert(File.exist?(@bills_csv)) @@ -1127,7 +1148,18 @@ def _bill_calcs(fuels, header, pv_systems, utility_bill_scenario) _check_for_runner_registered_values(runner, nil, actual_bills) - return actual_bills + # Monthly + timestamps = (1..12).to_a + monthly_data = [] + monthly_output_path = File.join(File.dirname(__FILE__), "results_bills_monthly.#{args[:output_format]}") + @measure.get_monthly_output_results(args, utility_bills, utility_bill_scenario.name, monthly_data, header) + @measure.report_monthly_output_results(runner, args, timestamps, monthly_data, monthly_output_path) + + # Check written values exist + assert(File.exist?(@bills_monthly_csv)) + actual_monthly_bills = _get_actual_monthly_bills(@bills_monthly_csv) + + return actual_bills, actual_monthly_bills end def _test_measure(hpxml: nil, expected_errors: [], expected_warnings: []) @@ -1165,6 +1197,7 @@ def _test_measure(hpxml: nil, expected_errors: [], expected_warnings: []) File.delete(osw_path) bills_csv = File.join(File.dirname(template_osw), 'run', 'results_bills.csv') + bills_monthly_csv = File.join(File.dirname(template_osw), 'run', 'results_bills_monthly.csv') # Check warnings/errors if not expected_errors.empty? @@ -1190,7 +1223,10 @@ def _test_measure(hpxml: nil, expected_errors: [], expected_warnings: []) _check_for_runner_registered_values(nil, File.join(File.dirname(bills_csv), 'results.json'), actual_bills) - return actual_bills + assert(File.exist?(bills_monthly_csv)) + actual_monthly_bills = _get_actual_monthly_bills(bills_monthly_csv) + + return actual_bills, actual_monthly_bills end def _get_actual_bills(bills_csv) @@ -1201,9 +1237,32 @@ def _get_actual_bills(bills_csv) key, value = line.split(',').map { |x| x.strip } actual_bills[key] = Float(value) end + return actual_bills end + def _get_actual_monthly_bills(bills_monthly_csv) + lines = File.readlines(bills_monthly_csv) + cols = lines[0].strip.split(',') + units = lines[1].strip.split(',')[1] + + actual_monthly_bills = {} + cols.each do |col| + col += " (#{units})" + actual_monthly_bills[col] = [] + end + + lines[2..-1].each do |row| + row.strip.split(',').each_with_index do |v, i| + col = cols[i] + " (#{units})" + actual_monthly_bills[col] << Float(v) if !col.include?('Time') + end + end + actual_monthly_bills.delete('Time' + " (#{units})") + + return actual_monthly_bills + end + def _check_for_runner_registered_values(runner, results_json, actual_bills) if !runner.nil? runner_bills = {} diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index d0e7d3263d..3021096cd3 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -762,7 +762,7 @@ The presence of a flue or chimney with combustion air from conditioned space can ================================================ ======= ===== =========== ========= ======== =============================================== .. [#] | If HasFlueOrChimneyInConditionedSpace not provided, defaults to true if any of the following conditions are met, otherwise false: - | - heating system is non-electric Furnace, Boiler, WallFurnace, FloorFurnace, Stove, PortableHeater, or FixedHeater located in conditioned space and AFUE/Percent is less than 0.89, + | - heating system is non-electric Furnace, Boiler, WallFurnace, FloorFurnace, Stove, or SpaceHeater located in conditioned space and AFUE/Percent is less than 0.89, | - heating system is non-electric Fireplace located in conditioned space, or | - water heater is non-electric with energy factor (or equivalent calculated from uniform energy factor) less than 0.63 and located in conditioned space. @@ -796,6 +796,12 @@ If the dwelling unit has a vented crawlspace, crawlspace ventilation information .. [#] UnitofMeasure only choice is "SLA" (specific leakage area). .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. +If the dwelling has a manufactured home belly-and-wing foundation, whether a +skirt is present can be optionally entered in +``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing/SkirtPresent``. +The default, if that value is missing, is to assume there is a skirt present and +the floors above that foundation do not have exposure to the wind. + HPXML Roofs *********** @@ -1000,14 +1006,18 @@ Each floor/ceiling surface that is not in contact with the ground (Slab) nor adj ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ ====================================== ======== ============ =========== ======== ======== ============================ - .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", or "manufactured home underbelly". See :ref:`hpxmllocations` for descriptions. .. [#] InteriorAdjacentTo choices are "living space", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". See :ref:`hpxmllocations` for descriptions. .. [#] FloorType child element choices are ``WoodFrame``, ``StructuralInsulatedPanel``, ``SteelFrame``, or ``SolidConcrete``. .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none". .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is living space and the surface is a ceiling, otherwise "none". - .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. + .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior + air films, and insulation installation grade. For a manufactured home belly + where the area of the belly wrap is different and usually greater than the + floor area, the AssemblyEffectiveRValue should be adjusted to account for + the surface area of the belly wrap and insulation. For floors adjacent to "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space", additional information is entered in ``Floor``. @@ -1032,7 +1042,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``Area`` double ft2 > 0 Yes Gross area ``Thickness`` double in >= 0 No See [#]_ Thickness [#]_ ``ExposedPerimeter`` double ft >= 0 Yes Perimeter exposed to ambient conditions [#]_ - ``DepthBelowGrade`` double ft >= 0 See [#]_ Depth from the top of the slab surface to grade + ``DepthBelowGrade`` double ft >= 0 No See [#]_ Depth from the top of the slab surface to grade ``PerimeterInsulation/SystemIdentifier`` id Yes Unique identifier ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation ``PerimeterInsulation/Layer/InsulationDepth`` double ft >= 0 Yes Depth from top of slab to bottom of vertical insulation @@ -1050,8 +1060,8 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and .. [#] For a crawlspace with a dirt floor, enter a thickness of zero. .. [#] ExposedPerimeter includes any slab length that falls along the perimeter of the building's footprint (i.e., is exposed to ambient conditions). So a basement slab edge adjacent to a garage or crawlspace, for example, should not be included. - .. [#] DepthBelowGrade only required if the attached foundation has no ``FoundationWalls``. - For foundation types with walls, the the slab's position relative to grade is determined by the ``FoundationWall/DepthBelowGrade`` value. + .. [#] If DepthBelowGrade not provided, defaults to zero for foundation types without walls. + For foundation types with walls, DepthBelowGrade is ignored as the slab's position relative to grade is determined by the ``FoundationWall/DepthBelowGrade`` value(s). .. [#] InsulationWidth only required if InsulationSpansEntireSlab=true is not provided. .. [#] InsulationSpansEntireSlab=true only required if InsulationWidth is not provided. .. [#] If CarpetFraction not provided, defaults to 0.8 when adjacent to conditioned space, otherwise 0.0. @@ -1320,13 +1330,13 @@ Each heating system (other than a heat pump) is entered as an ``/HPXML/Building/ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ See [#]_ Fraction of heating load served ================================= ======== ====== =========== ======== ============== =============================== - .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space". + .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". .. [#] | If UnitLocation not provided, defaults based on the distribution system: | - **none**: "living space" | - **air**: supply duct location with the largest area, otherwise "living space" | - **hydronic**: same default logic as :ref:`waterheatingsystems` | - **dse**: "living space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space" - .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``PortableHeater``, ``FixedHeater``, or ``Fireplace``. + .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``SpaceHeater``, or ``Fireplace``. .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". For ``ElectricResistance``, "electricity" is required. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. @@ -1462,10 +1472,10 @@ If a stove is specified, additional information is entered in ``HeatingSystem``. ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power ==================================================== ======= ====== =========== ======== ========= =================== -Portable/Fixed Heater -~~~~~~~~~~~~~~~~~~~~~ +Space Heater +~~~~~~~~~~~~ -If a portable heater or fixed heater is specified, additional information is entered in ``HeatingSystem``. +If a space heater (portable or fixed) is specified, additional information is entered in ``HeatingSystem``. ================================================== ====== ===== =========== ======== ========= =================== Element Type Units Constraints Required Default Notes @@ -1505,7 +1515,7 @@ Each cooling system (other than a heat pump) is entered as an ``/HPXML/Building/ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ========================== ======== ====== =========== ======== ======== =============================== - .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space". + .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". .. [#] | If UnitLocation not provided, defaults based on the distribution system: | - **none**: "living space" | - **air**: supply duct location with the largest area, otherwise "living space" @@ -1726,7 +1736,7 @@ Each heat pump is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/H ``BackupType`` string See [#]_ No Type of backup heating ================================= ======== ====== =========== ======== ========= =============================================== - .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space". + .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". .. [#] | If UnitLocation not provided, defaults based on the distribution system: | - **none**: "living space" | - **air**: supply duct location with the largest area, otherwise "living space" @@ -1980,7 +1990,7 @@ If a backup type ("integrated" or "separate") is provided, additional informatio ============================================================================= ======== ====== =========== ======== ========= ========================================== .. [#] If neither BackupHeatingSwitchoverTemperature nor CompressorLockoutTemperature provided, CompressorLockoutTemperature defaults as described above for individual heat pump types. - .. [#] If both BackupHeatingLockoutTemperature and CompressorLockoutTemperature provided, BackupHeatingLockoutTemperature must be greater than CompressorLockoutTemperature. + .. [#] If both BackupHeatingLockoutTemperature and CompressorLockoutTemperature provided, BackupHeatingLockoutTemperature must be greater than or equal to CompressorLockoutTemperature. .. [#] If neither BackupHeatingSwitchoverTemperature nor BackupHeatingLockoutTemperature provided, BackupHeatingLockoutTemperature defaults to 40F for electric backup and 50F for fossil fuel backup. .. note:: @@ -2202,7 +2212,7 @@ Additional information is entered in each ``Ducts``. Fully buried ducts have insulation that just covers the top of the ducts. Deeply buried ducts have insulation that continues above the top of the ducts. See the `Building America Solution Center `_ for more information. - .. [#] DuctLocation choices are "living space", "basement - conditioned", "basement - unconditioned", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "attic - unvented", "attic - vented", "garage", "outside", "exterior wall", "under slab", "roof deck", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] DuctLocation choices are "living space", "basement - conditioned", "basement - unconditioned", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "attic - unvented", "attic - vented", "garage", "outside", "exterior wall", "under slab", "roof deck", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", or "manufactured home belly". See :ref:`hpxmllocations` for descriptions. .. [#] If DuctLocation not provided, defaults to the first present space type: "basement - conditioned", "basement - unconditioned", "crawlspace - conditioned", "crawlspace - vented", "crawlspace - unvented", "attic - vented", "attic - unvented", "garage", or "living space". If NumberofConditionedFloorsAboveGrade > 1, secondary ducts will be located in "living space". @@ -3563,9 +3573,9 @@ HPXML Locations The various locations used in an HPXML file are defined as follows: - ============================== ======================================================= ======================================= ============= + ============================== ======================================================= ======================================= ================= Value Description Temperature Building Type - ============================== ======================================================= ======================================= ============= + ============================== ======================================================= ======================================= ================= outside Ambient environment Weather data Any ground EnergyPlus calculation Any living space Above-grade conditioned space maintained at setpoint EnergyPlus calculation Any @@ -3577,6 +3587,8 @@ The various locations used in an HPXML file are defined as follows: crawlspace - unvented EnergyPlus calculation Any crawlspace - conditioned Below-grade conditioned space maintained at setpoint EnergyPlus calculation Any garage Single-family garage (not shared parking) EnergyPlus calculation Any + manufactured home underbelly Underneath the belly, ambient environment Weather data Manufactured only + manufactured home belly Within the belly Same as living space Manufactured only other housing unit E.g., conditioned adjacent unit or conditioned corridor Same as living space SFA/MF only other heated space E.g., shared laundry/equipment space Avg of living space/outside; min of 68F SFA/MF only other multifamily buffer space E.g., enclosed unconditioned stairwell Avg of living space/outside; min of 50F SFA/MF only @@ -3585,7 +3597,7 @@ The various locations used in an HPXML file are defined as follows: exterior wall Ducts in exterior wall Avg of living space/outside Any under slab Ducts under slab (ground) EnergyPlus calculation Any roof deck Ducts on roof deck (outside) Weather data Any - ============================== ======================================================= ======================================= ============= + ============================== ======================================================= ======================================= ================= Validating & Debugging Errors ----------------------------- diff --git a/docs/source/workflow_outputs.rst b/docs/source/workflow_outputs.rst index ede14a15ab..fa64083c90 100644 --- a/docs/source/workflow_outputs.rst +++ b/docs/source/workflow_outputs.rst @@ -334,6 +334,7 @@ Peak building electricity outputs are listed below. ================================== ============================================================= Peak Electricity: Winter Total (W) Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) Peak Electricity: Summer Total (W) Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) + Peak Electricity: Annual Total (W) Maximum value in any month ================================== ============================================================= Peak Building Loads @@ -403,6 +404,21 @@ Annual hot water uses are listed below. Hot Water: Distribution Waste (gal) =================================== ==================== +Resilience +~~~~~~~~~~ + +Resilience outputs are listed below. + + =================================== ==================== + Type Notes + =================================== ==================== + Resilience: Battery (hr) Average length of time the battery state of charge can meet the electric load [#]_ + =================================== ==================== + + .. [#] Calculation is performed every timestep and then averaged, which assumes a power outage is equally likely to occur every hour of the year. + The entire electric load is treated as a "critical load" that would be supported during an outage. + Resilience hours are set to 0 for any timestep where the battery is not charged, even if there is sufficient PV to power the building. + HVAC Capacities ~~~~~~~~~~~~~~~ @@ -497,6 +513,7 @@ Depending on the outputs requested, the file may include: Zone Temperatures Zone temperatures (in deg-F) for each space (e.g., living space, attic, garage, basement, crawlspace, etc.) plus heating/cooling setpoints. Airflows Airflow rates (in cfm) for infiltration, mechanical ventilation (including clothes dryer exhaust), natural ventilation, whole house fans. Weather Weather file data including outdoor temperatures, relative humidity, wind speed, and solar. + Resilience Resilience outputs (currently only average resilience hours for battery storage). EnergyPlus Output Variables These are optional and can be requested with the ReportSimulationOutput ``user_output_variables`` argument. =================================== ================================================================================================================================== @@ -513,35 +530,44 @@ Note that if the home is not fully conditioned (e.g., a room air conditioner tha Utility Bill Outputs -------------------- -OpenStudio-HPXML can optionally generate a utility bills output file. -The utility bills output file is called ``results_bills.csv`` (or ``results_bills.json`` or ``results_bills.msgpack``) and located in the run directory. - -Results for each utility bill scenario defined in the HPXML file are listed as shown below. - - ============================================= ==================== - Type Notes - ============================================= ==================== - : Total ($) Scenario annual total charges. - : Electricity: Fixed ($) Scenario annual fixed charges for electricity. - : Electricity: Energy ($) Scenario annual energy charges for electricity. - : Electricity: PV Credit ($) Scenario annual production credit (negative value) for PV. - : Electricity: Total ($) Scenario annual total charges for electricity. - : Natural Gas: Fixed ($) Scenario annual fixed charges for natural gas. - : Natural Gas: Energy ($) Scenario annual energy charges for natural gas. - : Natural Gas: Total ($) Scenario annual total charges for natural gas. - : Fuel Oil: Fixed ($) Scenario annual fixed charges for fuel oil. - : Fuel Oil: Energy ($) Scenario annual energy charges for fuel oil. - : Fuel Oil: Total ($) Scenario annual total charges for fuel oil. - : Propane: Fixed ($) Scenario annual fixed charges for propane. - : Propane: Energy ($) Scenario annual energy charges for propane. - : Propane: Total ($) Scenario annual total charges for propane. - : Wood Cord: Fixed ($) Scenario annual fixed charges for wood cord. - : Wood Cord: Energy ($) Scenario annual energy charges for wood cord. - : Wood Cord: Total ($) Scenario annual total charges for wood cord. - : Wood Pellets: Fixed ($) Scenario annual fixed charges for wood pellets. - : Wood Pellets: Energy ($) Scenario annual energy charges for wood pellets. - : Wood Pellets: Total ($) Scenario annual total charges for wood pellets. - : Coal: Fixed ($) Scenario annual fixed charges for coal. - : Coal: Energy ($) Scenario annual energy charges for coal. - : Coal: Total ($) Scenario annual total charges for coal. - ============================================= ==================== +OpenStudio-HPXML can optionally generate utility bill output files (annual, monthly, or both). +The annual utility bills output file is called ``results_bills.csv`` (or ``results_bills.json`` or ``results_bills.msgpack``) and located in the run directory. +The monthly utility bills output file is called ``results_bills_monthly.csv`` (or ``results_bills_monthly.json`` or ``results_bills_monthly.msgpack``) and located in the run directory. + +Annual Bills by Fuel Use +~~~~~~~~~~~~~~~~~~~~~~~~ + +Annual results for each utility bill scenario defined in the HPXML file are listed as shown below. + + ================================================= ==================== + Type Notes + ================================================= ==================== + : Total (USD) Scenario annual total charges. + : Electricity: Fixed (USD) Scenario annual fixed charges for electricity. + : Electricity: Energy (USD) Scenario annual energy charges for electricity. + : Electricity: PV Credit (USD) Scenario annual production credit (negative value) for PV. + : Electricity: Total (USD) Scenario annual total charges for electricity. + : Natural Gas: Fixed (USD) Scenario annual fixed charges for natural gas. + : Natural Gas: Energy (USD) Scenario annual energy charges for natural gas. + : Natural Gas: Total (USD) Scenario annual total charges for natural gas. + : Fuel Oil: Fixed (USD) Scenario annual fixed charges for fuel oil. + : Fuel Oil: Energy (USD) Scenario annual energy charges for fuel oil. + : Fuel Oil: Total (USD) Scenario annual total charges for fuel oil. + : Propane: Fixed (USD) Scenario annual fixed charges for propane. + : Propane: Energy (USD) Scenario annual energy charges for propane. + : Propane: Total (USD) Scenario annual total charges for propane. + : Wood Cord: Fixed (USD) Scenario annual fixed charges for wood cord. + : Wood Cord: Energy (USD) Scenario annual energy charges for wood cord. + : Wood Cord: Total (USD) Scenario annual total charges for wood cord. + : Wood Pellets: Fixed (USD) Scenario annual fixed charges for wood pellets. + : Wood Pellets: Energy (USD) Scenario annual energy charges for wood pellets. + : Wood Pellets: Total (USD) Scenario annual total charges for wood pellets. + : Coal: Fixed (USD) Scenario annual fixed charges for coal. + : Coal: Energy (USD) Scenario annual energy charges for coal. + : Coal: Total (USD) Scenario annual total charges for coal. + ================================================= ==================== + +Monthly Bills by Fuel Use +~~~~~~~~~~~~~~~~~~~~~~~~~ + +Monthly results for each utility bill scenario defined in the HPXML file are listed as rows corresponding to Month, and columns corresponding to Type. diff --git a/tasks.rb b/tasks.rb index c6c9a478be..179a092c60 100644 --- a/tasks.rb +++ b/tasks.rb @@ -729,26 +729,26 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", exterior_adjacent_to: HPXML::LocationGround, interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 4, - area: 120, + 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: 4, + insulation_exterior_distance_to_bottom: 8, insulation_exterior_r_value: 8.9) hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", exterior_adjacent_to: HPXML::LocationGround, interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 2, - area: 60, + 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: 2, + insulation_exterior_distance_to_bottom: 8, insulation_exterior_r_value: 8.9) hpxml.foundation_walls.each do |foundation_wall| hpxml.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id @@ -849,8 +849,8 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", exterior_adjacent_to: HPXML::LocationGround, interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 4, - area: 160, + height: 8, + area: 320, thickness: 8, depth_below_grade: 3, interior_finish_type: HPXML::InteriorFinishGypsumBoard, @@ -859,14 +859,14 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", exterior_adjacent_to: HPXML::LocationGround, interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 4, - area: 200, + 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: 4, + insulation_exterior_distance_to_bottom: 8, insulation_exterior_r_value: 8.9) hpxml.foundation_walls.each do |foundation_wall| hpxml.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id @@ -876,9 +876,9 @@ def apply_hpxml_modification(hpxml_file, hpxml) end hpxml.slabs.add(id: "Slab#{hpxml.slabs.size + 1}", interior_adjacent_to: HPXML::LocationBasementConditioned, - area: 675, + area: 1150, thickness: 4, - exposed_perimeter: 75, + exposed_perimeter: 120, perimeter_insulation_depth: 0, under_slab_insulation_width: 0, perimeter_insulation_r_value: 0, @@ -887,9 +887,9 @@ def apply_hpxml_modification(hpxml_file, hpxml) carpet_r_value: 0) hpxml.slabs.add(id: "Slab#{hpxml.slabs.size + 1}", interior_adjacent_to: HPXML::LocationBasementConditioned, - area: 675, + area: 200, thickness: 4, - exposed_perimeter: 75, + exposed_perimeter: 30, perimeter_insulation_depth: 1, under_slab_insulation_width: 0, perimeter_insulation_r_value: 5, @@ -936,7 +936,6 @@ def apply_hpxml_modification(hpxml_file, hpxml) exposed_perimeter: 40, perimeter_insulation_depth: 0, under_slab_insulation_width: 0, - depth_below_grade: 0, perimeter_insulation_r_value: 0, under_slab_insulation_r_value: 0, carpet_fraction: 0, @@ -1179,8 +1178,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) elsif [HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFireplace, - HPXML::HVACTypeFixedHeater, - HPXML::HVACTypePortableHeater].include? heating_system.heating_system_type + 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 @@ -1229,7 +1227,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) end end end - if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil') + if hpxml_file.include?('water-loop-heat-pump') || (hpxml_file.include?('fan-coil') && !hpxml_file.include?('fireplace-elec')) # Handle WLHP/ducted fan coil hpxml.hvac_distributions.reverse_each do |hvac_distribution| hvac_distribution.delete @@ -1677,6 +1675,11 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.heat_pumps[0].heating_capacity_retention_fraction = nil hpxml.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.heat_pumps[0].compressor_lockout_temp = hpxml.heat_pumps[0].backup_heating_switchover_temp + hpxml.heat_pumps[0].backup_heating_lockout_temp = hpxml.heat_pumps[0].backup_heating_switchover_temp + hpxml.heat_pumps[0].backup_heating_switchover_temp = nil + end # ------------------ # # HPXML WaterHeating # diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 9522873489..2c2e8c83c1 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -889,6 +889,13 @@ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml", "heating_system_type": "Shared Boiler w/ Ductless Fan Coil" }, + "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml": { + "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml", + "heating_system_fraction_heat_load_served": 0.75, + "heating_system_2_type": "Fireplace", + "heating_system_2_heating_efficiency": 1.0, + "heating_system_2_fraction_heat_load_served": 0.25 + }, "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml": { "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml" }, @@ -1464,6 +1471,26 @@ "parent_hpxml": "sample_files/base.xml", "misc_plug_loads_other_annual_kwh": 1729 }, + "sample_files/base-foundation-belly-wing-skirt.xml": { + "parent_hpxml": "sample_files/base-foundation-ambient.xml", + "geometry_unit_type": "manufactured home", + "geometry_unit_aspect_ratio": 4.0, + "geometry_foundation_type": "BellyAndWingWithSkirt", + "geometry_foundation_height": 2, + "geometry_foundation_height_above_grade": 2, + "geometry_roof_pitch": "3:12", + "window_area_front": 140, + "window_area_back": 140, + "window_area_left": 20, + "window_area_right": 20, + "ducts_supply_location": "manufactured home belly", + "ducts_supply_insulation_r": 0, + "ducts_return_location": "manufactured home belly" + }, + "sample_files/base-foundation-belly-wing-no-skirt.xml": { + "parent_hpxml": "sample_files/base-foundation-belly-wing-skirt.xml", + "geometry_foundation_type": "BellyAndWingNoSkirt" + }, "sample_files/base-foundation-complex.xml": { "parent_hpxml": "sample_files/base.xml" }, @@ -1472,6 +1499,11 @@ "slab_under_insulation_r": 10, "slab_under_width": 4 }, + "sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml": { + "parent_hpxml": "sample_files/base.xml", + "slab_under_insulation_r": 10, + "slab_under_width": 999 + }, "sample_files/base-foundation-conditioned-basement-wall-insulation.xml": { "parent_hpxml": "sample_files/base.xml", "foundation_wall_type": "concrete block foam core", @@ -1652,8 +1684,7 @@ "heating_system_2_type": "Boiler", "heating_system_2_fuel": "natural gas", "heating_system_2_heating_efficiency": 0.8, - "heating_system_2_heating_capacity": 60000, - "heating_system_2_fraction_heat_load_served": 0.25 + "heating_system_2_heating_capacity": 60000 }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml", @@ -1665,6 +1696,9 @@ "heat_pump_compressor_lockout_temp": 30, "heat_pump_backup_heating_lockout_temp": 30 }, + "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml" + }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml" }, @@ -2261,14 +2295,6 @@ "heating_system_type": "Fireplace", "heating_system_fuel": "wood" }, - "sample_files/base-hvac-fixed-heater-gas-only.xml": { - "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "FixedHeater", - "heating_system_heating_efficiency": 1, - "cooling_system_type": "none", - "cooling_system_cooling_efficiency": 0, - "cooling_system_fraction_cool_load_served": 0 - }, "sample_files/base-hvac-floor-furnace-propane-only.xml": { "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml", "heating_system_type": "FloorFurnace", @@ -2509,8 +2535,7 @@ "heating_system_2_type": "Stove", "heating_system_2_fuel": "fuel oil", "heating_system_2_heating_efficiency": 0.6, - "heating_system_2_heating_capacity": 60000, - "heating_system_2_fraction_heat_load_served": 0.25 + "heating_system_2_heating_capacity": 60000 }, "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml", @@ -2536,14 +2561,6 @@ "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, - "sample_files/base-hvac-portable-heater-gas-only.xml": { - "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "PortableHeater", - "heating_system_heating_efficiency": 1, - "cooling_system_type": "none", - "cooling_system_cooling_efficiency": 0, - "cooling_system_fraction_cool_load_served": 0 - }, "sample_files/base-hvac-ptac.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", @@ -2640,6 +2657,14 @@ "sample_files/base-hvac-setpoints-daily-setbacks.xml": { "parent_hpxml": "sample_files/base.xml" }, + "sample_files/base-hvac-space-heater-gas-only.xml": { + "parent_hpxml": "sample_files/base.xml", + "heating_system_type": "SpaceHeater", + "heating_system_heating_efficiency": 1, + "cooling_system_type": "none", + "cooling_system_cooling_efficiency": 0, + "cooling_system_fraction_cool_load_served": 0 + }, "sample_files/base-hvac-stove-oil-only.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "Stove", @@ -2686,7 +2711,8 @@ "holiday_lighting_period": "Nov 24 - Jan 6" }, "sample_files/base-lighting-kwh-per-year.xml": { - "parent_hpxml": "sample_files/base.xml" + "parent_hpxml": "sample_files/base.xml", + "lighting_interior_usage_multiplier": 1.5 }, "sample_files/base-lighting-mixed.xml": { "parent_hpxml": "sample_files/base.xml" @@ -3317,6 +3343,19 @@ "water_heater_setpoint_temperature": null, "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv" }, + "sample_files/base-schedules-detailed-mixed-timesteps.xml": { + "parent_hpxml": "sample_files/base-simcontrol-timestep-10-mins.xml", + "hvac_control_heating_weekday_setpoint": null, + "hvac_control_heating_weekend_setpoint": null, + "hvac_control_cooling_weekday_setpoint": null, + "hvac_control_cooling_weekend_setpoint": null, + "water_heater_setpoint_temperature": null, + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv" + }, + "sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml": { + "parent_hpxml": "sample_files/base-schedules-detailed-mixed-timesteps.xml", + "schedules_power_outage_period": "Dec 1 5 - Jan 31 14" + }, "sample_files/base-schedules-detailed-occupancy-stochastic.xml": { "parent_hpxml": "sample_files/base.xml", "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" diff --git a/workflow/real_homes/house001.xml b/workflow/real_homes/house001.xml index 33213f3ff8..f7c007b20a 100644 --- a/workflow/real_homes/house001.xml +++ b/workflow/real_homes/house001.xml @@ -215,7 +215,6 @@ living space 1189.0 154.0 - 0.0 @@ -236,7 +235,6 @@ garage 373.0 77.25 - 0.0 diff --git a/workflow/real_homes/house002.xml b/workflow/real_homes/house002.xml index f381ae908a..8f4bed55eb 100644 --- a/workflow/real_homes/house002.xml +++ b/workflow/real_homes/house002.xml @@ -184,7 +184,6 @@ living space 1769.0 207.0 - 0.0 @@ -205,7 +204,6 @@ garage 670.0 103.54 - 0.0 diff --git a/workflow/real_homes/house003.xml b/workflow/real_homes/house003.xml index e12f3659cc..32debfd0ab 100644 --- a/workflow/real_homes/house003.xml +++ b/workflow/real_homes/house003.xml @@ -190,7 +190,6 @@ living space 1950.0 183.0 - 0.0 @@ -211,7 +210,6 @@ garage 448.0 84.66 - 0.0 diff --git a/workflow/real_homes/house004.xml b/workflow/real_homes/house004.xml index 61fb6fcd74..181b233c8d 100644 --- a/workflow/real_homes/house004.xml +++ b/workflow/real_homes/house004.xml @@ -190,7 +190,6 @@ living space 3667.0 304.0 - 0.0 @@ -211,7 +210,6 @@ garage 960.0 123.94 - 0.0 diff --git a/workflow/real_homes/house005.xml b/workflow/real_homes/house005.xml index 7a1301005f..063347cbf5 100644 --- a/workflow/real_homes/house005.xml +++ b/workflow/real_homes/house005.xml @@ -196,7 +196,6 @@ living space 1732.0 186.0 - 0.0 @@ -217,7 +216,6 @@ garage 294.0 68.59 - 0.0 diff --git a/workflow/real_homes/house006.xml b/workflow/real_homes/house006.xml index 0fee76c256..3da7758e3e 100644 --- a/workflow/real_homes/house006.xml +++ b/workflow/real_homes/house006.xml @@ -71,7 +71,6 @@ - @@ -260,9 +259,8 @@ basement - conditioned - 830.0 + 1008.0 112.0 - 7.0 @@ -280,40 +278,18 @@ - basement - conditioned - 178.0 - 24.0 - 7.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - - garage 422.0 82.17 - 0.0 - + 0.0 0.0 - + 0.0 0.0 diff --git a/workflow/real_homes/house007.xml b/workflow/real_homes/house007.xml index 93cb73a535..0e7fdc7569 100644 --- a/workflow/real_homes/house007.xml +++ b/workflow/real_homes/house007.xml @@ -78,7 +78,6 @@ - @@ -266,9 +265,8 @@ basement - conditioned - 887.0 + 1064.0 110.0 - 7.0 @@ -286,40 +284,18 @@ - basement - conditioned - 177.0 - 22.0 - 7.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - - garage 504.0 89.8 - 0.0 - + 0.0 0.0 - + 0.0 0.0 diff --git a/workflow/real_homes/house008.xml b/workflow/real_homes/house008.xml index c3bd587d6f..497d0e807f 100644 --- a/workflow/real_homes/house008.xml +++ b/workflow/real_homes/house008.xml @@ -82,7 +82,6 @@ - @@ -322,7 +321,6 @@ living space 320.0 40.0 - 0.0 @@ -341,9 +339,8 @@ basement - conditioned - 408.0 + 608.0 115.0 - 8.0 @@ -362,39 +359,17 @@ basement - conditioned - 200.0 - 25.0 - 8.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - - - basement - conditioned 192.0 24.0 - 4.0 - + 0.0 0.0 - + 0.0 0.0 @@ -406,7 +381,6 @@ garage 466.0 86.35 - 0.0 diff --git a/workflow/real_homes/house009.xml b/workflow/real_homes/house009.xml index 75fabf41e1..af00fee599 100644 --- a/workflow/real_homes/house009.xml +++ b/workflow/real_homes/house009.xml @@ -296,7 +296,6 @@ basement - conditioned 1057.0 148.0 - 7.0 @@ -317,7 +316,6 @@ basement - conditioned 86.0 12.0 - 3.0 @@ -338,7 +336,6 @@ garage 240.0 61.97 - 0.0 diff --git a/workflow/real_homes/house010.xml b/workflow/real_homes/house010.xml index 8b0b8fe209..f7f850036c 100644 --- a/workflow/real_homes/house010.xml +++ b/workflow/real_homes/house010.xml @@ -85,7 +85,6 @@ - @@ -302,9 +301,8 @@ basement - conditioned - 887.0 + 1064.0 110.0 - 7.0 @@ -322,40 +320,18 @@ - basement - conditioned - 177.0 - 22.0 - 7.0 - - - - 10.0 - 0.5 - - - - - - 0.0 - 0.0 - - - - - garage 264.0 64.99 - 0.0 - + 0.0 0.0 - + 0.0 0.0 diff --git a/workflow/real_homes/house011.xml b/workflow/real_homes/house011.xml index 2326b00dbe..03127b4939 100644 --- a/workflow/real_homes/house011.xml +++ b/workflow/real_homes/house011.xml @@ -160,7 +160,6 @@ crawlspace - unvented 1228.0 140.17 - 0.0 diff --git a/workflow/real_homes/house012.xml b/workflow/real_homes/house012.xml index 851b4aa0a7..431874e728 100644 --- a/workflow/real_homes/house012.xml +++ b/workflow/real_homes/house012.xml @@ -160,7 +160,6 @@ crawlspace - unvented 1035.0 128.69 - 0.0 diff --git a/workflow/real_homes/house013.xml b/workflow/real_homes/house013.xml index ebc2dbe3ca..a5a716b87f 100644 --- a/workflow/real_homes/house013.xml +++ b/workflow/real_homes/house013.xml @@ -160,7 +160,6 @@ crawlspace - vented 884.0 118.93 - 0.0 diff --git a/workflow/real_homes/house014.xml b/workflow/real_homes/house014.xml index 96bcb5d163..b78aa69990 100644 --- a/workflow/real_homes/house014.xml +++ b/workflow/real_homes/house014.xml @@ -160,7 +160,6 @@ crawlspace - vented 916.0 121.06 - 0.0 diff --git a/workflow/real_homes/house015.xml b/workflow/real_homes/house015.xml index ebc2dbe3ca..a5a716b87f 100644 --- a/workflow/real_homes/house015.xml +++ b/workflow/real_homes/house015.xml @@ -160,7 +160,6 @@ crawlspace - vented 884.0 118.93 - 0.0 diff --git a/workflow/real_homes/house016.xml b/workflow/real_homes/house016.xml index d40774ac6b..8134ec11c9 100644 --- a/workflow/real_homes/house016.xml +++ b/workflow/real_homes/house016.xml @@ -216,7 +216,6 @@ basement - conditioned 2584.0 205.4 - 6.75 diff --git a/workflow/real_homes/house017.xml b/workflow/real_homes/house017.xml index 31097de68e..086f1153ce 100644 --- a/workflow/real_homes/house017.xml +++ b/workflow/real_homes/house017.xml @@ -236,7 +236,6 @@ basement - conditioned 960.0 127.4 - 7.0 @@ -257,7 +256,6 @@ garage 216.0 58.79 - 0.0 diff --git a/workflow/real_homes/house018.xml b/workflow/real_homes/house018.xml index 9cce4fae06..f6cfbb75a2 100644 --- a/workflow/real_homes/house018.xml +++ b/workflow/real_homes/house018.xml @@ -166,7 +166,6 @@ crawlspace - unvented 1456.0 152.63 - 0.0 diff --git a/workflow/real_homes/house019.xml b/workflow/real_homes/house019.xml index 485df9aac6..bdeab0c715 100644 --- a/workflow/real_homes/house019.xml +++ b/workflow/real_homes/house019.xml @@ -165,7 +165,6 @@ basement - conditioned 1350.0 150.0 - 7.0 diff --git a/workflow/real_homes/house020.xml b/workflow/real_homes/house020.xml index 32e1c9a34b..7f7d777852 100644 --- a/workflow/real_homes/house020.xml +++ b/workflow/real_homes/house020.xml @@ -199,7 +199,6 @@ basement - conditioned 2624.0 232.0 - 6.5 diff --git a/workflow/real_homes/house021.xml b/workflow/real_homes/house021.xml index 69352cc22a..6e317f11ac 100644 --- a/workflow/real_homes/house021.xml +++ b/workflow/real_homes/house021.xml @@ -243,7 +243,6 @@ basement - conditioned 1446.0 156.3 - 6.9 @@ -264,7 +263,6 @@ garage 160.0 50.6 - 0.0 diff --git a/workflow/real_homes/house022.xml b/workflow/real_homes/house022.xml index 89f1970ff0..8ee921358f 100644 --- a/workflow/real_homes/house022.xml +++ b/workflow/real_homes/house022.xml @@ -229,7 +229,6 @@ basement - unconditioned 950.0 124.6 - 7.0 diff --git a/workflow/real_homes/house023.xml b/workflow/real_homes/house023.xml index b585611069..d7e9313bdf 100644 --- a/workflow/real_homes/house023.xml +++ b/workflow/real_homes/house023.xml @@ -232,7 +232,6 @@ basement - conditioned 1292.0 145.3 - 8.0 diff --git a/workflow/real_homes/house024.xml b/workflow/real_homes/house024.xml index 42072c5552..760f6fd5cb 100644 --- a/workflow/real_homes/house024.xml +++ b/workflow/real_homes/house024.xml @@ -278,7 +278,6 @@ basement - unconditioned 552.0 69.2 - 5.83 @@ -299,7 +298,6 @@ crawlspace - vented 390.0 78.99 - 0.0 diff --git a/workflow/real_homes/house025.xml b/workflow/real_homes/house025.xml index d69dceb062..3b9876e9c4 100644 --- a/workflow/real_homes/house025.xml +++ b/workflow/real_homes/house025.xml @@ -166,7 +166,6 @@ crawlspace - unvented 1297.0 144.06 - 0.0 diff --git a/workflow/real_homes/house026.xml b/workflow/real_homes/house026.xml index 987c7bf4d1..5f37e30683 100644 --- a/workflow/real_homes/house026.xml +++ b/workflow/real_homes/house026.xml @@ -73,6 +73,7 @@ + @@ -344,9 +345,8 @@ basement - unconditioned - 1108.0 - 133.15 - 0.0 + 522.5 + 41.5 @@ -364,19 +364,38 @@ + basement - unconditioned + 585.5 + 46.5 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + + garage 327.2 72.35 - 0.0 - + 0.0 0.0 - + 0.0 0.0 diff --git a/workflow/real_homes/house027.xml b/workflow/real_homes/house027.xml index 24ad37746b..06b24bdf58 100644 --- a/workflow/real_homes/house027.xml +++ b/workflow/real_homes/house027.xml @@ -263,7 +263,6 @@ living space 1158.0 128.0 - 0.0 @@ -284,7 +283,6 @@ garage 302.0 69.51 - 0.0 diff --git a/workflow/real_homes/house028.xml b/workflow/real_homes/house028.xml index 543f1e6421..0803774428 100644 --- a/workflow/real_homes/house028.xml +++ b/workflow/real_homes/house028.xml @@ -259,7 +259,6 @@ living space 1166.0 129.0 - 0.0 @@ -280,7 +279,6 @@ garage 204.0 57.13 - 0.0 diff --git a/workflow/real_homes/house029.xml b/workflow/real_homes/house029.xml index 5cfb77288c..ebd4a78a17 100644 --- a/workflow/real_homes/house029.xml +++ b/workflow/real_homes/house029.xml @@ -315,8 +315,7 @@ basement - unconditioned 1500.0 - 154.92 - 0.0 + 141.5 @@ -337,7 +336,6 @@ garage 830.0 115.24 - 0.0 diff --git a/workflow/real_homes/house030.xml b/workflow/real_homes/house030.xml index 22b2b41336..5a2abafc34 100644 --- a/workflow/real_homes/house030.xml +++ b/workflow/real_homes/house030.xml @@ -73,13 +73,14 @@ + - + @@ -276,9 +277,8 @@ basement - conditioned - 574.0 - 69.0 - 5.7 + 348.5 + 25.5 @@ -296,19 +296,38 @@ + basement - conditioned + 225.5 + 27.1 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + + living space 602.0 71.0 - 0.0 - + 10.0 4.0 - + 0.0 0.0 @@ -316,20 +335,19 @@ - + garage 416.0 81.58 - 0.0 - + 0.0 0.0 - + 0.0 0.0 diff --git a/workflow/real_homes/house031.xml b/workflow/real_homes/house031.xml index a8571914c9..71216ef257 100644 --- a/workflow/real_homes/house031.xml +++ b/workflow/real_homes/house031.xml @@ -190,7 +190,6 @@ basement - conditioned 1052.7 133.4 - 7.0 @@ -211,7 +210,6 @@ garage 500.0 89.44 - 0.0 diff --git a/workflow/real_homes/house032.xml b/workflow/real_homes/house032.xml index 213a45241c..12f495c225 100644 --- a/workflow/real_homes/house032.xml +++ b/workflow/real_homes/house032.xml @@ -165,7 +165,6 @@ basement - conditioned 848.0 116.48 - 0.0 diff --git a/workflow/real_homes/house033.xml b/workflow/real_homes/house033.xml index e64e5d11c8..b22ce8fc72 100644 --- a/workflow/real_homes/house033.xml +++ b/workflow/real_homes/house033.xml @@ -179,7 +179,6 @@ basement - unconditioned 1100.0 146.0 - 7.0 diff --git a/workflow/real_homes/house034.xml b/workflow/real_homes/house034.xml index 9911074108..236881ba87 100644 --- a/workflow/real_homes/house034.xml +++ b/workflow/real_homes/house034.xml @@ -237,7 +237,6 @@ basement - conditioned 596.9 62.2 - 6.0 @@ -258,7 +257,6 @@ crawlspace - unvented 560.0 94.66 - 0.0 @@ -279,7 +277,6 @@ garage 792.0 112.57 - 0.0 diff --git a/workflow/real_homes/house035.xml b/workflow/real_homes/house035.xml index 8db58cce9d..2eebcb04f4 100644 --- a/workflow/real_homes/house035.xml +++ b/workflow/real_homes/house035.xml @@ -198,7 +198,6 @@ basement - unconditioned 1024.0 128.0 - 0.0 diff --git a/workflow/real_homes/house036.xml b/workflow/real_homes/house036.xml index 2e89b95730..29a57a0408 100644 --- a/workflow/real_homes/house036.xml +++ b/workflow/real_homes/house036.xml @@ -197,7 +197,6 @@ basement - unconditioned 1457.0 156.0 - 6.0 diff --git a/workflow/real_homes/house037.xml b/workflow/real_homes/house037.xml index 61ba245e6e..82027c68b4 100644 --- a/workflow/real_homes/house037.xml +++ b/workflow/real_homes/house037.xml @@ -215,7 +215,6 @@ basement - unconditioned 1000.0 114.0 - 7.0 diff --git a/workflow/real_homes/house038.xml b/workflow/real_homes/house038.xml index 5dc3f7afd0..5719218b2f 100644 --- a/workflow/real_homes/house038.xml +++ b/workflow/real_homes/house038.xml @@ -190,7 +190,6 @@ basement - conditioned 320.7 73.6 - 6.0 @@ -211,7 +210,6 @@ garage 500.0 89.44 - 0.0 diff --git a/workflow/real_homes/house039.xml b/workflow/real_homes/house039.xml index 85ab7dd15e..c25c792a2f 100644 --- a/workflow/real_homes/house039.xml +++ b/workflow/real_homes/house039.xml @@ -205,7 +205,6 @@ basement - unconditioned 1000.0 130.0 - 6.0 @@ -226,7 +225,6 @@ garage 500.0 89.44 - 0.0 diff --git a/workflow/real_homes/house040.xml b/workflow/real_homes/house040.xml index 1de86ae40e..0ea27dc4c0 100644 --- a/workflow/real_homes/house040.xml +++ b/workflow/real_homes/house040.xml @@ -219,7 +219,6 @@ basement - conditioned 609.2 85.9 - 6.0 @@ -240,7 +239,6 @@ crawlspace - unvented 152.3 49.36 - 0.0 diff --git a/workflow/real_homes/house041.xml b/workflow/real_homes/house041.xml index 02ef70c860..a83ecbcd83 100644 --- a/workflow/real_homes/house041.xml +++ b/workflow/real_homes/house041.xml @@ -328,7 +328,6 @@ living space 216.0 42.0 - 0.0 @@ -348,8 +347,7 @@ basement - conditioned 1453.0 - 164.0 - 6.0 + 121.0 @@ -370,7 +368,6 @@ garage 625.0 100.0 - 0.0 diff --git a/workflow/real_homes/house042.xml b/workflow/real_homes/house042.xml index 1a8f3ff47d..f540efc1e2 100644 --- a/workflow/real_homes/house042.xml +++ b/workflow/real_homes/house042.xml @@ -316,8 +316,7 @@ basement - conditioned 1544.0 - 188.0 - 6.0 + 148.0 @@ -338,7 +337,6 @@ garage 525.0 91.65 - 0.0 diff --git a/workflow/real_homes/house043.xml b/workflow/real_homes/house043.xml index 4f34931df4..16262a1d8e 100644 --- a/workflow/real_homes/house043.xml +++ b/workflow/real_homes/house043.xml @@ -280,8 +280,7 @@ basement - conditioned 991.0 - 136.5 - 6.0 + 111.5 @@ -302,7 +301,6 @@ garage 330.0 72.66 - 0.0 diff --git a/workflow/real_homes/house044.xml b/workflow/real_homes/house044.xml index 8acab959ee..e3b960fca5 100644 --- a/workflow/real_homes/house044.xml +++ b/workflow/real_homes/house044.xml @@ -316,8 +316,7 @@ basement - conditioned 1504.0 - 178.0 - 6.25 + 146.6 @@ -338,7 +337,6 @@ garage 27.0 20.78 - 0.0 diff --git a/workflow/real_homes/house045.xml b/workflow/real_homes/house045.xml index d0f95a2520..29fd43a87f 100644 --- a/workflow/real_homes/house045.xml +++ b/workflow/real_homes/house045.xml @@ -308,7 +308,6 @@ basement - conditioned 1024.0 139.0 - 7.5 @@ -329,7 +328,6 @@ garage 632.0 100.56 - 0.0 diff --git a/workflow/real_homes/house047.xml b/workflow/real_homes/house047.xml index 3d5082b8d0..ca41a5ba0d 100644 --- a/workflow/real_homes/house047.xml +++ b/workflow/real_homes/house047.xml @@ -136,7 +136,6 @@ 718.0 4.0 23.7 - 0.0 diff --git a/workflow/real_homes/house048.xml b/workflow/real_homes/house048.xml index d16edd7c10..c937db40ce 100644 --- a/workflow/real_homes/house048.xml +++ b/workflow/real_homes/house048.xml @@ -296,7 +296,6 @@ 484.0 4.0 61.8 - 0.0 @@ -322,7 +321,6 @@ 2101.0 4.0 180.2 - 0.0 diff --git a/workflow/real_homes/house049.xml b/workflow/real_homes/house049.xml index e58468d083..4075cf7bee 100644 --- a/workflow/real_homes/house049.xml +++ b/workflow/real_homes/house049.xml @@ -180,7 +180,6 @@ 484.0 4.0 66.8 - 0.0 @@ -206,7 +205,6 @@ 1491.0 4.0 167.6 - 0.0 diff --git a/workflow/real_homes/house050.xml b/workflow/real_homes/house050.xml index 308eb48b8f..4a8a6770c6 100644 --- a/workflow/real_homes/house050.xml +++ b/workflow/real_homes/house050.xml @@ -220,7 +220,6 @@ 484.0 4.0 44.0 - 0.0 @@ -246,7 +245,6 @@ 1922.0 0.0 171.5 - 0.0 diff --git a/workflow/run_simulation.rb b/workflow/run_simulation.rb index c3c1d28eb5..472a02c435 100644 --- a/workflow/run_simulation.rb +++ b/workflow/run_simulation.rb @@ -12,8 +12,8 @@ basedir = File.expand_path(File.dirname(__FILE__)) def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseries_outputs, skip_validation, add_comp_loads, - output_format, building_id, ep_input_format, stochastic_schedules, timeseries_time_column_types, - timeseries_output_variables, timeseries_timestamp_convention) + output_format, building_id, ep_input_format, stochastic_schedules, + timeseries_output_variables) measures_dir = File.join(basedir, '..') measures = {} @@ -59,9 +59,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri args['include_timeseries_zone_temperatures'] = timeseries_outputs.include? 'temperatures' args['include_timeseries_airflows'] = timeseries_outputs.include? 'airflows' args['include_timeseries_weather'] = timeseries_outputs.include? 'weather' - args['timeseries_timestamp_convention'] = timeseries_timestamp_convention - args['add_timeseries_dst_column'] = timeseries_time_column_types.include? 'DST' - args['add_timeseries_utc_column'] = timeseries_time_column_types.include? 'UTC' + args['include_timeseries_resilience'] = timeseries_outputs.include? 'resilience' args['user_output_variables'] = timeseries_output_variables.join(', ') unless timeseries_output_variables.empty? update_args_hash(measures, measure_subdir, args) @@ -80,7 +78,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri timeseries_types = ['ALL', 'total', 'fuels', 'enduses', 'systemuses', 'emissions', 'emissionfuels', 'emissionenduses', 'hotwater', 'loads', 'componentloads', - 'unmethours', 'temperatures', 'airflows', 'weather'] + 'unmethours', 'temperatures', 'airflows', 'weather', 'resilience'] options = {} OptionParser.new do |opts| @@ -133,21 +131,11 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri options[:stochastic_schedules] = true end - options[:timeseries_time_column_types] = [] - opts.on('--add-timeseries-time-column TYPE', ['DST', 'UTC'], 'Add timeseries time column (DST, UTC); can be called multiple times') do |t| - options[:timeseries_time_column_types] << t - end - options[:timeseries_output_variables] = [] opts.on('--add-timeseries-output-variable NAME', 'Add timeseries output variable; can be called multiple times') do |t| options[:timeseries_output_variables] << t end - options[:timeseries_timestamp_convention] = 'start' - opts.on('--timeseries-timestamp-convention TYPE', ['start', 'end'], 'Convention (start, end) for timeseries timestamps') do |t| - options[:timeseries_timestamp_convention] = t - end - options[:ep_input_format] = 'idf' opts.on('--ep-input-format TYPE', 'EnergyPlus input file format (idf, epjson)') do |t| options[:ep_input_format] = t @@ -244,8 +232,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri end success = run_workflow(basedir, rundir, options[:hpxml], options[:debug], timeseries_output_freq, timeseries_outputs, options[:skip_validation], options[:add_comp_loads], options[:output_format], options[:building_id], - options[:ep_input_format], options[:stochastic_schedules], options[:timeseries_time_column_types], - options[:timeseries_output_variables], options[:timeseries_timestamp_convention]) + options[:ep_input_format], options[:stochastic_schedules], options[:timeseries_output_variables]) if not success exit! 1 diff --git a/workflow/sample_files/base-appliances-coal.xml b/workflow/sample_files/base-appliances-coal.xml index 8bc98c3b95..e22ea10035 100644 --- a/workflow/sample_files/base-appliances-coal.xml +++ b/workflow/sample_files/base-appliances-coal.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - coal - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - coal - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + coal + 3.3 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + coal + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index c2b70c5776..44f6ff6319 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -1,517 +1,516 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - portable - living space - 40.0 - 1.5 - 0.5 - 1.0 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + portable + living space + 40.0 + 1.5 + 0.5 + 1.0 + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index 2cca354797..c45707476a 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -1,517 +1,516 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - whole-home - living space - 40.0 - 1.5 - 0.5 - 1.0 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + whole-home + living space + 40.0 + 1.5 + 0.5 + 1.0 + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index 4b4ead8fa3..2cdb640d95 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -1,526 +1,525 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - portable - living space - 40.0 - 1.8 - 0.5 - 0.5 - - - - portable - living space - 30.0 - 1.6 - 0.5 - 0.25 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + portable + living space + 40.0 + 1.8 + 0.5 + 0.5 + + + + portable + living space + 30.0 + 1.6 + 0.5 + 0.25 + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-dehumidifier.xml b/workflow/sample_files/base-appliances-dehumidifier.xml index bad5f383de..75b766ad1e 100644 --- a/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/workflow/sample_files/base-appliances-dehumidifier.xml @@ -1,517 +1,516 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - portable - living space - 40.0 - 1.8 - 0.5 - 1.0 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + portable + living space + 40.0 + 1.8 + 0.5 + 1.0 + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-gas.xml b/workflow/sample_files/base-appliances-gas.xml index 4d0937cb38..35bc1ec823 100644 --- a/workflow/sample_files/base-appliances-gas.xml +++ b/workflow/sample_files/base-appliances-gas.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - natural gas - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - natural gas - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + natural gas + 3.3 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + natural gas + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-modified.xml b/workflow/sample_files/base-appliances-modified.xml index b700d16e00..5df6c07a11 100644 --- a/workflow/sample_files/base-appliances-modified.xml +++ b/workflow/sample_files/base-appliances-modified.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.65 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 4.29 - false - - - - living space - 0.7 - 6 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.65 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 4.29 + false + + + + living space + 0.7 + 6 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-none.xml b/workflow/sample_files/base-appliances-none.xml index 9b43b35918..8abef9998b 100644 --- a/workflow/sample_files/base-appliances-none.xml +++ b/workflow/sample_files/base-appliances-none.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-oil-location-miami-fl.xml b/workflow/sample_files/base-appliances-oil-location-miami-fl.xml index 805f97de7e..31e0d5c85b 100644 --- a/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +++ b/workflow/sample_files/base-appliances-oil-location-miami-fl.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- FL -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 1A - - - - USA_FL_Miami.Intl.AP.722020_TMY3 - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - fuel oil - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - fuel oil - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ FL +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 1A + + + + USA_FL_Miami.Intl.AP.722020_TMY3 + + USA_FL_Miami.Intl.AP.722020_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + fuel oil + 3.3 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + fuel oil + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-oil.xml b/workflow/sample_files/base-appliances-oil.xml index 88c4fab87e..e1b62288b9 100644 --- a/workflow/sample_files/base-appliances-oil.xml +++ b/workflow/sample_files/base-appliances-oil.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - fuel oil - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - fuel oil - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + fuel oil + 3.3 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + fuel oil + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-propane-location-portland-or.xml b/workflow/sample_files/base-appliances-propane-location-portland-or.xml index 62729d7268..91db05b6ca 100644 --- a/workflow/sample_files/base-appliances-propane-location-portland-or.xml +++ b/workflow/sample_files/base-appliances-propane-location-portland-or.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- OR -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 4C - - - - USA_OR_Portland.Intl.AP.726980_TMY3 - - USA_OR_Portland.Intl.AP.726980_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - propane - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - propane - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ OR +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 4C + + + + USA_OR_Portland.Intl.AP.726980_TMY3 + + USA_OR_Portland.Intl.AP.726980_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + propane + 3.3 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + propane + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-propane.xml b/workflow/sample_files/base-appliances-propane.xml index 41c8f8ddc9..3601ea241d 100644 --- a/workflow/sample_files/base-appliances-propane.xml +++ b/workflow/sample_files/base-appliances-propane.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - propane - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - propane - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + propane + 3.3 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + propane + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-appliances-wood.xml b/workflow/sample_files/base-appliances-wood.xml index b382a3c12f..2ea920ac76 100644 --- a/workflow/sample_files/base-appliances-wood.xml +++ b/workflow/sample_files/base-appliances-wood.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - wood - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - wood - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + wood + 3.3 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + wood + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-atticroof-cathedral.xml b/workflow/sample_files/base-atticroof-cathedral.xml index 7c5107887f..a34a1c9457 100644 --- a/workflow/sample_files/base-atticroof-cathedral.xml +++ b/workflow/sample_files/base-atticroof-cathedral.xml @@ -1,515 +1,515 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 32400.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 32400.0 - - - - - - - - - - - - - - - - - true - - - - - - - - - - - living space - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - - gypsum board - - 6.0 - false - - - 25.8 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1425.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 120.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 120.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 32400.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 32400.0 + + + + + + + + + + + + + + + + + true + + + + + + + + + + + living space + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + + gypsum board + + 6.0 + false + + + 25.8 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1425.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 120.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 120.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-atticroof-conditioned.xml b/workflow/sample_files/base-atticroof-conditioned.xml index f91fc4b8b7..a8c21620af 100644 --- a/workflow/sample_files/base-atticroof-conditioned.xml +++ b/workflow/sample_files/base-atticroof-conditioned.xml @@ -1,632 +1,632 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 3600.0 - 23850.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 23850.0 - 15.0 - - - - - - - - true - - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - - - - living space - 1006.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - - gypsum board - - 6.0 - false - - - 25.8 - - - - - attic - unvented - 504.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - attic - unvented - living space - - - - 316.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - living space - - - - 240.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 22.3 - - - - - outside - attic - unvented - gable - - - - 50.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 450.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.0 - 90 - 0.33 - 0.45 - 0.0 - - - - - 62.0 - 270 - 0.3 - 0.45 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 50.0 - to outside - - - - return - - CFM25 - 100.0 - to outside - - - - - supply - 4.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - basement - conditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - conditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - conditioned - electricity - 3.73 - true - 150.0 - - - - basement - conditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - conditioned - 650.0 - true - - - - basement - conditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 3276.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 3600.0 + 23850.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 23850.0 + 15.0 + + + + + + + + true + + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + + + + living space + 1006.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + + gypsum board + + 6.0 + false + + + 25.8 + + + + + attic - unvented + 504.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + attic - unvented + living space + + + + 316.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + living space + + + + 240.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 22.3 + + + + + outside + attic - unvented + gable + + + + 50.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 450.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 90 + 0.33 + 0.45 + 0.0 + + + + + 62.0 + 270 + 0.3 + 0.45 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 50.0 + to outside + + + + return + + CFM25 + 100.0 + to outside + + + + + supply + 4.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + electricity + storage water heater + basement - conditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - conditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - conditioned + electricity + 3.73 + true + 150.0 + + + + basement - conditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - conditioned + 650.0 + true + + + + basement - conditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 3276.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-atticroof-flat.xml b/workflow/sample_files/base-atticroof-flat.xml index 2b548d640c..4100ba1184 100644 --- a/workflow/sample_files/base-atticroof-flat.xml +++ b/workflow/sample_files/base-atticroof-flat.xml @@ -1,515 +1,515 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - - - - - - - - - - true - - - - - - - - - - - living space - 1350.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - - gypsum board - - 0.0 - false - - - 25.8 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - basement - conditioned - 150.0 - - - - return - 0.0 - basement - conditioned - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + + + + + + + + + + true + + + + + + + + + + + living space + 1350.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + + gypsum board + + 0.0 + false + + + 25.8 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + basement - conditioned + 150.0 + + + + return + 0.0 + basement - conditioned + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-atticroof-radiant-barrier.xml b/workflow/sample_files/base-atticroof-radiant-barrier.xml index a91d8372a2..bca892038b 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -1,509 +1,508 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - true - 2 - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 8.7 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + true + 2 + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 8.7 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index ec4f7e5ad6..6ee25879fc 100644 --- a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 25.8 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 2.1 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 25.8 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 2.1 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-atticroof-vented.xml b/workflow/sample_files/base-atticroof-vented.xml index 331d0e7563..8345afeb6c 100644 --- a/workflow/sample_files/base-atticroof-vented.xml +++ b/workflow/sample_files/base-atticroof-vented.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - true - - - - SLA - 0.003 - - - - - - - - - - - - true - - - - - - - - - - - attic - vented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - vented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - vented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - vented - 150.0 - - - - return - 0.0 - attic - vented - 50.0 - - - - - - - - - electricity - storage water heater - attic - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + true + + + + SLA + 0.003 + + + + + + + + + + + + true + + + + + + + + + + + attic - vented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - vented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - vented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - vented + 150.0 + + + + return + 0.0 + attic - vented + 50.0 + + + + + + + + + electricity + storage water heater + attic - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-battery.xml b/workflow/sample_files/base-battery.xml index c6e6c13d35..ba3b234ed2 100644 --- a/workflow/sample_files/base-battery.xml +++ b/workflow/sample_files/base-battery.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - outside - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + outside + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml index edcf411c7e..5f6e0ae5fe 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other multifamily buffer space - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - other multifamily buffer space - living space - floor - - - - 900.0 - - - 18.7 - - - - - other multifamily buffer space - living space - ceiling - - - - 900.0 - - gypsum board - - - - 18.7 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 150.0 - - - - return - 0.0 - other multifamily buffer space - 50.0 - - - - - - - - - electricity - storage water heater - other multifamily buffer space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other multifamily buffer space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other multifamily buffer space - electricity - 3.73 - true - 150.0 - - - - other multifamily buffer space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other multifamily buffer space - 650.0 - true - - - - other multifamily buffer space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other multifamily buffer space + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + other multifamily buffer space + living space + floor + + + + 900.0 + + + 18.7 + + + + + other multifamily buffer space + living space + ceiling + + + + 900.0 + + gypsum board + + + + 18.7 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 150.0 + + + + return + 0.0 + other multifamily buffer space + 50.0 + + + + + + + + + electricity + storage water heater + other multifamily buffer space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other multifamily buffer space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other multifamily buffer space + electricity + 3.73 + true + 150.0 + + + + other multifamily buffer space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other multifamily buffer space + 650.0 + true + + + + other multifamily buffer space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml index 3b298aa8b0..8fbf564c06 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml @@ -1,578 +1,578 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other heated space - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other multifamily buffer space - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other non-freezing space - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - other non-freezing space - living space - floor - - - - 550.0 - - - 18.7 - - - - - other multifamily buffer space - living space - floor - - - - 200.0 - - - 18.7 - - - - - other heated space - living space - floor - - - - 150.0 - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 50.0 - 270 - 0.33 - 0.45 - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - other housing unit - 50.0 - - - - supply - 4.0 - roof deck - 150.0 - - - - return - 0.0 - roof deck - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other heated space + living space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other multifamily buffer space + living space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other non-freezing space + living space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + other non-freezing space + living space + floor + + + + 550.0 + + + 18.7 + + + + + other multifamily buffer space + living space + floor + + + + 200.0 + + + 18.7 + + + + + other heated space + living space + floor + + + + 150.0 + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 50.0 + 270 + 0.33 + 0.45 + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + other housing unit + 50.0 + + + + supply + 4.0 + roof deck + 150.0 + + + + return + 0.0 + roof deck + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml index eacccbaa59..17ac7d0635 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other non-freezing space - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - other non-freezing space - living space - floor - - - - 900.0 - - - 18.7 - - - - - other non-freezing space - living space - ceiling - - - - 900.0 - - gypsum board - - - - 18.7 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other non-freezing space - 150.0 - - - - return - 0.0 - other non-freezing space - 50.0 - - - - - - - - - electricity - storage water heater - other non-freezing space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other non-freezing space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other non-freezing space - electricity - 3.73 - true - 150.0 - - - - other non-freezing space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other non-freezing space - 650.0 - true - - - - other non-freezing space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other non-freezing space + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + other non-freezing space + living space + floor + + + + 900.0 + + + 18.7 + + + + + other non-freezing space + living space + ceiling + + + + 900.0 + + gypsum board + + + + 18.7 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other non-freezing space + 150.0 + + + + return + 0.0 + other non-freezing space + 50.0 + + + + + + + + + electricity + storage water heater + other non-freezing space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other non-freezing space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other non-freezing space + electricity + 3.73 + true + 150.0 + + + + other non-freezing space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other non-freezing space + 650.0 + true + + + + other non-freezing space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml index 651cb02bce..0f9130c7dd 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other heated space - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - other heated space - living space - floor - - - - 900.0 - - - 18.7 - - - - - other heated space - living space - ceiling - - - - 900.0 - - gypsum board - - - - 18.7 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other heated space - 150.0 - - - - return - 0.0 - other heated space - 50.0 - - - - - - - - - electricity - storage water heater - other heated space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other heated space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other heated space - electricity - 3.73 - true - 150.0 - - - - other heated space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other heated space - 650.0 - true - - - - other heated space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other heated space + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + other heated space + living space + floor + + + + 900.0 + + + 18.7 + + + + + other heated space + living space + ceiling + + + + 900.0 + + gypsum board + + + + 18.7 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other heated space + 150.0 + + + + return + 0.0 + other heated space + 50.0 + + + + + + + + + electricity + storage water heater + other heated space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other heated space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other heated space + electricity + 3.73 + true + 150.0 + + + + other heated space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other heated space + 650.0 + true + + + + other heated space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml index 3526c8b0bc..bcf2f1da05 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other housing unit - 150.0 - - - - return - 0.0 - other housing unit - 50.0 - - - - - - - - - electricity - storage water heater - other housing unit - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other housing unit - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other housing unit - electricity - 3.73 - true - 150.0 - - - - other housing unit - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other housing unit - 650.0 - true - - - - other housing unit - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other housing unit + 150.0 + + + + return + 0.0 + other housing unit + 50.0 + + + + + + + + + electricity + storage water heater + other housing unit + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other housing unit + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other housing unit + electricity + 3.73 + true + 150.0 + + + + other housing unit + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other housing unit + 650.0 + true + + + + other housing unit + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml index 939714e57c..044e7d6157 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml @@ -1,436 +1,436 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml index 872796c2fa..2a028243fe 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml @@ -1,468 +1,468 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - 68.0 - 78.0 - - - - - - fan coil - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + 68.0 + 78.0 + + + + + + fan coil + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml index aabe1fb5a6..137bbb9694 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml @@ -1,438 +1,438 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - 68.0 - 78.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + 68.0 + 78.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml index 21cd5c56b6..709f751651 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml @@ -1,490 +1,490 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - 24000.0 - - EER - 12.8 - - - COP - 4.4 - - - - - - 68.0 - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + 24000.0 + + EER + 12.8 + + + COP + 4.4 + + + + + + 68.0 + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml index 081561df9e..2c1433bc61 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml @@ -1,485 +1,485 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - true - 6 - cooling tower - electricity - 1.0 - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - 24000.0 - - EER - 12.8 - - - COP - 4.4 - - - - - - 68.0 - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + true + 6 + cooling tower + electricity + 1.0 + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + 24000.0 + + EER + 12.8 + + + COP + 4.4 + + + + + + 68.0 + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml index fec17aeb59..31b6241fd0 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml @@ -1,417 +1,417 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml index d7374424d2..76813beb10 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml @@ -1,448 +1,448 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - 68.0 - - - - - - fan coil - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + 68.0 + + + + + + fan coil + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml index a3afb1a296..135f55c436 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml @@ -1,415 +1,415 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - 500.0 - - - - - 68.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + 500.0 + + + + + 68.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml new file mode 100644 index 0000000000..1d639185e3 --- /dev/null +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml @@ -0,0 +1,433 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 0.75 + + 600.0 + 150.0 + + + + + + + + electricity + + Percent + 1.0 + + 0.25 + + 0.0 + + + + + + 68.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml index ee59923b2c..b1011a6df0 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml @@ -1,418 +1,418 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - 68.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + 68.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml index 3962a6b0de..5cb2bfed1a 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - - COP - 4.4 - - - - - - 68.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + + COP + 4.4 + + + + + + 68.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml index cb33792d32..9a45efb637 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml @@ -1,417 +1,417 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - manual thermostat - 78.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + manual thermostat + 78.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml index f3e649ad1d..fc832b6eb6 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml @@ -1,448 +1,448 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - manual thermostat - 78.0 - - - - - - fan coil - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + manual thermostat + 78.0 + + + + + + fan coil + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml index 342b716cbe..aee5e334f7 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml @@ -1,418 +1,418 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - manual thermostat - 78.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + manual thermostat + 78.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml index e90a2a3f47..822415a96b 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - - EER - 12.8 - - - - - - manual thermostat - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + + EER + 12.8 + + + + + + manual thermostat + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml index 5a27aa89e0..3bc5c6dfbc 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml @@ -1,461 +1,461 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - cooling tower - electricity - 1.0 - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - - EER - 12.8 - - - - - - manual thermostat - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + cooling tower + electricity + 1.0 + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + + EER + 12.8 + + + + + + manual thermostat + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml index c606f9986a..29d7c33dbd 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml @@ -1,471 +1,471 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - true - propane - 85000.0 - 12000.0 - 18 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + true + propane + 85000.0 + 12000.0 + 18 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml index ea602a02b7..5d7e44af0b 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml @@ -1,463 +1,463 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - ground-to-air - electricity - 12000.0 - 12000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 12000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 0.0 - 600.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + ground-to-air + electricity + 12000.0 + 12000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 12000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 0.0 + 600.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml index 922c6ce78d..134fc81d0b 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml @@ -1,467 +1,467 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - natural gas - storage water heater - living space - true - 6 - 120.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - true - - other heated space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - true - other heated space - electricity - 3.73 - true - 150.0 - - - - true - - other heated space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + natural gas + storage water heater + living space + true + 6 + 120.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + true + + other heated space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + true + other heated space + electricity + 3.73 + true + 150.0 + + + + true + + other heated space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml index 1f9b9350d1..ac4bd915cc 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml @@ -1,681 +1,681 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 6000.0 - - AFUE - 0.92 - - 0.5 - - - - - - - - natural gas - 6000.0 - - AFUE - 0.92 - - 0.5 - - - - - central air conditioner - electricity - 6000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - central air conditioner - electricity - 6000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - - supply only - 1000.0 - 24.0 - true - true - 0.0 - 300.0 - - 100.0 - - natural gas - - 0.92 - COP - - 0.8 - - - electricity - - 4.0 - COP - - 0.8 - - - - - - energy recovery ventilator - 24.0 - 500.0 - true - true - 0.4 - 0.48 - 0.72 - 150.0 - - 50.0 - - natural gas - - 0.87 - COP - - 1.0 - - - electricity - - 3.5 - COP - - 1.0 - - - - - - heat recovery ventilator - 500.0 - 24.0 - true - true - 0.3 - 0.72 - 150.0 - - 50.0 - - electricity - - 4.0 - COP - - 1.0 - - - electricity - - 4.5 - COP - - 1.0 - - - - - - balanced - 300.0 - 24.0 - true - true - 0.3 - 150.0 - - 30.0 - - electricity - - 3.5 - COP - - 0.9 - - - electricity - - 4.0 - COP - - 1.0 - - - - - - exhaust only - 700.0 - 8.0 - true - true - 0.0 - 300.0 - - 70.0 - - - - - exhaust only - 50.0 - 14.0 - true - 10.0 - - - - central fan integrated supply - - air handler fan - - 160.0 - 8.0 - true - 150.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 6000.0 + + AFUE + 0.92 + + 0.5 + + + + + + + + natural gas + 6000.0 + + AFUE + 0.92 + + 0.5 + + + + + central air conditioner + electricity + 6000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + central air conditioner + electricity + 6000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + + supply only + 1000.0 + 24.0 + true + true + 0.0 + 300.0 + + 100.0 + + natural gas + + 0.92 + COP + + 0.8 + + + electricity + + 4.0 + COP + + 0.8 + + + + + + energy recovery ventilator + 24.0 + 500.0 + true + true + 0.4 + 0.48 + 0.72 + 150.0 + + 50.0 + + natural gas + + 0.87 + COP + + 1.0 + + + electricity + + 3.5 + COP + + 1.0 + + + + + + heat recovery ventilator + 500.0 + 24.0 + true + true + 0.3 + 0.72 + 150.0 + + 50.0 + + electricity + + 4.0 + COP + + 1.0 + + + electricity + + 4.5 + COP + + 1.0 + + + + + + balanced + 300.0 + 24.0 + true + true + 0.3 + 150.0 + + 30.0 + + electricity + + 3.5 + COP + + 0.9 + + + electricity + + 4.0 + COP + + 1.0 + + + + + + exhaust only + 700.0 + 8.0 + true + true + 0.0 + 300.0 + + 70.0 + + + + + exhaust only + 50.0 + 14.0 + true + 10.0 + + + + central fan integrated supply + + air handler fan + + 160.0 + 8.0 + true + 150.0 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml index c75da40dfc..edf5b9a294 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml @@ -1,500 +1,500 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - - supply only - 800.0 - 24.0 - true - true - 0.5 - 240.0 - - 80.0 - - natural gas - - 0.92 - COP - - 0.7 - - - electricity - - 4.0 - COP - - 0.8 - - - - - - exhaust only - 72.0 - 24.0 - true - 26.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + + supply only + 800.0 + 24.0 + true + true + 0.5 + 240.0 + + 80.0 + + natural gas + + 0.92 + COP + + 0.7 + + + electricity + + 4.0 + COP + + 0.8 + + + + + + exhaust only + 72.0 + 24.0 + true + 26.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml index d7543bf21f..36cbe19461 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml @@ -1,484 +1,484 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - - supply only - 800.0 - 24.0 - true - true - 0.5 - 240.0 - - 80.0 - - - - - exhaust only - 72.0 - 24.0 - true - 26.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + + supply only + 800.0 + 24.0 + true + true + 0.5 + 240.0 + + 80.0 + + + + + exhaust only + 72.0 + 24.0 + true + 26.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml index f4354a72e9..4b231f4e65 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml @@ -1,480 +1,480 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - true - ground - standard - fixed - 225 - 30.0 - 30000.0 - 0.14 - - - 18 - - - - - 0.96 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + true + ground + standard + fixed + 225 + 30.0 + 30000.0 + 0.14 + + + 18 + + + + + 0.96 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml index c26ecc4678..8fbada09bc 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml @@ -1,469 +1,469 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - natural gas - storage water heater - living space - true - 6 - 120.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - 6 - 220.0 - timer - - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + natural gas + storage water heater + living space + true + 6 + 120.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + 6 + 220.0 + timer + + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml index bf53a33641..b920b345ba 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml @@ -1,462 +1,462 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - natural gas - storage water heater - living space - true - 6 - 120.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + natural gas + storage water heater + living space + true + 6 + 120.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily.xml b/workflow/sample_files/base-bldgtype-multifamily.xml index 3505b2dcf6..1adfaf3c24 100644 --- a/workflow/sample_files/base-bldgtype-multifamily.xml +++ b/workflow/sample_files/base-bldgtype-multifamily.xml @@ -1,459 +1,459 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/workflow/sample_files/base-dhw-combi-tankless-outside.xml index 538e5cea88..ff1537379c 100644 --- a/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -1,505 +1,505 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with tankless coil - other exterior - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with tankless coil + other exterior + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-combi-tankless.xml b/workflow/sample_files/base-dhw-combi-tankless.xml index 5e9d52c29a..dbdaefd2c8 100644 --- a/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/workflow/sample_files/base-dhw-combi-tankless.xml @@ -1,505 +1,505 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with tankless coil - living space - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with tankless coil + living space + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index d3161450d5..d0a9172ac9 100644 --- a/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 84dd838c08..96fa0a905b 100644 --- a/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index af1c9db32c..c7b3002a1a 100644 --- a/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 80.0 + 1.0 + 2.3 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/workflow/sample_files/base-dhw-desuperheater-tankless.xml index ecf7d73a23..cdd9dfc120 100644 --- a/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - living space - 1.0 - 0.99 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + living space + 1.0 + 0.99 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 2642cce62e..ddd4c1915a 100644 --- a/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-desuperheater.xml b/workflow/sample_files/base-dhw-desuperheater.xml index 6d5847306a..52ebeb53f3 100644 --- a/workflow/sample_files/base-dhw-desuperheater.xml +++ b/workflow/sample_files/base-dhw-desuperheater.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-dwhr.xml b/workflow/sample_files/base-dhw-dwhr.xml index e0f67ff506..15c082ede2 100644 --- a/workflow/sample_files/base-dhw-dwhr.xml +++ b/workflow/sample_files/base-dhw-dwhr.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - all - true - 0.55 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + all + true + 0.55 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-indirect-dse.xml b/workflow/sample_files/base-dhw-indirect-dse.xml index 780ecf7fdc..181f41cd81 100644 --- a/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/workflow/sample_files/base-dhw-indirect-dse.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - DSE - - 0.8 - 0.7 - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + DSE + + 0.8 + 0.7 + + + + + + space-heating boiler with storage tank + living space + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-indirect-outside.xml b/workflow/sample_files/base-dhw-indirect-outside.xml index 2815dd0425..d0cc312bdd 100644 --- a/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/workflow/sample_files/base-dhw-indirect-outside.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - other exterior - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + other exterior + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/workflow/sample_files/base-dhw-indirect-standbyloss.xml index 32b5184e22..e2a0d5225f 100644 --- a/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -1,510 +1,510 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - - F/hr - 1.0 - - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + living space + 50.0 + 1.0 + + F/hr + 1.0 + + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index 4f06276eba..389dd7a082 100644 --- a/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -1,514 +1,514 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + living space + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-indirect.xml b/workflow/sample_files/base-dhw-indirect.xml index 4c1381658f..ee577564d2 100644 --- a/workflow/sample_files/base-dhw-indirect.xml +++ b/workflow/sample_files/base-dhw-indirect.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + living space + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-jacket-electric.xml b/workflow/sample_files/base-dhw-jacket-electric.xml index d9e6b94dc1..6c8e4dec28 100644 --- a/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/workflow/sample_files/base-dhw-jacket-electric.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - - - 10.0 - - - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + + + 10.0 + + + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-jacket-gas.xml b/workflow/sample_files/base-dhw-jacket-gas.xml index 73ae450ba9..d14442f424 100644 --- a/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/workflow/sample_files/base-dhw-jacket-gas.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - - - 10.0 - - - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + living space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + + + 10.0 + + + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-jacket-hpwh.xml b/workflow/sample_files/base-dhw-jacket-hpwh.xml index 11bba9a264..d31a82596c 100644 --- a/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - - - 10.0 - - - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 80.0 + 1.0 + 2.3 + + + 10.0 + + + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-jacket-indirect.xml b/workflow/sample_files/base-dhw-jacket-indirect.xml index 60f6126f7b..367abcdf04 100644 --- a/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -1,511 +1,511 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - - - 10.0 - - - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + living space + 50.0 + 1.0 + + + 10.0 + + + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/workflow/sample_files/base-dhw-low-flow-fixtures.xml index c9008537ad..375fc0bc86 100644 --- a/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - true - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + true + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-multiple.xml b/workflow/sample_files/base-dhw-multiple.xml index ff41c81fbe..e6334baa7e 100644 --- a/workflow/sample_files/base-dhw-multiple.xml +++ b/workflow/sample_files/base-dhw-multiple.xml @@ -1,564 +1,564 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 0.2 - 18767.0 - 0.95 - 125.0 - - - - natural gas - storage water heater - living space - 50.0 - 0.2 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - electricity - heat pump water heater - living space - 80.0 - 0.2 - 2.3 - 125.0 - - - - electricity - instantaneous water heater - living space - 0.2 - 0.99 - 125.0 - - - - natural gas - instantaneous water heater - living space - 0.1 - 0.82 - 125.0 - - - - space-heating boiler with storage tank - living space - 50.0 - 0.1 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 0.2 + 18767.0 + 0.95 + 125.0 + + + + natural gas + storage water heater + living space + 50.0 + 0.2 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + electricity + heat pump water heater + living space + 80.0 + 0.2 + 2.3 + 125.0 + + + + electricity + instantaneous water heater + living space + 0.2 + 0.99 + 125.0 + + + + natural gas + instantaneous water heater + living space + 0.1 + 0.82 + 125.0 + + + + space-heating boiler with storage tank + living space + 50.0 + 0.1 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 0.65 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-none.xml b/workflow/sample_files/base-dhw-none.xml index a1362213f3..aa67c3afdf 100644 --- a/workflow/sample_files/base-dhw-none.xml +++ b/workflow/sample_files/base-dhw-none.xml @@ -1,490 +1,490 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-recirc-demand.xml b/workflow/sample_files/base-dhw-recirc-demand.xml index f68de79744..71fd7fbc2b 100644 --- a/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/workflow/sample_files/base-dhw-recirc-demand.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - presence sensor demand control - 50.0 - 50.0 - 50.0 - - - - 3.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + presence sensor demand control + 50.0 + 50.0 + 50.0 + + + + 3.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-recirc-manual.xml b/workflow/sample_files/base-dhw-recirc-manual.xml index 23ac9346c1..c63468982b 100644 --- a/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/workflow/sample_files/base-dhw-recirc-manual.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - manual demand control - 50.0 - 50.0 - 50.0 - - - - 3.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + manual demand control + 50.0 + 50.0 + 50.0 + + + + 3.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/workflow/sample_files/base-dhw-recirc-nocontrol.xml index 3ae92a7616..17fcbe17eb 100644 --- a/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - no control - 50.0 - 50.0 - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + no control + 50.0 + 50.0 + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-recirc-temperature.xml b/workflow/sample_files/base-dhw-recirc-temperature.xml index f4bcda54bf..17e611c08c 100644 --- a/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - temperature - 50.0 - 50.0 - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + temperature + 50.0 + 50.0 + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-recirc-timer.xml b/workflow/sample_files/base-dhw-recirc-timer.xml index cd37103fc9..074f59904b 100644 --- a/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/workflow/sample_files/base-dhw-recirc-timer.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - timer - 50.0 - 50.0 - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + timer + 50.0 + 50.0 + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index ff0940f52c..b29a53f7a9 100644 --- a/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - evacuated tube - 180 - 20.0 - 0.5 - 0.2799 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + evacuated tube + 180 + 20.0 + 0.5 + 0.2799 + 60.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index 0b0e2f14ba..9f16985078 100644 --- a/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-solar-direct-ics.xml b/workflow/sample_files/base-dhw-solar-direct-ics.xml index 7a83744c2e..6cd8b5d57e 100644 --- a/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - integrated collector storage - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + integrated collector storage + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-solar-fraction.xml b/workflow/sample_files/base-dhw-solar-fraction.xml index 9acedfca7a..3fc51181bc 100644 --- a/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-solar-fraction.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index d5e577a626..eb111696bf 100644 --- a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid indirect - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid indirect + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index 092413cad7..2faf33fc75 100644 --- a/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - passive thermosyphon - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + passive thermosyphon + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-coal.xml b/workflow/sample_files/base-dhw-tank-coal.xml index 39c5716df1..09968019c3 100644 --- a/workflow/sample_files/base-dhw-tank-coal.xml +++ b/workflow/sample_files/base-dhw-tank-coal.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - coal - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + coal + storage water heater + living space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml index ff60c41e73..1dd2e707cd 100644 --- a/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-elec-uef.xml b/workflow/sample_files/base-dhw-tank-elec-uef.xml index c321db1699..12f4d56b38 100644 --- a/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 30.0 - 1.0 - 15354.0 - 0.93 - low - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 30.0 + 1.0 + 15354.0 + 0.93 + low + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-gas-outside.xml b/workflow/sample_files/base-dhw-tank-gas-outside.xml index 868458af1f..ee0c1ef5ef 100644 --- a/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - other exterior - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + other exterior + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml index 6b6bad9b58..23001c31c4 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml @@ -1,555 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 30.0 - 1.0 - 30000.0 - 0.59 - 56.0 - 0.75 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + living space + 30.0 + 1.0 + 30000.0 + 0.59 + 56.0 + 0.75 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-gas-uef.xml b/workflow/sample_files/base-dhw-tank-gas-uef.xml index fffa42b2da..ac2c63170e 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -1,555 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 30.0 - 1.0 - 30000.0 - 0.59 - medium - 0.75 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + living space + 30.0 + 1.0 + 30000.0 + 0.59 + medium + 0.75 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-gas.xml b/workflow/sample_files/base-dhw-tank-gas.xml index e06c008724..ffd12dcc7a 100644 --- a/workflow/sample_files/base-dhw-tank-gas.xml +++ b/workflow/sample_files/base-dhw-tank-gas.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + living space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml index b202374fbf..efb6e3d5ce 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-operating-modes.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 50.0 - 1.0 - 3.75 - medium - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-operating-modes.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 50.0 + 1.0 + 3.75 + medium + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml index 1734f988ae..5943f0d80f 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 50.0 - 1.0 - 3.75 - heat pump only - medium - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 50.0 + 1.0 + 3.75 + heat pump only + medium + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index c6fcf58c63..62ecf660c4 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - other exterior - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + other exterior + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index f6bdac7c7b..ac6cf55266 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 50.0 - 1.0 - 3.75 - medium - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 50.0 + 1.0 + 3.75 + medium + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index a4844639eb..cbb4b337fc 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index 7ab303083c..a1a82c6542 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid indirect - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid indirect + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-heat-pump.xml b/workflow/sample_files/base-dhw-tank-heat-pump.xml index 67b9a1a5cf..f10260058c 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + living space + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml index 8f8972a3fa..c82fee9fc4 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - stratified - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + stratified + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml index 93a94ce836..20232c1d08 100644 --- a/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +++ b/workflow/sample_files/base-dhw-tank-model-type-stratified.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - stratified - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + stratified + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-oil.xml b/workflow/sample_files/base-dhw-tank-oil.xml index 1a50224daa..54cab7421f 100644 --- a/workflow/sample_files/base-dhw-tank-oil.xml +++ b/workflow/sample_files/base-dhw-tank-oil.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - fuel oil - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + fuel oil + storage water heater + living space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tank-wood.xml b/workflow/sample_files/base-dhw-tank-wood.xml index 104b7442dc..33e83dd63e 100644 --- a/workflow/sample_files/base-dhw-tank-wood.xml +++ b/workflow/sample_files/base-dhw-tank-wood.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - wood - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + wood + storage water heater + living space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml index 79947c9e3c..4945493747 100644 --- a/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +++ b/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + living space + 1.0 + 0.82 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/workflow/sample_files/base-dhw-tankless-electric-outside.xml index 70d29a0c22..1f3d25281a 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - other exterior - 0.92 - 1.0 - 0.99 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + other exterior + 0.92 + 1.0 + 0.99 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/workflow/sample_files/base-dhw-tankless-electric-uef.xml index a5043592b3..f9c9420ede 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - living space - 1.0 - 0.98 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + living space + 1.0 + 0.98 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-electric.xml b/workflow/sample_files/base-dhw-tankless-electric.xml index ef0eadd179..2013619562 100644 --- a/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/workflow/sample_files/base-dhw-tankless-electric.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - living space - 1.0 - 0.99 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + living space + 1.0 + 0.99 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/workflow/sample_files/base-dhw-tankless-gas-uef.xml index 6edb209fce..c000a872cb 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.93 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + living space + 1.0 + 0.93 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index 5b51857697..3f65ad52cc 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + living space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index 0a940432b1..9536a9026c 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid indirect - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + living space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid indirect + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-gas.xml b/workflow/sample_files/base-dhw-tankless-gas.xml index 52e3662a4a..e40dff665f 100644 --- a/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/workflow/sample_files/base-dhw-tankless-gas.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + living space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-dhw-tankless-propane.xml b/workflow/sample_files/base-dhw-tankless-propane.xml index 829d712bfb..db308c9671 100644 --- a/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/workflow/sample_files/base-dhw-tankless-propane.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - propane - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + propane + instantaneous water heater + living space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-2stories-garage.xml b/workflow/sample_files/base-enclosure-2stories-garage.xml index df2e09bace..1589a2258b 100644 --- a/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -1,685 +1,684 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 3250.0 - 26000.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 26000.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - living space - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - garage - - - - 320.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - outside - living space - - - - 2080.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - garage - living space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - garage - living space - floor - - - - 400.0 - - - 39.3 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - garage - 400.0 - 4.0 - 40.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 950.0 - 4.0 - 110.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 216.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 216.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 70.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 36000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 112.5 - - - - return - 0.0 - attic - unvented - 37.5 - - - - supply - 4.0 - exterior wall - 37.5 - - - - return - 0.0 - living space - 12.5 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2957.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 3250.0 + 26000.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 26000.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + living space + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 320.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + living space + + + + 2080.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + living space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + garage + living space + floor + + + + 400.0 + + + 39.3 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 400.0 + 4.0 + 40.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 950.0 + 4.0 + 110.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 216.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 216.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 36000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 112.5 + + + + return + 0.0 + attic - unvented + 37.5 + + + + supply + 4.0 + exterior wall + 37.5 + + + + return + 0.0 + living space + 12.5 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2957.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-2stories.xml b/workflow/sample_files/base-enclosure-2stories.xml index 9dbae18cc5..4e6fdce47c 100644 --- a/workflow/sample_files/base-enclosure-2stories.xml +++ b/workflow/sample_files/base-enclosure-2stories.xml @@ -1,580 +1,580 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 4050.0 - 32400.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 32400.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - living space - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 2400.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 216.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 216.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 36000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 112.5 - - - - return - 0.0 - attic - unvented - 37.5 - - - - supply - 4.0 - exterior wall - 37.5 - - - - return - 0.0 - living space - 12.5 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 3685.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 4050.0 + 32400.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 32400.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + living space + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 2400.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 216.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 216.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 36000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 112.5 + + + + return + 0.0 + attic - unvented + 37.5 + + + + supply + 4.0 + exterior wall + 37.5 + + + + return + 0.0 + living space + 12.5 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 3685.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-beds-1.xml b/workflow/sample_files/base-enclosure-beds-1.xml index aeff2ca019..f5a6efb65b 100644 --- a/workflow/sample_files/base-enclosure-beds-1.xml +++ b/workflow/sample_files/base-enclosure-beds-1.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 1 - 1 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 482.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 1 + 1 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 482.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-beds-2.xml b/workflow/sample_files/base-enclosure-beds-2.xml index fc29f6bb0f..4c7b071ff2 100644 --- a/workflow/sample_files/base-enclosure-beds-2.xml +++ b/workflow/sample_files/base-enclosure-beds-2.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 2 - 1 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 551.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 2 + 1 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 551.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-beds-4.xml b/workflow/sample_files/base-enclosure-beds-4.xml index 5d56306b14..02da6d54f2 100644 --- a/workflow/sample_files/base-enclosure-beds-4.xml +++ b/workflow/sample_files/base-enclosure-beds-4.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 4 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 689.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 4 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 689.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-beds-5.xml b/workflow/sample_files/base-enclosure-beds-5.xml index 8a4b968f79..815f9b3fb9 100644 --- a/workflow/sample_files/base-enclosure-beds-5.xml +++ b/workflow/sample_files/base-enclosure-beds-5.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 5 - 3 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 758.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 5 + 3 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 758.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-garage.xml b/workflow/sample_files/base-enclosure-garage.xml index 537a800ad3..085cb8a91a 100644 --- a/workflow/sample_files/base-enclosure-garage.xml +++ b/workflow/sample_files/base-enclosure-garage.xml @@ -1,659 +1,658 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 2180.2 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - garage - - - - 560.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - outside - living space - - - - 960.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - garage - living space - - - - 240.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 337.5 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - garage - ceiling - - - - 600.0 - - - 2.1 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - garage - 600.0 - 4.0 - 70.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 1350.0 - 4.0 - 120.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 70.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - garage - 150.0 - - - - return - 0.0 - garage - 50.0 - - - - - - - - - electricity - storage water heater - garage - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - garage - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - garage - electricity - 3.73 - true - 150.0 - - - - garage - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - garage - 650.0 - true - - - - garage - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + living space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + living space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + true + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index 36a7adc7b5..8e517fe6a5 100644 --- a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 45.0 - - ACH - 2.8 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 45.0 + + ACH + 2.8 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index 0c65811ebb..45552ea1dd 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 45.0 - - CFM - 1008.5 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 45.0 + + CFM + 1008.5 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-infil-cfm50.xml b/workflow/sample_files/base-enclosure-infil-cfm50.xml index ee7ee5cad8..2d73307472 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - CFM - 1080.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + CFM + 1080.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-infil-flue.xml b/workflow/sample_files/base-enclosure-infil-flue.xml index f91b3f1607..21dfa9b7ca 100644 --- a/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/workflow/sample_files/base-enclosure-infil-flue.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - true - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + true + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 2762490cfc..36f8e1de40 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - - ACHnatural - 0.2 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + + ACHnatural + 0.2 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-orientations.xml b/workflow/sample_files/base-enclosure-orientations.xml index 3ffdee38fb..084fdf1935 100644 --- a/workflow/sample_files/base-enclosure-orientations.xml +++ b/workflow/sample_files/base-enclosure-orientations.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - north - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - east - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - south - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - west - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - north - 4.4 - - - - - 20.0 - south - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + north + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + east + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + south + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + west + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + north + 4.4 + + + + + 20.0 + south + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-overhangs.xml b/workflow/sample_files/base-enclosure-overhangs.xml index 2c59c3a4cc..451d3b2f78 100644 --- a/workflow/sample_files/base-enclosure-overhangs.xml +++ b/workflow/sample_files/base-enclosure-overhangs.xml @@ -1,573 +1,573 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 2.5 - 0.0 - 4.0 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 1.5 - 2.0 - 6.0 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 0.0 - 0.0 - 0.0 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 1.5 - 2.0 - 7.0 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 2.5 + 0.0 + 4.0 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 1.5 + 2.0 + 6.0 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 0.0 + 0.0 + 0.0 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 1.5 + 2.0 + 7.0 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-rooftypes.xml b/workflow/sample_files/base-enclosure-rooftypes.xml index e2dd241aee..04e82cac35 100644 --- a/workflow/sample_files/base-enclosure-rooftypes.xml +++ b/workflow/sample_files/base-enclosure-rooftypes.xml @@ -1,690 +1,690 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 188.6625 - slate or tile shingles - light - 0.92 - - gypsum board - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - metal surfacing - reflective - 0.92 - - plaster - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - wood shingles or shakes - dark - 0.92 - - wood - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - shingles - medium dark - 0.92 - - gypsum board - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - plastic/rubber/synthetic sheeting - light - 0.92 - - plaster - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - expanded polystyrene sheathing - medium - 0.92 - - wood - 0.5 - - 6.0 - false - - - 7.0 - - - - - attic - unvented - 188.6625 - concrete - light - 0.92 - - gypsum board - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - cool roof - reflective - 0.92 - - plaster - 0.5 - - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 188.6625 + slate or tile shingles + light + 0.92 + + gypsum board + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + metal surfacing + reflective + 0.92 + + plaster + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + wood shingles or shakes + dark + 0.92 + + wood + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + shingles + medium dark + 0.92 + + gypsum board + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + plastic/rubber/synthetic sheeting + light + 0.92 + + plaster + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + expanded polystyrene sheathing + medium + 0.92 + + wood + 0.5 + + 6.0 + false + + + 7.0 + + + + + attic - unvented + 188.6625 + concrete + light + 0.92 + + gypsum board + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + cool roof + reflective + 0.92 + + plaster + 0.5 + + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml index 3126e6a283..09935c3eb7 100644 --- a/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-skylights-physical-properties.xml @@ -1,590 +1,590 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - - - - single-pane - tinted - - - 1.0 - 1.0 - - - - - - 15.0 - 180 - - - true - - - double-pane - low-e - krypton - - - 1.0 - 1.0 - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + + + + single-pane + tinted + + + 1.0 + 1.0 + + + + + + 15.0 + 180 + + + true + + + double-pane + low-e + krypton + + + 1.0 + 1.0 + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-skylights-shading.xml b/workflow/sample_files/base-enclosure-skylights-shading.xml index e781e3fffb..c1ee63992b 100644 --- a/workflow/sample_files/base-enclosure-skylights-shading.xml +++ b/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -1,591 +1,591 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - 0.33 - 0.45 - - - 0.1 - 0.9 - - - - 0.01 - 0.99 - - - - - - 15.0 - 180 - 0.33 - 0.45 - - - 0.5 - 0.0 - - - - 0.5 - 1.0 - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + 0.33 + 0.45 + + + 0.1 + 0.9 + + + + 0.01 + 0.99 + + + + + + 15.0 + 180 + 0.33 + 0.45 + + + 0.5 + 0.0 + + + + 0.5 + 1.0 + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-skylights-storms.xml b/workflow/sample_files/base-enclosure-skylights-storms.xml index 1d47da1628..81ede540ae 100644 --- a/workflow/sample_files/base-enclosure-skylights-storms.xml +++ b/workflow/sample_files/base-enclosure-skylights-storms.xml @@ -1,589 +1,589 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - 0.6 - 0.45 - - - 1.0 - 1.0 - - - - clear - - - - - - 15.0 - 180 - 0.6 - 0.45 - - - 1.0 - 1.0 - - - - clear - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + 0.6 + 0.45 + + + 1.0 + 1.0 + + + + clear + + + + + + 15.0 + 180 + 0.6 + 0.45 + + + 1.0 + 1.0 + + + + clear + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-skylights.xml b/workflow/sample_files/base-enclosure-skylights.xml index 180a61d0a4..96ff9fa356 100644 --- a/workflow/sample_files/base-enclosure-skylights.xml +++ b/workflow/sample_files/base-enclosure-skylights.xml @@ -1,581 +1,581 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - 0.33 - 0.45 - - - 1.0 - 1.0 - - - - - - 15.0 - 180 - 0.33 - 0.45 - - - 1.0 - 1.0 - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + 0.33 + 0.45 + + + 1.0 + 1.0 + + + + + + 15.0 + 180 + 0.33 + 0.45 + + + 1.0 + 1.0 + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-split-level.xml b/workflow/sample_files/base-enclosure-split-level.xml index 9fe8a7c7a4..f2047f8b9c 100644 --- a/workflow/sample_files/base-enclosure-split-level.xml +++ b/workflow/sample_files/base-enclosure-split-level.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.5 - 1.5 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.5 + 1.5 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-thermal-mass.xml b/workflow/sample_files/base-enclosure-thermal-mass.xml index 50a773dd6a..8617550316 100644 --- a/workflow/sample_files/base-enclosure-thermal-mass.xml +++ b/workflow/sample_files/base-enclosure-thermal-mass.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 0.8 - - gypsum board - 0.25 - - - - 0.8 - heavy-weight - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 0.8 + + gypsum board + 0.25 + + + + 0.8 + heavy-weight + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-walltypes.xml b/workflow/sample_files/base-enclosure-walltypes.xml index d7ab020da0..dceb522c66 100644 --- a/workflow/sample_files/base-enclosure-walltypes.xml +++ b/workflow/sample_files/base-enclosure-walltypes.xml @@ -1,866 +1,866 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 11.0 - aluminum siding - dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - asbestos siding - medium - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - brick veneer - reflective - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - composite shingle siding - dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - fiber cement siding - medium dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - masonite siding - light - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - stucco - medium - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - synthetic stucco - medium dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - vinyl siding - light - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - none - medium - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 109.0 - aluminum siding - reflective - 0.92 - - gypsum board - 0.5 - - - - 12.0 - - - - - outside - living space - - - - 109.0 - asbestos siding - light - 0.92 - - gypsum board - 1.0 - - - - 28.7 - - - - - outside - living space - - - - 109.0 - brick veneer - medium dark - 0.92 - - gypsum composite board - 0.5 - - - - 21.0 - - - - - outside - living space - - - - 109.0 - composite shingle siding - reflective - 0.92 - - plaster - 0.5 - - - - 7.1 - - - - - outside - living space - - - - 109.0 - fiber cement siding - medium - 0.92 - - wood - 0.5 - - - - 16.1 - - - - - outside - living space - - - - 109.0 - masonite siding - dark - 0.92 - - none - - - - 1.35 - - - - - outside - living space - - - - 109.0 - stucco - light - 0.92 - - gypsum board - 0.5 - - - - 8.1 - - - - - outside - living space - - - - 109.0 - synthetic stucco - medium - 0.92 - - gypsum board - 1.0 - - - - 5.4 - - - - - outside - living space - - - - 109.0 - vinyl siding - dark - 0.92 - - gypsum composite board - 0.5 - - - - 58.8 - - - - - outside - living space - - - - 109.0 - none - medium - 0.92 - - plaster - 0.5 - - - - 7.9 - - - - - outside - living space - - - - 109.0 - aluminum siding - reflective - 0.92 - - wood - 0.5 - - - - 5.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 13.0 - 0 - 0.33 - 0.45 - 0.67 - - - - - 9.0 - 90 - 0.33 - 0.45 - 0.67 - - - - - 13.0 - 180 - 0.33 - 0.45 - 0.67 - - - - - 9.0 - 270 - 0.33 - 0.45 - 0.67 - - - - - - - - 20.0 - 0 - 4.4 - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 11.0 + aluminum siding + dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + asbestos siding + medium + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + brick veneer + reflective + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + composite shingle siding + dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + fiber cement siding + medium dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + masonite siding + light + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + stucco + medium + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + synthetic stucco + medium dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + vinyl siding + light + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + none + medium + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 109.0 + aluminum siding + reflective + 0.92 + + gypsum board + 0.5 + + + + 12.0 + + + + + outside + living space + + + + 109.0 + asbestos siding + light + 0.92 + + gypsum board + 1.0 + + + + 28.7 + + + + + outside + living space + + + + 109.0 + brick veneer + medium dark + 0.92 + + gypsum composite board + 0.5 + + + + 21.0 + + + + + outside + living space + + + + 109.0 + composite shingle siding + reflective + 0.92 + + plaster + 0.5 + + + + 7.1 + + + + + outside + living space + + + + 109.0 + fiber cement siding + medium + 0.92 + + wood + 0.5 + + + + 16.1 + + + + + outside + living space + + + + 109.0 + masonite siding + dark + 0.92 + + none + + + + 1.35 + + + + + outside + living space + + + + 109.0 + stucco + light + 0.92 + + gypsum board + 0.5 + + + + 8.1 + + + + + outside + living space + + + + 109.0 + synthetic stucco + medium + 0.92 + + gypsum board + 1.0 + + + + 5.4 + + + + + outside + living space + + + + 109.0 + vinyl siding + dark + 0.92 + + gypsum composite board + 0.5 + + + + 58.8 + + + + + outside + living space + + + + 109.0 + none + medium + 0.92 + + plaster + 0.5 + + + + 7.9 + + + + + outside + living space + + + + 109.0 + aluminum siding + reflective + 0.92 + + wood + 0.5 + + + + 5.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 13.0 + 0 + 0.33 + 0.45 + 0.67 + + + + + 9.0 + 90 + 0.33 + 0.45 + 0.67 + + + + + 13.0 + 180 + 0.33 + 0.45 + 0.67 + + + + + 9.0 + 270 + 0.33 + 0.45 + 0.67 + + + + + + + + 20.0 + 0 + 4.4 + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-windows-none.xml b/workflow/sample_files/base-enclosure-windows-none.xml index 8c4cd22b77..ad9c05405b 100644 --- a/workflow/sample_files/base-enclosure-windows-none.xml +++ b/workflow/sample_files/base-enclosure-windows-none.xml @@ -1,495 +1,495 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-windows-physical-properties.xml b/workflow/sample_files/base-enclosure-windows-physical-properties.xml index 8195a415aa..186698cc27 100644 --- a/workflow/sample_files/base-enclosure-windows-physical-properties.xml +++ b/workflow/sample_files/base-enclosure-windows-physical-properties.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - - - - single-pane - tinted - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - - - - double-pane - reflective - air - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - - - true - - - double-pane - low-e - argon - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - glass block - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + + + + single-pane + tinted + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + + + + double-pane + reflective + air + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + + + true + + + double-pane + low-e + argon + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + glass block + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-windows-shading.xml b/workflow/sample_files/base-enclosure-windows-shading.xml index 25c221fcfc..fca53ae547 100644 --- a/workflow/sample_files/base-enclosure-windows-shading.xml +++ b/workflow/sample_files/base-enclosure-windows-shading.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.5 - 0.5 - - - - 0.5 - 0.5 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.1 - 0.9 - - - - 0.01 - 0.99 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.0 - 1.0 - - - - 0.0 - 1.0 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.5 + 0.5 + + + + 0.5 + 0.5 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.1 + 0.9 + + + + 0.01 + 0.99 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.0 + 1.0 + + + + 0.0 + 1.0 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-enclosure-windows-storms.xml b/workflow/sample_files/base-enclosure-windows-storms.xml index 6fed81d661..5e1cb2221a 100644 --- a/workflow/sample_files/base-enclosure-windows-storms.xml +++ b/workflow/sample_files/base-enclosure-windows-storms.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - 72.0 - 90 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - 108.0 - 180 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - 72.0 - 270 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + 72.0 + 90 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + 108.0 + 180 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + 72.0 + 270 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-ambient.xml b/workflow/sample_files/base-foundation-ambient.xml index 6e3aebaf23..18a0fe007e 100644 --- a/workflow/sample_files/base-foundation-ambient.xml +++ b/workflow/sample_files/base-foundation-ambient.xml @@ -1,494 +1,494 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-basement-garage.xml b/workflow/sample_files/base-foundation-basement-garage.xml index c2b59babe6..66703e78b3 100644 --- a/workflow/sample_files/base-foundation-basement-garage.xml +++ b/workflow/sample_files/base-foundation-basement-garage.xml @@ -1,666 +1,665 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 1900.0 - 15200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 15200.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - attic - unvented - 2179.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - garage - basement - conditioned - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - garage - - - - 320.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - garage - living space - floor - - - - 400.0 - - - 39.3 - - - - - - - basement - conditioned - 950.0 - 4.0 - 110.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - garage - 400.0 - 4.0 - 40.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 70.0 - 180 - 4.4 - - - - - 4.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1729.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 1900.0 + 15200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 15200.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + attic - unvented + 2179.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + garage + basement - conditioned + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + garage + + + + 320.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + garage + living space + floor + + + + 400.0 + + + 39.3 + + + + + + + basement - conditioned + 950.0 + 4.0 + 110.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + garage + 400.0 + 4.0 + 40.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + 4.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1729.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml b/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml new file mode 100644 index 0000000000..974608e93f --- /dev/null +++ b/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml @@ -0,0 +1,496 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + manufactured home + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + attic - unvented + 1391.5 + asphalt or fiberglass shingles + 0.7 + 0.92 + 3.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1469.7 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 42.2 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + manufactured home underbelly + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + 140.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 140.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 0.0 + manufactured home belly + 150.0 + + + + return + 0.0 + manufactured home belly + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-belly-wing-skirt.xml b/workflow/sample_files/base-foundation-belly-wing-skirt.xml new file mode 100644 index 0000000000..7034d4d7d0 --- /dev/null +++ b/workflow/sample_files/base-foundation-belly-wing-skirt.xml @@ -0,0 +1,496 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + manufactured home + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + attic - unvented + 1391.5 + asphalt or fiberglass shingles + 0.7 + 0.92 + 3.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1469.7 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 42.2 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + manufactured home underbelly + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + 140.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 140.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 0.0 + manufactured home belly + 150.0 + + + + return + 0.0 + manufactured home belly + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-complex.xml b/workflow/sample_files/base-foundation-complex.xml index 62f191d4d7..4b994747f7 100644 --- a/workflow/sample_files/base-foundation-complex.xml +++ b/workflow/sample_files/base-foundation-complex.xml @@ -1,653 +1,653 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 160.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 8.0 - 240.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 4.0 - 160.0 - 8.0 - 3.0 - - gypsum board - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 4.0 - 200.0 - 8.0 - 3.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 675.0 - 4.0 - 75.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 675.0 - 4.0 - 75.0 - - - - 5.0 - 1.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 160.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 240.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 320.0 + 8.0 + 3.0 + + gypsum board + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 400.0 + 8.0 + 3.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1150.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 200.0 + 4.0 + 30.0 + + + + 5.0 + 1.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + 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-hvac-portable-heater-gas-only.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml similarity index 86% rename from workflow/sample_files/base-hvac-portable-heater-gas-only.xml rename to workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml index 9995b8de4e..d0c3c4ee55 100644 --- a/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml @@ -1,501 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - natural gas - 36000.0 - - Percent - 1.0 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 10.0 + true + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index 1527fd3bc6..73631ba8e3 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 10.0 - 4.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 10.0 + 4.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml index 62cb0ab065..de554e4cc1 100644 --- a/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +++ b/workflow/sample_files/base-foundation-conditioned-crawlspace.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 16200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 16200.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - conditioned - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - crawlspace - conditioned - 150.0 - - - - return - 0.0 - crawlspace - conditioned - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - conditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 16200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 16200.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - conditioned + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + crawlspace - conditioned + 150.0 + + + + return + 0.0 + crawlspace - conditioned + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - conditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-multiple.xml b/workflow/sample_files/base-foundation-multiple.xml index 01cced58f9..18b11f42d9 100644 --- a/workflow/sample_files/base-foundation-multiple.xml +++ b/workflow/sample_files/base-foundation-multiple.xml @@ -1,666 +1,666 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - false - - - false - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - crawlspace - unvented - basement - unconditioned - 115.6 - 0.7 - 0.92 - - - 4.0 - - - - - outside - crawlspace - unvented - 81.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 600.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - crawlspace - unvented - basement - unconditioned - 8.0 - 360.0 - 8.0 - 4.0 - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - crawlspace - unvented - 4.0 - 600.0 - 8.0 - 3.0 - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 675.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - crawlspace - unvented - living space - floor - - - - 675.0 - - - 18.7 - - - - - - - basement - unconditioned - 675.0 - 4.0 - 75.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - crawlspace - unvented - 675.0 - 0.0 - 75.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + false + + + false + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + crawlspace - unvented + basement - unconditioned + 115.6 + 0.7 + 0.92 + + + 4.0 + + + + + outside + crawlspace - unvented + 81.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 600.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + crawlspace - unvented + basement - unconditioned + 8.0 + 360.0 + 8.0 + 4.0 + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + crawlspace - unvented + 4.0 + 600.0 + 8.0 + 3.0 + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + living space + floor + + + + 675.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + crawlspace - unvented + living space + floor + + + + 675.0 + + + 18.7 + + + + + + + basement - unconditioned + 675.0 + 4.0 + 75.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + crawlspace - unvented + 675.0 + 0.0 + 75.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-slab.xml b/workflow/sample_files/base-foundation-slab.xml index 16f6f98a77..27ac401741 100644 --- a/workflow/sample_files/base-foundation-slab.xml +++ b/workflow/sample_files/base-foundation-slab.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index 9682918d46..a4ca2bece2 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -1,602 +1,602 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 4.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 20.0 - 0 - 0.33 - 0.45 - 0.0 - - - - - 10.0 - 90 - 0.33 - 0.45 - 0.0 - - - - - 20.0 - 180 - 0.33 - 0.45 - 0.0 - - - - - 10.0 - 270 - 0.33 - 0.45 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 4.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 0 + 0.33 + 0.45 + 0.0 + + + + + 10.0 + 90 + 0.33 + 0.45 + 0.0 + + + + + 20.0 + 180 + 0.33 + 0.45 + 0.0 + + + + + 10.0 + 270 + 0.33 + 0.45 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index a7546681c5..9e5773ce4f 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - 10.69 - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + 10.69 + + + + + + + basement - unconditioned + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index 0de5d41f52..c71a4385e4 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 2.1 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + living space + floor + + + + 1350.0 + + + 2.1 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-unconditioned-basement.xml b/workflow/sample_files/base-foundation-unconditioned-basement.xml index c3263422ce..cf978667d9 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - false - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + false + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/workflow/sample_files/base-foundation-unvented-crawlspace.xml index a1df128791..fd1fb7227f 100644 --- a/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - false - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - unvented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - unvented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - unvented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - unvented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - unvented - 150.0 - - - - return - 0.0 - crawlspace - unvented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - unvented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + false + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - unvented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - unvented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - unvented + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - unvented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - unvented + 150.0 + + + + return + 0.0 + crawlspace - unvented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - unvented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-vented-crawlspace.xml b/workflow/sample_files/base-foundation-vented-crawlspace.xml index e507a912dc..5786f8132f 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - SLA - 0.00667 - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - vented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - vented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - vented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - vented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - vented - 150.0 - - - - return - 0.0 - crawlspace - vented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - vented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - vented + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + + return + 0.0 + crawlspace - vented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-foundation-walkout-basement.xml b/workflow/sample_files/base-foundation-walkout-basement.xml index ae8c236d8e..e6872a3fea 100644 --- a/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/workflow/sample_files/base-foundation-walkout-basement.xml @@ -1,614 +1,614 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 2.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 480.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 4.0 - 120.0 - 8.0 - 3.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 2.0 - 60.0 - 8.0 - 1.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 2.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 20.0 - 0 - 0.33 - 0.45 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 2.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 480.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 240.0 + 8.0 + 3.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 240.0 + 8.0 + 1.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 0 + 0.33 + 0.45 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index bd5b379940..6ef0f29f5f 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -1,549 +1,549 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - 0.0 - 36000.0 - single stage - 0.73 - 0.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + air-to-air + electricity + 0.0 + 36000.0 + single stage + 0.73 + 0.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index 5d66ea04ab..6f1e42a2cd 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 0.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 0.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index d1d529da04..3896698b9e 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 6359a49cbb..03f2b43e9f 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + two stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml index 13829fa69c..c1f9edda3d 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml @@ -1,576 +1,576 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 60000.0 - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - 18000.0 - 18000.0 - variable speed - 0.78 - separate - - 30.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + 18000.0 + 18000.0 + variable speed + 0.78 + separate + + 30.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml new file mode 100644 index 0000000000..958aa995a4 --- /dev/null +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml @@ -0,0 +1,577 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + 18000.0 + 18000.0 + variable speed + 30.0 + 0.78 + separate + + 30.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml index 096a82ffc5..68a026a3a9 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -1,575 +1,575 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 60000.0 - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - 18000.0 - 18000.0 - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + 18000.0 + 18000.0 + variable speed + 0.78 + separate + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml index b4c9f94e51..f96295bbb7 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -1,605 +1,605 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 60000.0 - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - 18000.0 - 18000.0 - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + 18000.0 + 18000.0 + variable speed + 0.78 + separate + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index ee1f1035ff..f8375b3664 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml index 3c5bdac099..42a749233a 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -1,544 +1,544 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - 0.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + 0.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml index 74a5888b03..df2555df58 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml @@ -1,550 +1,550 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml index a0fc2bfabc..a808f861b4 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + ACCA + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml index 9702e1b0a0..254183852e 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml index f7f1dce944..fa476a5d98 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- FL -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 1A - - - - USA_FL_Miami.Intl.AP.722020_TMY3 - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ FL +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 1A + + + + USA_FL_Miami.Intl.AP.722020_TMY3 + + USA_FL_Miami.Intl.AP.722020_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml index a8cf2f1862..fd933f910b 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml index 82e2d97492..7ea920d8cc 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + ACCA + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + two stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml index b2e9ddc294..d242b9ba84 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + two stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml index abcaa71251..8ac53d24c4 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + two stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml index bd6fb557a2..d3f2f0ade6 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + variable speed + 0.78 + separate + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml index 9d08573d62..d15fa3fcc0 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -1,599 +1,599 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + variable speed + 0.78 + separate + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml index cbc07789ca..de8b6064c1 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + ACCA + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml index dcd0feb52b..a395549fb8 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml index 8b23b55a65..dc3cda45fe 100644 --- a/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml b/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml index c4b4393a42..0e6dd9e339 100644 --- a/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +++ b/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + + AFUE + 0.98 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml index b21f131622..712b3cfe6a 100644 --- a/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + central air conditioner + electricity + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml b/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml index 335eec308d..5546a74abf 100644 --- a/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +++ b/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml b/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml index 7237949f65..57bed4d246 100644 --- a/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +++ b/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml b/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml index 751ba56e50..4dec7688b5 100644 --- a/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +++ b/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml b/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml index 746435d9d4..17cb83c938 100644 --- a/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +++ b/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml b/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml index f0fa0f0dfb..9e7c2885a0 100644 --- a/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + central air conditioner + electricity + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + air-to-air + electricity + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml index 3888c60326..e30653ef78 100644 --- a/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + ACCA + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 30.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml index f26fd15cce..b077cce9ea 100644 --- a/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 30.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml index 246605b5d9..0713821b21 100644 --- a/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + single stage + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 30.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml index 2c5be527a4..011dd6cbf3 100644 --- a/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 30.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml b/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml index 13d03b2dc1..a1ad6139ec 100644 --- a/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +++ b/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - - Percent - 1.0 - - 1.0 - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + electricity + + Percent + 1.0 + + 1.0 + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml b/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml index 3514e9a0af..1441dcfb88 100644 --- a/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +++ b/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml @@ -1,544 +1,544 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - evaporative cooler - electricity - 1.0 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + evaporative cooler + electricity + 1.0 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml b/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml index 33d6a414e8..24f3afee36 100644 --- a/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml @@ -1,500 +1,500 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - propane - - AFUE - 0.8 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + propane + + AFUE + 0.8 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml b/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml index 62631bf11f..d5a289df4e 100644 --- a/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + + AFUE + 0.98 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml index 3b56f2d74c..b0ffab1c47 100644 --- a/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml index f2d3c313c5..2164c62017 100644 --- a/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml b/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml index 8ce4f0bf6e..291cde513f 100644 --- a/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml b/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml index f614b73620..f28df50c44 100644 --- a/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +++ b/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml @@ -1,549 +1,549 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - 0.65 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + 0.65 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml index a6ba4e98c7..08eb5da9b0 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml @@ -1,546 +1,546 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - 0.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + ground-to-air + electricity + 0.73 + 0.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml index 107f7a7aaf..1213ca53dc 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + ground-to-air + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 0.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml index 0c016a936d..8960eede1d 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + ACCA + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml index e999e701c8..78b13a3f54 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml index 60edeb3602..3e2e3aedcf 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml index ecf9258b9f..b1ba7221e3 100644 --- a/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml @@ -1,535 +1,535 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 1.0 - - SEER - 19.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 1.0 + + SEER + 19.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml index 9a88c41f92..ffc4dd482d 100644 --- a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +++ b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml @@ -1,543 +1,543 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 0.73 - 0.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 0.73 + 0.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml index 3f73706398..c0bc39db94 100644 --- a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +++ b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml @@ -1,549 +1,549 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 0.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml index c8a4d35458..23b20e0d47 100644 --- a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + ACCA + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml index 891871f007..877574ee0f 100644 --- a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml index 921f35b3da..95ac3de302 100644 --- a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 0.73 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml index 88f5f79185..2b0011aab4 100644 --- a/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +++ b/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml @@ -1,522 +1,522 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - - Percent - 0.6 - - - 40.0 - - - - - mini-split - electricity - 0.73 - separate - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + fuel oil + + Percent + 0.6 + + + 40.0 + + + + + mini-split + electricity + 0.73 + separate + + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml b/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml index 843eba3807..9b5768c27a 100644 --- a/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +++ b/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml @@ -1,503 +1,503 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 1.0 - - EER - 10.7 - - 0.65 - electricity - - Percent - 1.0 - - 1.0 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + packaged terminal air conditioner + electricity + 1.0 + + EER + 10.7 + + 0.65 + electricity + + Percent + 1.0 + + 1.0 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-ptac.xml b/workflow/sample_files/base-hvac-autosize-ptac.xml index 1ea173fd38..841e694c4e 100644 --- a/workflow/sample_files/base-hvac-autosize-ptac.xml +++ b/workflow/sample_files/base-hvac-autosize-ptac.xml @@ -1,496 +1,496 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 1.0 - - EER - 10.7 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + packaged terminal air conditioner + electricity + 1.0 + + EER + 10.7 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml index 5e9baa2697..72a2d4dc69 100644 --- a/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml @@ -1,518 +1,518 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + ACCA + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + packaged terminal heat pump + electricity + 0.65 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 11.4 + + + COP + 3.6 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml index fff07e2681..47d18f17f7 100644 --- a/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml @@ -1,518 +1,518 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + HERS + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + packaged terminal heat pump + electricity + 0.65 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 11.4 + + + COP + 3.6 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml index 4c33e92f76..a576e84d01 100644 --- a/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml @@ -1,518 +1,518 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + MaxLoad + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + packaged terminal heat pump + electricity + 0.65 + integrated + electricity + + Percent + 1.0 + + 1.0 + 1.0 + + EER + 11.4 + + + COP + 3.6 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-room-ac-only.xml b/workflow/sample_files/base-hvac-autosize-room-ac-only.xml index fa152f83fa..ef82f8f9f0 100644 --- a/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +++ b/workflow/sample_files/base-hvac-autosize-room-ac-only.xml @@ -1,496 +1,496 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml b/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml index 3d7fa9a3ab..04d0baf645 100644 --- a/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +++ b/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml @@ -1,500 +1,500 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - fuel oil - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + fuel oil + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml b/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml index 264e5a51a9..4ce0803155 100644 --- a/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml @@ -1,500 +1,500 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - - AFUE - 0.98 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + electricity + + AFUE + 0.98 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-autosize.xml b/workflow/sample_files/base-hvac-autosize.xml index 7d8e71e257..178a21376a 100644 --- a/workflow/sample_files/base-hvac-autosize.xml +++ b/workflow/sample_files/base-hvac-autosize.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-boiler-coal-only.xml b/workflow/sample_files/base-hvac-boiler-coal-only.xml index 87f2ed694e..bccf078291 100644 --- a/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - coal - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + coal + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-boiler-elec-only.xml b/workflow/sample_files/base-hvac-boiler-elec-only.xml index 04146c8a10..572ef5983c 100644 --- a/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 0.98 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index 7630f47484..c60de29e89 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-boiler-gas-only.xml b/workflow/sample_files/base-hvac-boiler-gas-only.xml index 28c3f796ee..cc36495872 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -1,508 +1,508 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-boiler-oil-only.xml b/workflow/sample_files/base-hvac-boiler-oil-only.xml index e5030aa8a9..cff6cf7c65 100644 --- a/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + fuel oil + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-boiler-propane-only.xml b/workflow/sample_files/base-hvac-boiler-propane-only.xml index a6ba8a4ff0..acf5c9e919 100644 --- a/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - propane - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + propane + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-boiler-wood-only.xml b/workflow/sample_files/base-hvac-boiler-wood-only.xml index d54dca474a..d882ab0577 100644 --- a/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - wood - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + wood + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index 17f7004380..e91562a867 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index 482675d73f..2ad1606c60 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index d27cc0a32e..d8070086c2 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index 94242497c4..2cdb814a46 100644 --- a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-dse.xml b/workflow/sample_files/base-hvac-dse.xml index ddbfcdb5d7..0d5aac1164 100644 --- a/workflow/sample_files/base-hvac-dse.xml +++ b/workflow/sample_files/base-hvac-dse.xml @@ -1,523 +1,523 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - DSE - - 0.8 - 0.7 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + DSE + + 0.8 + 0.7 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index a5cc18b1be..c0fd34b915 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index 392165f0bd..965e7b028b 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - two stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + two stage + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index ca8bc39e4a..88271445a1 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - variable speed - 0.78 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index 449105a380..24395a1c54 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/workflow/sample_files/base-hvac-ducts-area-fractions.xml index 42341ca2db..aa271d7ed8 100644 --- a/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -1,582 +1,582 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 4050.0 - 32400.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 32400.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - living space - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 2400.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 216.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 216.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 36000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 0.75 - - - - return - 0.0 - attic - unvented - 0.75 - - - - supply - 4.0 - exterior wall - 0.25 - - - - return - 0.0 - living space - 0.25 - - 3 - - - 4050.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 3685.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 4050.0 + 32400.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 32400.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + living space + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 2400.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 216.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 216.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 36000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 0.75 + + + + return + 0.0 + attic - unvented + 0.75 + + + + supply + 4.0 + exterior wall + 0.25 + + + + return + 0.0 + living space + 0.25 + + 3 + + + 4050.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 3685.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index f6f0d42eee..ebe4628df8 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM50 - 100.0 - to outside - - - - return - - CFM50 - 125.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM50 + 100.0 + to outside + + + + return + + CFM50 + 125.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index e1696a189b..dc51a98b7f 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - Percent - 0.1 - to outside - - - - return - - Percent - 0.05 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.05 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-elec-resistance-only.xml b/workflow/sample_files/base-hvac-elec-resistance-only.xml index e4336d1352..676a994c86 100644 --- a/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -1,498 +1,498 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - 36000.0 - - Percent - 1.0 - - 1.0 - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + electricity + 36000.0 + + Percent + 1.0 + + 1.0 + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index 9f1018a5c2..ace8fdd7d1 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -1,546 +1,546 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index e8e496f6b1..1f689fca13 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -1,525 +1,525 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - 0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + 0 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-evap-cooler-only.xml b/workflow/sample_files/base-hvac-evap-cooler-only.xml index 3b536a975c..8a0997d7b5 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -1,492 +1,492 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/workflow/sample_files/base-hvac-fireplace-wood-only.xml index e23f3663ae..7302ddb8e9 100644 --- a/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - wood - 36000.0 - - Percent - 0.8 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + wood + 36000.0 + + Percent + 0.8 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index c8206d08d3..05d411de2e 100644 --- a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - propane - 36000.0 - - AFUE - 0.8 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + propane + 36000.0 + + AFUE + 0.8 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-coal-only.xml b/workflow/sample_files/base-hvac-furnace-coal-only.xml index 410dabd044..ebf8c25410 100644 --- a/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - coal - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + coal + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index d40422bc88..758c07b636 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 1.0 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 1.0 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-elec-only.xml b/workflow/sample_files/base-hvac-furnace-elec-only.xml index 401c1cc84f..eff55f978d 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 0.98 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index ec75d88cd1..e35c3c5f4b 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index df652bc92a..493da85712 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml index 7397247f2d..0dcbfa2f8c 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-heating-only.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-heating-only.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-gas-only.xml b/workflow/sample_files/base-hvac-furnace-gas-only.xml index 707a1ebee4..2cc52d1c9a 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index 485f180d6d..a6fe9e1f8c 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - room air conditioner - electricity - 24000.0 - 1.0 - - EER - 8.5 - - 0.65 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + room air conditioner + electricity + 24000.0 + 1.0 + + EER + 8.5 + + 0.65 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-oil-only.xml b/workflow/sample_files/base-hvac-furnace-oil-only.xml index 01b25fdd68..fcd7e9df2e 100644 --- a/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + fuel oil + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-propane-only.xml b/workflow/sample_files/base-hvac-furnace-propane-only.xml index ccc90c16b4..817fa07bf8 100644 --- a/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - propane - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + propane + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-wood-only.xml b/workflow/sample_files/base-hvac-furnace-wood-only.xml index e211a8a690..139d893ad8 100644 --- a/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - wood - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + wood + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/workflow/sample_files/base-hvac-furnace-x3-dse.xml index 99d2db5e7b..ae2fcd7d14 100644 --- a/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 0.33 - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 0.33 - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 0.35 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - DSE - - 0.8 - 0.7 - - - - - DSE - - 0.8 - 1.0 - - - - - DSE - - 0.8 - 1.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 0.33 + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 0.33 + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 0.35 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + DSE + + 0.8 + 0.7 + + + + + DSE + + 0.8 + 1.0 + + + + + DSE + + 0.8 + 1.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index 64c6d30070..9021bc8106 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -1,545 +1,545 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 0.0 - 36000.0 - 0.73 - 0.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + ground-to-air + electricity + 0.0 + 36000.0 + 0.73 + 0.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 543fe2bcbc..3ab9f82105 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 0.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 0.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 29af0aa9e6..2cc08b125a 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 7603cd48a8..f08983d71c 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml index e9be699720..121865ba25 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + two stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml index bdcc9548d9..b46b98107d 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index f9818e8369..eef82ac131 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - -0.25 - -0.25 - 0.365 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml index 1e45dcef5d..2e217d37de 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - -0.25 - -0.25 - 0.365 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml index 2fb6e655ca..c196567503 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - -0.25 - -0.25 - 0.365 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + -0.25 + -0.25 + 0.365 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml index 5285446b6b..86b36c7a4a 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index cb0e40bf5c..75fad083c2 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - -0.25 - -0.25 - 0.365 - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + -0.25 + -0.25 + 0.365 + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index 207e335fa8..143a982529 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 24000.0 - 1.0 - - SEER - 19.0 - - 0.73 - - -0.25 - -0.25 - 0.365 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 24000.0 + 1.0 + + SEER + 19.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index eb8cca2cec..5d55f9fddb 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index ffe7119465..29d9296a86 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 24000.0 - 1.0 - - SEER - 19.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 24000.0 + 1.0 + + SEER + 19.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index e85891062b..cc7b11db2f 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - mini-split - electricity - 24000.0 - 1.0 - - SEER - 19.0 - - 0.73 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + mini-split + electricity + 24000.0 + 1.0 + + SEER + 19.0 + + 0.73 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index 9b9351d319..8efeff41c2 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -1,548 +1,548 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 0.0 - 36000.0 - 0.73 - 0.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 0.0 + 36000.0 + 0.73 + 0.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index 8801c85ebd..785327a5a7 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -1,555 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 0.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 0.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index e4e8828c44..77a2457c94 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml index cb8b2cde95..b229b35245 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml @@ -1,528 +1,528 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - 60000.0 - - Percent - 0.6 - - - 40.0 - - - - - mini-split - electricity - 18000.0 - 18000.0 - 0.73 - separate - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + fuel oil + 60000.0 + + Percent + 0.6 + + + 40.0 + + + + + mini-split + electricity + 18000.0 + 18000.0 + 0.73 + separate + + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index f89f7a864c..15f6eba980 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -1,511 +1,511 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-multiple.xml b/workflow/sample_files/base-hvac-multiple.xml index 016921dcd5..eb50acc1f7 100644 --- a/workflow/sample_files/base-hvac-multiple.xml +++ b/workflow/sample_files/base-hvac-multiple.xml @@ -1,934 +1,934 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - 200.0 - - - - - - - electricity - 6400.0 - - Percent - 1.0 - - 0.1 - - - - - - - fuel oil - 6400.0 - - Percent - 0.8 - - 0.1 - - 40.0 - - - - - - - - propane - 6400.0 - - AFUE - 0.8 - - 0.1 - - 0.0 - - - - - - central air conditioner - electricity - 3199.2 - single stage - 0.1333 - - SEER - 13.0 - - 0.73 - - - - room air conditioner - electricity - 9600.0 - 0.1333 - - EER - 8.5 - - 0.65 - - - - packaged terminal air conditioner - electricity - 9600.0 - 0.1333 - - EER - 10.7 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 2880.0 - 4800.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - mini-split - electricity - 4800.0 - 2880.0 - 4800.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - baseboard - - - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + 200.0 + + + + + + + electricity + 6400.0 + + Percent + 1.0 + + 0.1 + + + + + + + fuel oil + 6400.0 + + Percent + 0.8 + + 0.1 + + 40.0 + + + + + + + + propane + 6400.0 + + AFUE + 0.8 + + 0.1 + + 0.0 + + + + + + central air conditioner + electricity + 3199.2 + single stage + 0.1333 + + SEER + 13.0 + + 0.73 + + + + room air conditioner + electricity + 9600.0 + 0.1333 + + EER + 8.5 + + 0.65 + + + + packaged terminal air conditioner + electricity + 9600.0 + 0.1333 + + EER + 10.7 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 2880.0 + 4800.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + mini-split + electricity + 4800.0 + 2880.0 + 4800.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-none.xml b/workflow/sample_files/base-hvac-none.xml index 7ce89b0e3a..34574bcb14 100644 --- a/workflow/sample_files/base-hvac-none.xml +++ b/workflow/sample_files/base-hvac-none.xml @@ -1,429 +1,428 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- HI -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 1A - - - - USA_HI_Honolulu.Intl.AP.911820_TMY3 - - USA_HI_Honolulu.Intl.AP.911820_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ HI +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 1A + + + + USA_HI_Honolulu.Intl.AP.911820_TMY3 + + USA_HI_Honolulu.Intl.AP.911820_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index 7de995ac59..6695e56401 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -1,505 +1,505 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 24000.0 - 1.0 - - EER - 10.7 - - 0.65 - electricity - 36000.0 - - Percent - 1.0 - - 1.0 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + packaged terminal air conditioner + electricity + 24000.0 + 1.0 + + EER + 10.7 + + 0.65 + electricity + 36000.0 + + Percent + 1.0 + + 1.0 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ptac.xml b/workflow/sample_files/base-hvac-ptac.xml index e7113308a9..2f8267c96e 100644 --- a/workflow/sample_files/base-hvac-ptac.xml +++ b/workflow/sample_files/base-hvac-ptac.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 24000.0 - 1.0 - - EER - 10.7 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + packaged terminal air conditioner + electricity + 24000.0 + 1.0 + + EER + 10.7 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-pthp.xml b/workflow/sample_files/base-hvac-pthp.xml index 05eed2903d..fff0e8754d 100644 --- a/workflow/sample_files/base-hvac-pthp.xml +++ b/workflow/sample_files/base-hvac-pthp.xml @@ -1,518 +1,518 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 36000.0 - 36000.0 - 0.65 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + packaged terminal heat pump + electricity + 36000.0 + 36000.0 + 0.65 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 11.4 + + + COP + 3.6 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index 46bfbcc582..0d99dbe22b 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 8000.0 - 0.33 - - EER - 8.5 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 8000.0 + 0.33 + + EER + 8.5 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index 378084cf4e..0f83f0c6dc 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 24000.0 - 1.0 - - CEER - 8.4 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 24000.0 + 1.0 + + CEER + 8.4 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml index 8ad9984114..2308dca789 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-cooling-only.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 24000.0 - 1.0 - - EER - 8.5 - - 0.65 - - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-cooling-only.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 24000.0 + 1.0 + + EER + 8.5 + + 0.65 + + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-room-ac-only.xml b/workflow/sample_files/base-hvac-room-ac-only.xml index 57785bb015..7bb7f31576 100644 --- a/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/workflow/sample_files/base-hvac-room-ac-only.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 24000.0 - 1.0 - - EER - 8.5 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 24000.0 + 1.0 + + EER + 8.5 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-seasons.xml b/workflow/sample_files/base-hvac-seasons.xml index 70e6084636..5a0d5ef945 100644 --- a/workflow/sample_files/base-hvac-seasons.xml +++ b/workflow/sample_files/base-hvac-seasons.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - 11 - 1 - 5 - 1 - - - 6 - 1 - 10 - 1 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + 11 + 1 + 5 + 1 + + + 6 + 1 + 10 + 1 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml index 662163412f..1ff1fa86f9 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - 64, 64, 64, 64, 64, 64, 64, 70, 70, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64 - 68, 68, 68, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70 - 80, 80, 80, 80, 80, 80, 80, 75, 75, 80, 80, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 80, 80 - 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + 64, 64, 64, 64, 64, 64, 64, 70, 70, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64 + 68, 68, 68, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70 + 80, 80, 80, 80, 80, 80, 80, 75, 75, 80, 80, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 80, 80 + 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml index d2d1aa74ce..ca0aa4060f 100644 --- a/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 66.0 - 49 - 80.0 - 78.0 - 42 - - 23 - 9 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 66.0 + 49 + 80.0 + 78.0 + 42 + + 23 + 9 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-setpoints.xml b/workflow/sample_files/base-hvac-setpoints.xml index fd3410676a..858c6e3259 100644 --- a/workflow/sample_files/base-hvac-setpoints.xml +++ b/workflow/sample_files/base-hvac-setpoints.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 60.0 - 80.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 60.0 + 80.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml b/workflow/sample_files/base-hvac-space-heater-gas-only.xml similarity index 97% rename from workflow/sample_files/base-hvac-fixed-heater-gas-only.xml rename to workflow/sample_files/base-hvac-space-heater-gas-only.xml index 16d2e71fb0..1550cef471 100644 --- a/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +++ b/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - natural gas - 36000.0 - - Percent - 1.0 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + natural gas + 36000.0 + + Percent + 1.0 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-stove-oil-only.xml b/workflow/sample_files/base-hvac-stove-oil-only.xml index 74d6b29755..9759da53ad 100644 --- a/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - fuel oil - 36000.0 - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + fuel oil + 36000.0 + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index af19438524..8b7ded0319 100644 --- a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - wood pellets - 36000.0 - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + wood pellets + 36000.0 + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml b/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml index 03b1c4e90f..337085bdb9 100644 --- a/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +++ b/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - true - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 3600.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 2400.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 7.5 - to outside - - - - return - - CFM25 - 2.5 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + true + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 3600.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 2400.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 7.5 + to outside + + + + return + + CFM25 + 2.5 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-undersized.xml b/workflow/sample_files/base-hvac-undersized.xml index aa4280cfa1..5af81e8b3a 100644 --- a/workflow/sample_files/base-hvac-undersized.xml +++ b/workflow/sample_files/base-hvac-undersized.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 3600.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 2400.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 7.5 - to outside - - - - return - - CFM25 - 2.5 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 3600.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 2400.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 7.5 + to outside + + + + return + + CFM25 + 2.5 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index 764d2fbccd..d66b9ab7e2 100644 --- a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 0.98 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 0.98 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-lighting-ceiling-fans.xml b/workflow/sample_files/base-lighting-ceiling-fans.xml index ddc69a6995..51623edf4a 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - 0.5 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - medium - 100.0 - - 4 - - 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 - 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 - 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0 - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + 0.5 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + medium + 100.0 + + 4 + + 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 + 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 + 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0 + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-lighting-holiday.xml b/workflow/sample_files/base-lighting-holiday.xml index 59ba34cda2..c6e52d79e7 100644 --- a/workflow/sample_files/base-lighting-holiday.xml +++ b/workflow/sample_files/base-lighting-holiday.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - kWh/day - 1.1 - - 11 - 24 - 1 - 6 - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + kWh/day + 1.1 + + 11 + 24 + 1 + 6 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-lighting-kwh-per-year.xml b/workflow/sample_files/base-lighting-kwh-per-year.xml index 919f3218e4..da9a8acfe3 100644 --- a/workflow/sample_files/base-lighting-kwh-per-year.xml +++ b/workflow/sample_files/base-lighting-kwh-per-year.xml @@ -501,6 +501,9 @@ 0.0 + + 1.5 + diff --git a/workflow/sample_files/base-lighting-none.xml b/workflow/sample_files/base-lighting-none.xml index ebd8e2cc87..650cc64e0b 100644 --- a/workflow/sample_files/base-lighting-none.xml +++ b/workflow/sample_files/base-lighting-none.xml @@ -1,503 +1,503 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-AMY-2012.xml b/workflow/sample_files/base-location-AMY-2012.xml index 347ba7f987..e65af01b55 100644 --- a/workflow/sample_files/base-location-AMY-2012.xml +++ b/workflow/sample_files/base-location-AMY-2012.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - US_CO_Boulder_AMY_2012 - - US_CO_Boulder_AMY_2012.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + US_CO_Boulder_AMY_2012 + + US_CO_Boulder_AMY_2012.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-baltimore-md.xml b/workflow/sample_files/base-location-baltimore-md.xml index 423fabbcc0..b89351a7dd 100644 --- a/workflow/sample_files/base-location-baltimore-md.xml +++ b/workflow/sample_files/base-location-baltimore-md.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- MD -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 4A - - - - USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3 - - USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - false - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - unvented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - unvented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - unvented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - unvented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - unvented - 150.0 - - - - return - 0.0 - crawlspace - unvented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - unvented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ MD +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 4A + + + + USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3 + + USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + false + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - unvented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - unvented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - unvented + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - unvented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - unvented + 150.0 + + + + return + 0.0 + crawlspace - unvented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - unvented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-capetown-zaf.xml b/workflow/sample_files/base-location-capetown-zaf.xml index bec2925110..7a45ccb575 100644 --- a/workflow/sample_files/base-location-capetown-zaf.xml +++ b/workflow/sample_files/base-location-capetown-zaf.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - - ZAF_Cape.Town.688160_IWEC - - ZAF_Cape.Town.688160_IWEC.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - SLA - 0.00667 - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - vented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - vented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - vented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - vented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - vented - 150.0 - - - - return - 0.0 - crawlspace - vented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + + ZAF_Cape.Town.688160_IWEC + + ZAF_Cape.Town.688160_IWEC.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - vented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - vented + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + + return + 0.0 + crawlspace - vented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + \ No newline at end of file diff --git a/workflow/sample_files/base-location-dallas-tx.xml b/workflow/sample_files/base-location-dallas-tx.xml index 92b950224a..35007e80d0 100644 --- a/workflow/sample_files/base-location-dallas-tx.xml +++ b/workflow/sample_files/base-location-dallas-tx.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-duluth-mn.xml b/workflow/sample_files/base-location-duluth-mn.xml index 3967ed0db7..ac42f0322a 100644 --- a/workflow/sample_files/base-location-duluth-mn.xml +++ b/workflow/sample_files/base-location-duluth-mn.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- MN -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 7 - - - - USA_MN_Duluth.Intl.AP.727450_TMY3 - - USA_MN_Duluth.Intl.AP.727450_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ MN +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 7 + + + + USA_MN_Duluth.Intl.AP.727450_TMY3 + + USA_MN_Duluth.Intl.AP.727450_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-helena-mt.xml b/workflow/sample_files/base-location-helena-mt.xml index df08b1fd97..4da5c576d4 100644 --- a/workflow/sample_files/base-location-helena-mt.xml +++ b/workflow/sample_files/base-location-helena-mt.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- MT -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 6B - - - - USA_MT_Helena.Rgnl.AP.727720_TMY3 - - USA_MT_Helena.Rgnl.AP.727720_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ MT +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 6B + + + + USA_MT_Helena.Rgnl.AP.727720_TMY3 + + USA_MT_Helena.Rgnl.AP.727720_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-honolulu-hi.xml b/workflow/sample_files/base-location-honolulu-hi.xml index 12ad78637a..c560dda330 100644 --- a/workflow/sample_files/base-location-honolulu-hi.xml +++ b/workflow/sample_files/base-location-honolulu-hi.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- HI -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 1A - - - - USA_HI_Honolulu.Intl.AP.911820_TMY3 - - USA_HI_Honolulu.Intl.AP.911820_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ HI +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 1A + + + + USA_HI_Honolulu.Intl.AP.911820_TMY3 + + USA_HI_Honolulu.Intl.AP.911820_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-miami-fl.xml b/workflow/sample_files/base-location-miami-fl.xml index 024740728f..6ee6c201cd 100644 --- a/workflow/sample_files/base-location-miami-fl.xml +++ b/workflow/sample_files/base-location-miami-fl.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- FL -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 1A - - - - USA_FL_Miami.Intl.AP.722020_TMY3 - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ FL +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 1A + + + + USA_FL_Miami.Intl.AP.722020_TMY3 + + USA_FL_Miami.Intl.AP.722020_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-phoenix-az.xml b/workflow/sample_files/base-location-phoenix-az.xml index caf6645183..e677e146fe 100644 --- a/workflow/sample_files/base-location-phoenix-az.xml +++ b/workflow/sample_files/base-location-phoenix-az.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- AZ -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 2B - - - - USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3 - - USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ AZ +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 2B + + + + USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3 + + USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + living space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-location-portland-or.xml b/workflow/sample_files/base-location-portland-or.xml index 52cc6bab4d..ff3a640fcb 100644 --- a/workflow/sample_files/base-location-portland-or.xml +++ b/workflow/sample_files/base-location-portland-or.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- OR -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 4C - - - - USA_OR_Portland.Intl.AP.726980_TMY3 - - USA_OR_Portland.Intl.AP.726980_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - SLA - 0.00667 - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - vented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - vented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - vented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - vented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - vented - 150.0 - - - - return - 0.0 - crawlspace - vented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ OR +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 4C + + + + USA_OR_Portland.Intl.AP.726980_TMY3 + + USA_OR_Portland.Intl.AP.726980_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - vented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - vented + living space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + + return + 0.0 + crawlspace - vented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-balanced.xml b/workflow/sample_files/base-mechvent-balanced.xml index c528f12454..2b2a8205a2 100644 --- a/workflow/sample_files/base-mechvent-balanced.xml +++ b/workflow/sample_files/base-mechvent-balanced.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - balanced - 110.0 - 24.0 - true - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + balanced + 110.0 + 24.0 + true + 60.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index 2db022f35e..91e7940041 100644 --- a/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -1,581 +1,581 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - 1 - 100.0 - 1.5 - kitchen - true - 30.0 - - 18 - - - - - 2 - 50.0 - 1.5 - bath - true - 15.0 - - 7 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + 1 + 100.0 + 1.5 + kitchen + true + 30.0 + + 18 + + + + + 2 + 50.0 + 1.5 + bath + true + 15.0 + + 7 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index 6d5ee17397..63c4de4b47 100644 --- a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - 0.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + 0.0 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-cfis-dse.xml b/workflow/sample_files/base-mechvent-cfis-dse.xml index bdcdaa2241..81328d9b25 100644 --- a/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - DSE - - 0.8 - 0.7 - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + DSE + + 0.8 + 0.7 + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index 0ae5c21869..f0840f3c0a 100644 --- a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - 0 - - - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + 0 + + + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-cfis.xml b/workflow/sample_files/base-mechvent-cfis.xml index e3f4db3922..4461b8464a 100644 --- a/workflow/sample_files/base-mechvent-cfis.xml +++ b/workflow/sample_files/base-mechvent-cfis.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/workflow/sample_files/base-mechvent-erv-atre-asre.xml index c1d6d9b609..a05589c542 100644 --- a/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - energy recovery ventilator - 110.0 - 24.0 - true - 0.526 - 0.79 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + energy recovery ventilator + 110.0 + 24.0 + true + 0.526 + 0.79 + 60.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-erv.xml b/workflow/sample_files/base-mechvent-erv.xml index 0c528de55b..7309f00907 100644 --- a/workflow/sample_files/base-mechvent-erv.xml +++ b/workflow/sample_files/base-mechvent-erv.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - energy recovery ventilator - 110.0 - 24.0 - true - 0.48 - 0.72 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + energy recovery ventilator + 110.0 + 24.0 + true + 0.48 + 0.72 + 60.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index d72eb37767..f1d053783a 100644 --- a/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - exhaust only - 110.0 - 24.0 - true - 30.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + exhaust only + 110.0 + 24.0 + true + 30.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-exhaust.xml b/workflow/sample_files/base-mechvent-exhaust.xml index d72eb37767..f1d053783a 100644 --- a/workflow/sample_files/base-mechvent-exhaust.xml +++ b/workflow/sample_files/base-mechvent-exhaust.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - exhaust only - 110.0 - 24.0 - true - 30.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + exhaust only + 110.0 + 24.0 + true + 30.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-hrv-asre.xml b/workflow/sample_files/base-mechvent-hrv-asre.xml index b8de06fe6c..e357fe5973 100644 --- a/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - heat recovery ventilator - 110.0 - 24.0 - true - 0.79 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + heat recovery ventilator + 110.0 + 24.0 + true + 0.79 + 60.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-hrv.xml b/workflow/sample_files/base-mechvent-hrv.xml index 2261b14f8c..6d39318ee0 100644 --- a/workflow/sample_files/base-mechvent-hrv.xml +++ b/workflow/sample_files/base-mechvent-hrv.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - heat recovery ventilator - 110.0 - 24.0 - true - 0.72 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + heat recovery ventilator + 110.0 + 24.0 + true + 0.72 + 60.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-multiple.xml b/workflow/sample_files/base-mechvent-multiple.xml index ec0af628b0..203354ebf6 100644 --- a/workflow/sample_files/base-mechvent-multiple.xml +++ b/workflow/sample_files/base-mechvent-multiple.xml @@ -1,810 +1,810 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 18000.0 - - AFUE - 0.92 - - 0.5 - - - - - - - - natural gas - 18000.0 - - AFUE - 0.92 - - 0.5 - - - - - central air conditioner - electricity - 12000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - central air conditioner - electricity - 12000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - 1 - 50.0 - 1.5 - kitchen - true - 15.0 - - 18 - - - - - 2 - 25.0 - 1.5 - bath - true - 7.5 - - 7 - - - - - 1000.0 - true - 75.0 - - - - supply only - 6.25 - 14.0 - true - 1.25 - - - - exhaust only - 15.0 - true - 3.75 - - - - balanced - 13.75 - 24.0 - true - 7.5 - - - - energy recovery ventilator - 6.25 - 24.0 - true - 0.48 - 0.72 - 3.125 - - - - heat recovery ventilator - 7.5 - 24.0 - true - 0.72 - 3.75 - - - - heat recovery ventilator - 7.5 - 23.0 - true - 0.72 - 3.75 - - - - energy recovery ventilator - 6.25 - 23.0 - true - 0.48 - 0.72 - 3.125 - - - - balanced - 13.75 - 23.0 - true - 7.5 - - - - exhaust only - 15.0 - true - 3.75 - - - - supply only - 6.25 - 13.0 - true - 1.25 - - - - 1000.0 - true - 75.0 - - - - 2 - 25.0 - 0.5 - bath - true - 7.5 - - 6 - - - - - 1 - 50.0 - 0.5 - kitchen - true - 15.0 - - 17 - - - - - central fan integrated supply - - air handler fan - - 40.0 - 8.0 - true - 37.5 - - - - - central fan integrated supply - - supplemental fan - - - 42.5 - 8.0 - true - 37.5 - - - - - heat recovery ventilator - 0.0 - 24.0 - true - 0.72 - 7.5 - - - - heat recovery ventilator - 15.0 - 0.0 - true - 0.72 - 7.5 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 18000.0 + + AFUE + 0.92 + + 0.5 + + + + + + + + natural gas + 18000.0 + + AFUE + 0.92 + + 0.5 + + + + + central air conditioner + electricity + 12000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + central air conditioner + electricity + 12000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + 1 + 50.0 + 1.5 + kitchen + true + 15.0 + + 18 + + + + + 2 + 25.0 + 1.5 + bath + true + 7.5 + + 7 + + + + + 1000.0 + true + 75.0 + + + + supply only + 6.25 + 14.0 + true + 1.25 + + + + exhaust only + 15.0 + true + 3.75 + + + + balanced + 13.75 + 24.0 + true + 7.5 + + + + energy recovery ventilator + 6.25 + 24.0 + true + 0.48 + 0.72 + 3.125 + + + + heat recovery ventilator + 7.5 + 24.0 + true + 0.72 + 3.75 + + + + heat recovery ventilator + 7.5 + 23.0 + true + 0.72 + 3.75 + + + + energy recovery ventilator + 6.25 + 23.0 + true + 0.48 + 0.72 + 3.125 + + + + balanced + 13.75 + 23.0 + true + 7.5 + + + + exhaust only + 15.0 + true + 3.75 + + + + supply only + 6.25 + 13.0 + true + 1.25 + + + + 1000.0 + true + 75.0 + + + + 2 + 25.0 + 0.5 + bath + true + 7.5 + + 6 + + + + + 1 + 50.0 + 0.5 + kitchen + true + 15.0 + + 17 + + + + + central fan integrated supply + + air handler fan + + 40.0 + 8.0 + true + 37.5 + + + + + central fan integrated supply + + supplemental fan + + + 42.5 + 8.0 + true + 37.5 + + + + + heat recovery ventilator + 0.0 + 24.0 + true + 0.72 + 7.5 + + + + heat recovery ventilator + 15.0 + 0.0 + true + 0.72 + 7.5 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-supply.xml b/workflow/sample_files/base-mechvent-supply.xml index e7f9d23860..ae8f60e562 100644 --- a/workflow/sample_files/base-mechvent-supply.xml +++ b/workflow/sample_files/base-mechvent-supply.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - supply only - 110.0 - 24.0 - true - 30.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + supply only + 110.0 + 24.0 + true + 30.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-mechvent-whole-house-fan.xml b/workflow/sample_files/base-mechvent-whole-house-fan.xml index 677f62fe81..0727ef6263 100644 --- a/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -1,563 +1,563 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - 4500.0 - true - 300.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + 4500.0 + true + 300.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-additional-properties.xml b/workflow/sample_files/base-misc-additional-properties.xml index 1cd29a58ff..e90afe2a71 100644 --- a/workflow/sample_files/base-misc-additional-properties.xml +++ b/workflow/sample_files/base-misc-additional-properties.xml @@ -1,563 +1,563 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - false - - 2-story home in Denver - , - < - > - / - \ - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + false + + 2-story home in Denver + , + < + > + / + \ + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-bills-none.xml b/workflow/sample_files/base-misc-bills-none.xml index 749d8dfaac..cdde28cd6a 100644 --- a/workflow/sample_files/base-misc-bills-none.xml +++ b/workflow/sample_files/base-misc-bills-none.xml @@ -1,548 +1,548 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-bills-pv.xml b/workflow/sample_files/base-misc-bills-pv.xml index a9741aa835..321ff810bd 100644 --- a/workflow/sample_files/base-misc-bills-pv.xml +++ b/workflow/sample_files/base-misc-bills-pv.xml @@ -1,651 +1,651 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Net Metering w/ Wholesale Excess Rate - - electricity - 10.0 - 0.12 - - - natural gas - 11.0 - 1.1 - - - - - User-Specified - 0.035 - - - - $/kW - 2.5 - - - - - Net Metering w/ Retail Excess Rate - - electricity - 10.0 - 0.12 - - - natural gas - 11.0 - 1.1 - - - - - Retail Electricity Cost - - - - $/kW - 2.5 - - - - - Feed-In Tariff - - electricity - 10.0 - 0.12 - - - natural gas - 11.0 - 1.1 - - - - - 0.13 - - - - $ - 7.5 - - - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 10000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Net Metering w/ Wholesale Excess Rate + + electricity + 10.0 + 0.12 + + + natural gas + 11.0 + 1.1 + + + + + User-Specified + 0.035 + + + + $/kW + 2.5 + + + + + Net Metering w/ Retail Excess Rate + + electricity + 10.0 + 0.12 + + + natural gas + 11.0 + 1.1 + + + + + Retail Electricity Cost + + + + $/kW + 2.5 + + + + + Feed-In Tariff + + electricity + 10.0 + 0.12 + + + natural gas + 11.0 + 1.1 + + + + + 0.13 + + + + $ + 7.5 + + + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 10000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-bills.xml b/workflow/sample_files/base-misc-bills.xml index be3af1c510..69e0ef0011 100644 --- a/workflow/sample_files/base-misc-bills.xml +++ b/workflow/sample_files/base-misc-bills.xml @@ -1,563 +1,563 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - electricity - 12.0 - 0.12 - - - natural gas - 12.0 - 1.1 - - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + electricity + 12.0 + 0.12 + + + natural gas + 12.0 + 1.1 + + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-defaults.xml b/workflow/sample_files/base-misc-defaults.xml index 12b632de77..3853a3c230 100644 --- a/workflow/sample_files/base-misc-defaults.xml +++ b/workflow/sample_files/base-misc-defaults.xml @@ -1,467 +1,467 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - - Bills - - - - - - - - proposed workscope - - - - - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 3 - 2700.0 - - - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - - - - - - attic - unvented - 1509.3 - 6.0 - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - - - 4.0 - - - - - - - ground - basement - conditioned - 150.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - - - - - - 40.0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - 1.0 - - SEER - 13.0 - - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - - - - return - 0.0 - - 2 - - - 2700.0 - - - - - - - exhaust only - true - - - - kitchen - true - - - - bath - true - - - - true - - - - - - - electricity - storage water heater - 1.0 - 18767.0 - 0.95 - - - - - - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - single glazing black - 180 - 20.0 - 0.77 - 0.793 - - - - - - - 180 - 20.0 - 4000.0 - 2015 - - - - - - - - - - Li-ion - - - - - - - - - - electricity - - - - - - - - - - electricity - - - - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - - - - TV other - - - - other - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + + Bills + + + + + + + + proposed workscope + + + + + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 3 + 2700.0 + + + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + + + + + + attic - unvented + 1509.3 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + + + 4.0 + + + + + + + ground + basement - conditioned + 150.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + + + + + + 40.0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + 1.0 + + SEER + 13.0 + + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + + + + return + 0.0 + + 2 + + + 2700.0 + + + + + + + exhaust only + true + + + + kitchen + true + + + + bath + true + + + + true + + + + + + + electricity + storage water heater + 1.0 + 18767.0 + 0.95 + + + + + + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + single glazing black + 180 + 20.0 + 0.77 + 0.793 + + + + + + + 180 + 20.0 + 4000.0 + 2015 + + + + + + + + + + Li-ion + + + + + + + + + + electricity + + + + + + + + + + electricity + + + + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + + + + TV other + + + + other + + + + \ No newline at end of file diff --git a/workflow/sample_files/base-misc-emissions.xml b/workflow/sample_files/base-misc-emissions.xml index e80a8650da..636b889b6d 100644 --- a/workflow/sample_files/base-misc-emissions.xml +++ b/workflow/sample_files/base-misc-emissions.xml @@ -1,651 +1,651 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Cambium Hourly MidCase LRMER RMPA - CO2e - - electricity - kg/MWh - ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv - 1 - 17 - - - - Cambium Hourly LowRECosts LRMER RMPA - CO2e - - electricity - kg/MWh - ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv - 1 - 17 - - - - Cambium Annual MidCase AER National - CO2e - - electricity - kg/MWh - 392.6 - - - - eGRID RMPA - SO2 - - electricity - lb/MWh - 0.384 - - - - eGRID RMPA - NOx - - electricity - lb/MWh - 0.67 - - - - - - Bills - - - - - - - - -
- CO -
- Western - RMPA - RMPAc -
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - outside - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Cambium Hourly MidCase LRMER RMPA + CO2e + + electricity + kg/MWh + ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv + 1 + 17 + + + + Cambium Hourly LowRECosts LRMER RMPA + CO2e + + electricity + kg/MWh + ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv + 1 + 17 + + + + Cambium Annual MidCase AER National + CO2e + + electricity + kg/MWh + 392.6 + + + + eGRID RMPA + SO2 + + electricity + lb/MWh + 0.384 + + + + eGRID RMPA + NOx + + electricity + lb/MWh + 0.67 + + + + + + Bills + + + + + + + + +
+ CO +
+ Western + RMPA + RMPAc +
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + outside + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-generators.xml b/workflow/sample_files/base-misc-generators.xml index bcfd881954..96afd07f75 100644 --- a/workflow/sample_files/base-misc-generators.xml +++ b/workflow/sample_files/base-misc-generators.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - natural gas - 8500.0 - 1200.0 - - - - fuel oil - 8500.0 - 1200.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + natural gas + 8500.0 + 1200.0 + + + + fuel oil + 8500.0 + 1200.0 + + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-loads-large-uncommon.xml b/workflow/sample_files/base-misc-loads-large-uncommon.xml index 5d13610efb..61c8efddf9 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon.xml @@ -1,787 +1,787 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - living space - 650.0 - true - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 700.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 800.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 300.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 400.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - - unknown - - - - unknown - - kWh/year - 2700.0 - - - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - gas fired - - therm/year - 500.0 - - - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - - - unknown - - - - unknown - - kWh/year - 1000.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - - electric resistance - - kWh/year - 1300.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 - - - - - - - - TV other - - kWh/year - 620.0 - - - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - electric vehicle charging - - kWh/year - 1500.0 - - - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - - - - - well pump - - kWh/year - 475.0 - - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - grill - - therm/year - 25.0 - - propane - - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - lighting - - therm/year - 28.0 - - natural gas - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - fireplace - - therm/year - 55.0 - - wood - - 0.5 - 0.1 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 + + + + + living space + electricity + 3.73 + true + 150.0 + + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + living space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + propane + + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-loads-large-uncommon2.xml b/workflow/sample_files/base-misc-loads-large-uncommon2.xml index 3737fc664f..79075c96f6 100644 --- a/workflow/sample_files/base-misc-loads-large-uncommon2.xml +++ b/workflow/sample_files/base-misc-loads-large-uncommon2.xml @@ -1,778 +1,778 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - living space - 650.0 - true - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 700.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 800.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 300.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 400.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - - unknown - - - - unknown - - kWh/year - 2700.0 - - - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - none - - - - - - - unknown - - - - unknown - - kWh/year - 1000.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - - heat pump - - kWh/year - 260.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 - - - - - - - - TV other - - kWh/year - 620.0 - - - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - electric vehicle charging - - kWh/year - 1500.0 - - - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - - - - - well pump - - kWh/year - 475.0 - - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - grill - - therm/year - 25.0 - - fuel oil - - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - lighting - - therm/year - 28.0 - - natural gas - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - fireplace - - therm/year - 55.0 - - wood pellets - - 0.5 - 0.1 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 + + + + + living space + electricity + 3.73 + true + 150.0 + + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + living space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + none + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + heat pump + + kWh/year + 260.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + fuel oil + + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood pellets + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-loads-none.xml b/workflow/sample_files/base-misc-loads-none.xml index bb8fb73bd4..0855e0869d 100644 --- a/workflow/sample_files/base-misc-loads-none.xml +++ b/workflow/sample_files/base-misc-loads-none.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - other - - kWh/year - 0.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + other + + kWh/year + 0.0 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-neighbor-shading.xml b/workflow/sample_files/base-misc-neighbor-shading.xml index 69dff9cb95..bafb078d01 100644 --- a/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/workflow/sample_files/base-misc-neighbor-shading.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 180 - 15.0 - 12.0 - - - 0 - 10.0 - - - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 180 + 15.0 + 12.0 + + + 0 + 10.0 + + + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-shielding-of-home.xml b/workflow/sample_files/base-misc-shielding-of-home.xml index 320b924cb4..09f021d0f4 100644 --- a/workflow/sample_files/base-misc-shielding-of-home.xml +++ b/workflow/sample_files/base-misc-shielding-of-home.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - well-shielded - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + well-shielded + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-usage-multiplier.xml b/workflow/sample_files/base-misc-usage-multiplier.xml index 4e720b0988..d9ecbcce75 100644 --- a/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/workflow/sample_files/base-misc-usage-multiplier.xml @@ -1,720 +1,720 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.9 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.9 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.9 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.9 - - - - - living space - 650.0 - true - - 0.9 - - - - - living space - 300.0 - - 0.9 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 400.0 - - 0.9 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.9 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.9 - 0.9 - - - - - - unknown - - - - unknown - - kWh/year - 2700.0 - - - 0.9 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - gas fired - - therm/year - 500.0 - - - 0.9 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - - - unknown - - - - unknown - - kWh/year - 1000.0 - - - 0.9 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - - electric resistance - - kWh/year - 1300.0 - - - 0.9 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 - - - - - - - - TV other - - kWh/year - 620.0 - - - 0.9 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.9 - - - - - grill - - therm/year - 25.0 - - propane - - 0.9 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - lighting - - therm/year - 28.0 - - natural gas - - 0.9 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - fireplace - - therm/year - 55.0 - - wood - - 0.5 - 0.1 - 0.9 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.9 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.9 + + + + + living space + electricity + 3.73 + true + 150.0 + + 0.9 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.9 + + + + + living space + 650.0 + true + + 0.9 + + + + + living space + 300.0 + + 0.9 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + 400.0 + + 0.9 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.9 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.9 + 0.9 + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.9 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.9 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.9 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.9 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + TV other + + kWh/year + 620.0 + + + 0.9 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.9 + + + + + grill + + therm/year + 25.0 + + propane + + 0.9 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.9 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.9 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
\ 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 c13698c7e5..249605abaa 100644 --- a/workflow/sample_files/base-multiple-buildings.xml +++ b/workflow/sample_files/base-multiple-buildings.xml @@ -1,1593 +1,1593 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-pv-battery-ah.xml b/workflow/sample_files/base-pv-battery-ah.xml index f16ee8ec33..feffee5a0d 100644 --- a/workflow/sample_files/base-pv-battery-ah.xml +++ b/workflow/sample_files/base-pv-battery-ah.xml @@ -1,597 +1,597 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - outside - Li-ion - - Ah - 400.0 - - - Ah - 360.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + outside + Li-ion + + Ah + 400.0 + + + Ah + 360.0 + + 6000.0 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-pv-battery-garage.xml b/workflow/sample_files/base-pv-battery-garage.xml index 1913f597db..163cc46188 100644 --- a/workflow/sample_files/base-pv-battery-garage.xml +++ b/workflow/sample_files/base-pv-battery-garage.xml @@ -1,696 +1,695 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 2180.2 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - garage - - - - 560.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - outside - living space - - - - 960.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - garage - living space - - - - 240.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 337.5 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - garage - ceiling - - - - 600.0 - - - 2.1 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - garage - 600.0 - 4.0 - 70.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 1350.0 - 4.0 - 120.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - garage - 150.0 - - - - return - 0.0 - garage - 50.0 - - - - - - - - - electricity - storage water heater - garage - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - garage - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - garage - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - garage - electricity - 3.73 - true - 150.0 - - - - garage - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - garage - 650.0 - true - - - - garage - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + living space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + living space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + garage + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + true + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-pv-battery.xml b/workflow/sample_files/base-pv-battery.xml index e96fbd95f4..f37721e035 100644 --- a/workflow/sample_files/base-pv-battery.xml +++ b/workflow/sample_files/base-pv-battery.xml @@ -1,597 +1,597 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - outside - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + outside + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-pv.xml b/workflow/sample_files/base-pv.xml index 3067b9d3ac..51cfa41727 100644 --- a/workflow/sample_files/base-pv.xml +++ b/workflow/sample_files/base-pv.xml @@ -1,581 +1,581 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml index 8d5e289643..27efb25e38 100644 --- a/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-all-10-mins.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-10-mins.csv - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml new file mode 100644 index 0000000000..091406aecb --- /dev/null +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml @@ -0,0 +1,564 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv + + + Bills + + + + + Power Outage + 12 + 1 + 5 + 1 + 31 + 14 + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml new file mode 100644 index 0000000000..ceb42d27b8 --- /dev/null +++ b/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml @@ -0,0 +1,553 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml index 7d1588831e..7475159b5e 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml index acc1fd0e0d..170e08d5df 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml @@ -1,564 +1,564 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - Vacancy - 12 - 1 - 1 - 31 - always unavailable - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + Bills + + + + + Vacancy + 12 + 1 + 1 + 31 + always unavailable + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml index c4b3584448..1fd2ba1d5f 100644 --- a/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +++ b/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../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 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml index 8c56ed38a8..4142a305e2 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-schedules.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-schedules.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml index 64551fcc17..d2fb29a653 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-setbacks.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-setbacks.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-detailed-setpoints.xml b/workflow/sample_files/base-schedules-detailed-setpoints.xml index da5db99672..ffc1c7c9d8 100644 --- a/workflow/sample_files/base-schedules-detailed-setpoints.xml +++ b/workflow/sample_files/base-schedules-detailed-setpoints.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-schedules-simple.xml b/workflow/sample_files/base-schedules-simple.xml index 6875c8af79..76600f33a0 100644 --- a/workflow/sample_files/base-schedules-simple.xml +++ b/workflow/sample_files/base-schedules-simple.xml @@ -1,609 +1,609 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - living space - 650.0 - true - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - - TV other - - kWh/year - 620.0 - - - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 + + + + + living space + electricity + 3.73 + true + 150.0 + + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + living space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + living space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index 5e3310d431..244864d16a 100644 --- a/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - 2010 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + 2010 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index 5d348862ff..0bfe188fcb 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
- - true - - 3 - 10 - 11 - 6 - - -
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+ + true + + 3 + 10 + 11 + 6 + + +
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index 5063e74a33..22acd4ccd1 100644 --- a/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
- - false - -
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+ + false + +
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index 9bd6daf164..0d6619ba5c 100644 --- a/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - 2 - 1 - 2 - 28 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + 2 + 1 + 2 + 28 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml index 30f47d76e2..04beca2829 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml index 2b35efecae..1e6043d8df 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + ../../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 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index 44ecd11022..06617d324d 100644 --- a/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/sample_files/base.xml b/workflow/sample_files/base.xml index beee47611e..579be5af5c 100644 --- a/workflow/sample_files/base.xml +++ b/workflow/sample_files/base.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + living space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw b/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw index c2f2a1c2c7..da3a974b27 100644 --- a/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +++ b/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw @@ -115,6 +115,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -130,6 +131,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw b/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw index e9b8de8deb..376cc13ca1 100644 --- a/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +++ b/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw @@ -40,6 +40,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -55,6 +56,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/workflow/template-run-hpxml-with-stochastic-occupancy.osw b/workflow/template-run-hpxml-with-stochastic-occupancy.osw index 87516421fc..737d8ab397 100644 --- a/workflow/template-run-hpxml-with-stochastic-occupancy.osw +++ b/workflow/template-run-hpxml-with-stochastic-occupancy.osw @@ -39,6 +39,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -54,6 +55,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/workflow/template-run-hpxml.osw b/workflow/template-run-hpxml.osw index a5e7ac45ef..9557d064d4 100644 --- a/workflow/template-run-hpxml.osw +++ b/workflow/template-run-hpxml.osw @@ -31,6 +31,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -46,6 +47,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml index f19a3664bb..27b736a92a 100644 --- a/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +++ b/workflow/tests/ACCA_Examples/Vatilo_Residence.xml @@ -138,7 +138,6 @@ living space 1200.0 140.0 - 0.0 @@ -159,7 +158,6 @@ garage 15.0 45.0 - 0.0 diff --git a/workflow/tests/ASHRAE_Standard_140/L100AC.xml b/workflow/tests/ASHRAE_Standard_140/L100AC.xml index 60671c06ee..03a4a7d9e6 100644 --- a/workflow/tests/ASHRAE_Standard_140/L100AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L100AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L100AL.xml b/workflow/tests/ASHRAE_Standard_140/L100AL.xml index 376acf9228..b3e429494a 100644 --- a/workflow/tests/ASHRAE_Standard_140/L100AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L100AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L110AC.xml b/workflow/tests/ASHRAE_Standard_140/L110AC.xml index 75cd08f000..6f4ec6ed39 100644 --- a/workflow/tests/ASHRAE_Standard_140/L110AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L110AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L110AL.xml b/workflow/tests/ASHRAE_Standard_140/L110AL.xml index 9580831ec2..7bb02c9b35 100644 --- a/workflow/tests/ASHRAE_Standard_140/L110AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L110AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L120AC.xml b/workflow/tests/ASHRAE_Standard_140/L120AC.xml index 9b78fff2c4..627c2279c9 100644 --- a/workflow/tests/ASHRAE_Standard_140/L120AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L120AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 57.49 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 57.49 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L120AL.xml b/workflow/tests/ASHRAE_Standard_140/L120AL.xml index c8e0905d3f..e7fe23bf27 100644 --- a/workflow/tests/ASHRAE_Standard_140/L120AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L120AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 57.49 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 57.49 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L130AC.xml b/workflow/tests/ASHRAE_Standard_140/L130AC.xml index ec530bb170..8a527eec9c 100644 --- a/workflow/tests/ASHRAE_Standard_140/L130AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L130AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L130AL.xml b/workflow/tests/ASHRAE_Standard_140/L130AL.xml index fa49d6b4e1..bb2074b0d0 100644 --- a/workflow/tests/ASHRAE_Standard_140/L130AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L130AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L140AC.xml b/workflow/tests/ASHRAE_Standard_140/L140AC.xml index 1c908732aa..1218f9da08 100644 --- a/workflow/tests/ASHRAE_Standard_140/L140AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L140AC.xml @@ -1,309 +1,309 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L140AL.xml b/workflow/tests/ASHRAE_Standard_140/L140AL.xml index 63ab032757..c062f1393a 100644 --- a/workflow/tests/ASHRAE_Standard_140/L140AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L140AL.xml @@ -1,309 +1,309 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L150AC.xml b/workflow/tests/ASHRAE_Standard_140/L150AC.xml index de84aea18b..dcf65d6988 100644 --- a/workflow/tests/ASHRAE_Standard_140/L150AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L150AC.xml @@ -1,325 +1,325 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L150AL.xml b/workflow/tests/ASHRAE_Standard_140/L150AL.xml index bc886ffd12..6d719f4892 100644 --- a/workflow/tests/ASHRAE_Standard_140/L150AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L150AL.xml @@ -1,325 +1,325 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L155AC.xml b/workflow/tests/ASHRAE_Standard_140/L155AC.xml index 72d10d2163..b75e96211d 100644 --- a/workflow/tests/ASHRAE_Standard_140/L155AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L155AC.xml @@ -1,330 +1,330 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - - 2.5 - 1.0 - 6.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + + 2.5 + 1.0 + 6.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L155AL.xml b/workflow/tests/ASHRAE_Standard_140/L155AL.xml index c3f5056d24..1cc12e1a50 100644 --- a/workflow/tests/ASHRAE_Standard_140/L155AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L155AL.xml @@ -1,330 +1,330 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - - 2.5 - 1.0 - 6.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + + 2.5 + 1.0 + 6.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L160AC.xml b/workflow/tests/ASHRAE_Standard_140/L160AC.xml index f6abe1ca98..cf1eb61c5f 100644 --- a/workflow/tests/ASHRAE_Standard_140/L160AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L160AC.xml @@ -1,339 +1,339 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 135.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 135.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 135.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 135.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L160AL.xml b/workflow/tests/ASHRAE_Standard_140/L160AL.xml index 9ecbd2c2ec..7a522ed1a5 100644 --- a/workflow/tests/ASHRAE_Standard_140/L160AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L160AL.xml @@ -1,339 +1,339 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 135.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 135.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 135.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 135.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L170AC.xml b/workflow/tests/ASHRAE_Standard_140/L170AC.xml index 3d56aa5be0..efcf962b9d 100644 --- a/workflow/tests/ASHRAE_Standard_140/L170AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L170AC.xml @@ -1,360 +1,360 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 0.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 0.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L170AL.xml b/workflow/tests/ASHRAE_Standard_140/L170AL.xml index 945b2f5fd8..0a1c687a60 100644 --- a/workflow/tests/ASHRAE_Standard_140/L170AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L170AL.xml @@ -1,360 +1,360 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 0.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 0.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L200AC.xml b/workflow/tests/ASHRAE_Standard_140/L200AC.xml index 87d33ac240..e65f44bd8c 100644 --- a/workflow/tests/ASHRAE_Standard_140/L200AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L200AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L200AL.xml b/workflow/tests/ASHRAE_Standard_140/L200AL.xml index 30c6f650ca..0aa777a1f9 100644 --- a/workflow/tests/ASHRAE_Standard_140/L200AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L200AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L202AC.xml b/workflow/tests/ASHRAE_Standard_140/L202AC.xml index 9fa2aad4ee..9e9ae7786f 100644 --- a/workflow/tests/ASHRAE_Standard_140/L202AC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L202AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L202AL.xml b/workflow/tests/ASHRAE_Standard_140/L202AL.xml index a275657323..ed562085ef 100644 --- a/workflow/tests/ASHRAE_Standard_140/L202AL.xml +++ b/workflow/tests/ASHRAE_Standard_140/L202AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + + + outside + living space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/workflow/tests/ASHRAE_Standard_140/L302XC.xml index df8135dbf5..6c43347021 100644 --- a/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -1,381 +1,380 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - living space - 1539.0 - 4.0 - 168.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 1.0 - 2.08 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + living space + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 1.0 + 2.08 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/workflow/tests/ASHRAE_Standard_140/L304XC.xml index 096e10addf..436ceb3979 100644 --- a/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -1,381 +1,380 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - living space - 1539.0 - 4.0 - 168.0 - 0.0 - - - - 5.4 - 2.5 - - - - - - 0.0 - 0.0 - - - - 1.0 - 2.08 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + living space + 1539.0 + 4.0 + 168.0 + + + + 5.4 + 2.5 + + + + + + 0.0 + 0.0 + + + + 1.0 + 2.08 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/workflow/tests/ASHRAE_Standard_140/L322XC.xml index ba8078614b..451b9ead2b 100644 --- a/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 2.0 - 1.0 - 3 - 3078.0 - 24624.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.335 - - 24624.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - basement - conditioned - 42.7 - 0 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - outside - basement - conditioned - 20.3 - 90 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - outside - basement - conditioned - 42.7 - 180 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - outside - basement - conditioned - 20.3 - 270 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 0 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 90 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 180 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 270 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - basement - conditioned - 1539.0 - 4.0 - 168.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 2.0 + 1.0 + 3 + 3078.0 + 24624.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.335 + + 24624.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + basement - conditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - conditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - conditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - conditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + basement - conditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/workflow/tests/ASHRAE_Standard_140/L324XC.xml index 46d9452a7d..9ac43f2486 100644 --- a/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -1,548 +1,548 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 2.0 - 1.0 - 3 - 3078.0 - 24624.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.335 - - 24624.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - basement - conditioned - 42.7 - 0 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - outside - basement - conditioned - 20.3 - 90 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - outside - basement - conditioned - 42.7 - 180 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - outside - basement - conditioned - 20.3 - 270 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 0 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 90 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 180 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 270 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - basement - conditioned - 1539.0 - 4.0 - 168.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 2.0 + 1.0 + 3 + 3078.0 + 24624.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.335 + + 24624.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + basement - conditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + outside + basement - conditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + outside + basement - conditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + outside + basement - conditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + + + outside + living space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + living space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + + + attic - vented + living space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + basement - conditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index e993a1ea64..dcc7194608 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,475 +1,481 @@ -HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Hot Tub Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.604,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.655,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.541,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.593,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,9.69,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,7.932,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12246.0,5542.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,8.739,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23059.0,7546.0,4921.0,0.0,377.0,4200.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29390.0,0.0,9510.0,0.0,575.0,6763.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,9.068,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,37750.0,7491.0,10436.0,0.0,575.0,7551.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24345.0,0.0,7508.0,0.0,575.0,6409.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,6.821,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,24000.0,24000.0,0.0,25.88,98.42,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30047.0,4820.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,9.228,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27461.0,7439.0,5147.0,0.0,575.0,5388.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43121.0,0.0,3210.0,0.0,575.0,4222.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21138.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21139.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,9.832,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.949,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,12347.0,5659.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,9.717,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.113,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,12328.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,9.916,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.163,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,14594.0,6779.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.261,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,8333.0,3674.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,9.695,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.034,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,7888.0,3455.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,4.595,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.505,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.205,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.663,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,8647.0,10342.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.295,23.295,22.713,22.713,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,8647.0,0.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.195,23.195,22.742,22.742,0.453,0.0,0.0,0.0,0.0,0.0,0.028,0.028,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,28548.0,0.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,12000.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,8872.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4518.0,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.302,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,6182.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1828.0,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,7785.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3431.0,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,0.0,1.096,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.875,0.0,10.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.074,0.0,10.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.345,37.345,37.345,37.345,0.0,0.0,0.0,0.0,0.0,0.0,5.342,0.373,0.0,0.0,2.587,1.074,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.898,0.0,13.36,9.232,0.614,2.924,0.0,0.0,0.0,3219.0,2126.0,21.008,15.09,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.115,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.833,8.483,2.01,1354.8,997.6,11413.1,2619.0,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,6.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.587,0.0,13.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,0.0,4.743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.67,0.0,13.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,8.867,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.89,0.0,13.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,0.0,0.0,1.948,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.106,0.0,3.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.088,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,8.67,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,2.985,0.0,0.324,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,3.208,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,0.0,0.306,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,9.153,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,17.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,6.822,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,1.252,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,0.0,0.33,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,8.734,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,11.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.328,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,3.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,9.12,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43353.0,7641.0,15016.0,0.0,575.0,8855.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45325.0,7665.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,5.557,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,7.399,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,10.889,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44054.0,8851.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,64.445,64.445,29.438,29.438,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,3.69,0.673,9.366,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.788,0.0,11.181,9.342,0.619,0.0,0.0,0.0,0.0,1757.2,3482.5,27.934,20.772,0.0,3.519,3.647,0.0,0.0,0.654,9.893,-12.804,0.0,0.0,26.42,0.0,-0.18,2.047,0.0,0.786,0.0,7.347,-7.418,-1.565,0.0,0.392,-0.069,0.0,0.0,0.096,0.251,11.037,0.0,0.0,-7.528,0.0,-0.176,-0.275,-1.935,-0.093,0.0,2.77,5.786,1.082,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,9.266,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31789.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31791.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36858.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34149.0,8646.0,7508.0,2294.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32508.0,8603.0,7508.0,696.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,9.565,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,36000.0,24000.0,0.0,6.8,91.76,29033.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34804.0,8652.0,918.0,0.0,575.0,15942.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25022.0,8332.0,0.0,0.0,575.0,7398.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38222.0,8734.0,13788.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.137,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30939.0,8558.0,6680.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,47.553,47.553,30.316,30.316,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,0.0,4.641,0.906,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.147,0.0,15.224,9.342,0.606,0.0,0.0,0.0,2.0,1739.5,3551.4,20.358,21.092,0.0,3.835,3.82,0.0,0.0,0.743,10.74,-11.371,0.0,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-6.786,-1.435,0.0,-0.045,-0.503,0.0,0.0,0.04,-0.774,12.469,0.0,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.617,6.404,1.212,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,27750.0,8437.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2299.0,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,9.402,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31139.0,8564.0,7508.0,0.0,620.0,7098.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-complex.xml,65.762,65.762,36.973,36.973,28.789,0.0,0.0,0.0,0.0,0.0,0.0,0.475,0.0,0.0,5.045,1.013,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.962,0.0,17.137,9.233,0.615,0.0,0.0,0.0,0.0,2145.5,3923.4,26.48,20.732,0.0,3.473,3.603,0.507,10.912,0.621,10.368,-12.56,0.0,0.0,0.0,9.47,-0.053,4.804,0.0,0.727,0.0,6.113,-8.913,-2.501,0.0,-0.082,-0.468,-0.053,3.7,-0.028,-1.929,11.71,0.0,0.0,0.0,-4.553,-0.048,-1.148,-3.157,-0.163,0.0,3.656,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33064.0,8618.0,7508.0,0.0,575.0,7168.0,0.0,0.0,2427.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31189.0,8565.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32565.0,8604.0,7508.0,0.0,575.0,7160.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,9.362,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21226.0,0.0,7508.0,0.0,575.0,4819.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,9.33,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.199,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,36000.0,24000.0,0.0,6.8,91.76,23122.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,28666.0,1683.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,9.348,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.189,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23083.0,4828.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,9.346,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.19,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,20580.0,4443.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,9.28,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.715,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23845.0,1648.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,9.34,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.245,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23128.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,20341.0,4163.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,9.523,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.975,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,23883.0,6886.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,61.824,61.824,36.337,36.337,25.487,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.0,0.0,4.58,0.896,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.868,0.0,15.098,9.233,0.614,0.0,0.0,0.0,0.0,2142.3,3805.8,25.232,19.65,0.0,3.553,3.687,0.512,4.683,0.63,11.227,-12.771,0.0,0.0,0.0,10.608,-0.062,6.635,0.0,0.729,0.0,5.498,-8.906,-2.499,0.0,-0.12,-0.524,-0.053,1.621,-0.027,-2.145,12.058,0.0,0.0,0.0,-3.52,-0.058,-1.571,-3.422,-0.164,0.0,3.325,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32446.0,8601.0,7925.0,0.0,575.0,4704.0,0.0,0.0,2528.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.69,42.69,42.69,42.69,0.0,0.0,0.0,0.0,0.0,0.0,9.829,1.766,0.625,0.054,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.679,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7301.8,1637.3,25.597,0.0,0.0,3.448,3.637,0.512,7.485,0.629,10.517,-12.551,0.0,0.0,0.0,8.113,-0.066,4.805,0.0,0.728,0.0,7.479,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.191,46.191,46.191,46.191,0.0,0.0,0.0,0.0,0.0,0.0,9.727,1.011,0.469,0.025,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.516,0.494,13.136,9.233,0.614,0.0,0.0,0.0,0.0,6957.6,3218.7,24.38,15.851,0.0,3.496,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.107,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,49.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11059.0,51.62,90.68,11059.0,4355.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.826,44.826,44.826,44.826,0.0,0.0,0.0,0.0,0.0,0.0,9.162,0.998,0.046,0.006,3.202,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.529,0.052,11.986,9.233,0.614,0.0,0.0,0.0,0.0,6646.5,2916.0,22.763,13.183,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.036,-8.907,-2.499,0.0,0.036,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.066,7.871,2.01,1354.8,997.6,11399.5,2615.8,64975.0,64975.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.589,41.589,41.589,41.589,0.0,0.0,0.0,0.0,0.0,0.0,7.132,0.631,0.441,0.017,2.299,0.628,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.714,0.459,13.364,9.233,0.614,0.0,0.0,0.0,0.0,6927.3,2770.1,24.354,16.817,0.0,3.45,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.343,-8.907,-2.499,0.0,-0.016,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.47,7.871,2.01,1354.8,997.6,11399.5,2615.8,32943.0,32943.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.631,40.631,40.631,40.631,0.0,0.0,0.0,0.0,0.0,0.0,6.888,0.551,0.049,0.005,2.127,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.241,0.054,12.109,9.233,0.614,0.0,0.0,0.0,0.0,6743.7,2524.4,23.408,13.625,0.0,3.58,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.063,4.804,0.0,0.728,0.0,3.769,-8.907,-2.499,0.0,0.033,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.19,7.871,2.01,1354.8,997.6,11399.5,2615.8,64639.0,64639.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.163,51.163,37.631,37.631,13.533,0.0,0.0,0.0,0.0,0.0,4.159,0.371,0.0,0.14,2.311,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.77,11.263,14.484,9.233,0.615,0.0,0.0,2.0,0.0,3199.7,2682.1,23.554,17.721,0.0,3.374,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.401,-8.918,-2.502,0.0,-0.06,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.73,7.861,2.008,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,23209.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.524,54.524,37.837,37.837,16.688,0.0,0.0,0.0,0.0,0.0,4.012,0.354,0.0,0.503,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.611,13.853,14.589,9.233,0.614,0.0,0.0,2.0,0.0,3340.9,2627.7,30.723,17.555,0.0,3.247,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.29,-0.061,4.804,0.0,0.728,0.0,12.383,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,31792.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.183,41.183,41.183,41.183,0.0,0.0,0.0,0.0,0.0,0.0,7.323,0.751,0.133,0.009,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.86,0.141,14.588,9.233,0.614,0.0,0.0,0.0,0.0,7037.5,2627.7,24.691,17.555,0.0,3.367,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.551,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.896,40.896,40.896,40.896,0.0,0.0,0.0,0.0,0.0,0.0,7.275,0.644,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.845,0.057,13.53,9.233,0.614,0.0,0.0,0.0,0.0,6897.7,2562.2,23.861,16.36,0.0,3.444,3.635,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.477,-8.907,-2.499,0.0,-0.022,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.061,-0.165,0.0,2.648,7.871,2.01,1354.8,997.6,11399.5,2615.8,49709.0,49709.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.173,48.173,48.173,48.173,0.0,0.0,0.0,0.0,0.0,0.0,17.561,0.194,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.298,55.298,36.433,36.433,18.865,0.0,0.0,0.0,0.0,0.0,0.0,0.231,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2097.2,3330.0,16.457,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23209.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.322,49.322,30.646,30.646,18.676,0.0,0.0,0.0,0.0,0.0,0.0,0.228,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2058.6,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.106,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.583,48.583,48.583,48.583,0.0,0.0,0.0,0.0,0.0,0.0,9.917,1.783,0.627,0.054,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.925,0.681,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7330.8,3330.1,25.597,17.819,0.0,3.442,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.547,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,19922.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.437,56.437,32.047,32.047,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,0.0,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,1915.1,25.24,11.075,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,13458.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.715,53.715,53.715,53.715,0.0,0.0,0.0,0.0,0.0,0.0,22.67,0.628,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8664.8,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.65,58.65,34.864,34.864,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.319,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2122.6,2947.8,24.293,18.493,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.905,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20155.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.98,57.98,34.213,34.213,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.296,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2121.8,2796.9,24.264,17.856,0.0,3.509,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.882,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20283.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.194,55.194,31.045,31.045,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.628,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.9,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.517,60.517,36.126,36.126,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,5.051,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,3023.7,25.24,11.066,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,14272.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.719,36.719,36.719,36.719,0.0,0.0,0.0,0.0,0.0,0.0,5.502,0.8,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.152,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3429.1,1637.3,23.668,0.0,0.0,3.547,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.869,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.005,40.005,40.005,40.005,0.0,0.0,0.0,0.0,0.0,0.0,5.519,0.693,0.0,0.0,2.54,0.813,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.204,0.0,13.313,9.233,0.614,0.0,0.0,0.0,0.0,3372.7,2561.2,23.122,15.813,0.0,3.548,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.758,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.422,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.625,36.625,36.625,36.625,0.0,0.0,0.0,0.0,0.0,0.0,5.808,0.316,0.082,0.003,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.818,0.085,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4309.1,1637.3,19.511,0.0,0.0,3.595,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.502,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,25749.0,0.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.941,38.941,38.941,38.941,0.0,0.0,0.0,0.0,0.0,0.0,5.858,0.319,0.084,0.003,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.012,0.087,12.267,9.233,0.614,0.0,0.0,0.0,0.0,4313.4,2190.0,19.512,13.381,0.0,3.592,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.534,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.41,38.41,38.41,38.41,0.0,0.0,0.0,0.0,0.0,0.0,5.415,0.269,0.0,0.0,2.211,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.078,0.0,11.748,9.233,0.614,0.0,0.0,0.0,0.0,3649.5,2213.4,19.201,12.59,0.0,3.623,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.574,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.833,7.871,2.01,1354.8,997.6,11399.5,2615.8,41152.0,41152.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.761,37.761,37.761,37.761,0.0,0.0,0.0,0.0,0.0,0.0,5.087,0.103,0.048,0.0,2.055,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.048,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3723.6,2118.3,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.931,47.931,35.611,35.611,0.0,12.32,0.0,0.0,0.0,0.0,3.013,0.093,0.0,0.0,2.038,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.658,7.392,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2851.6,2121.4,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.618,49.618,42.911,42.911,6.707,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.203,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2613.9,3427.6,16.935,14.883,0.0,2.872,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.461,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31005.0,27561.0,0.0,0.0,100.0,31005.0,9028.0,7128.0,0.0,545.0,6084.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.274,52.274,30.521,30.521,0.0,21.754,0.0,0.0,0.0,0.0,0.0,0.102,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.8,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,60.029,60.029,36.205,36.205,23.824,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.365,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2124.2,3189.8,24.351,18.003,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.952,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,19922.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.119,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,70776.0,33116.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31013.0,7804.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28177.0,4969.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31786.0,8577.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34050.0,10841.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32152.0,8944.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,0.0,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only-ducted.xml,31.362,31.362,31.362,31.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.556,39.556,39.556,39.556,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.4,2581.7,20.901,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,0.698,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.381,41.381,41.381,41.381,0.0,0.0,0.0,0.0,0.0,0.0,6.67,0.384,0.0,0.0,2.932,0.954,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.447,0.0,13.147,9.233,0.614,0.0,0.0,0.0,0.0,3447.4,2730.1,21.835,15.722,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.98,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.246,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26137.0,2928.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-none.xml,19.737,19.737,19.737,19.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.607,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354.8,997.6,8540.6,2104.4,0.0,0.0,0.0,63.32,89.06,2825.0,0.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.236,56.236,35.518,35.518,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,3.959,0.758,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.42,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,2961.2,20.504,15.145,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.932,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28463.0,18434.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,0.355,9.179,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,59.243,59.243,36.784,36.784,22.46,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.346,0.842,9.164,0.0,0.0,5.118,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.033,0.0,14.182,9.233,0.614,0.0,0.0,0.0,0.0,2193.9,3333.9,23.005,18.0,0.0,3.549,3.638,0.512,7.512,0.63,10.518,-12.549,0.0,0.0,0.0,8.291,-0.064,4.806,0.0,0.728,0.0,4.868,-8.907,-2.836,0.0,-0.051,-0.461,-0.051,2.688,-0.025,-1.933,11.731,0.0,0.0,0.0,-6.342,-0.06,-1.17,-3.09,-0.165,0.0,3.143,7.871,2.282,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,9.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,9.579,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30246.0,8331.0,7102.0,0.0,543.0,6062.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.656,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,24000.0,24000.0,0.0,17.24,91.22,18314.0,4508.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,7.629,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,24000.0,24000.0,0.0,41.0,84.38,13255.0,5428.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.316,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,36000.0,24000.0,0.0,-13.72,81.14,31260.0,6260.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,10.333,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39420.0,10023.0,9283.0,0.0,710.0,7923.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.228,0.744,0.0,0.0,0.3,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,12000.0,24000.0,0.0,63.32,89.06,3417.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,4.948,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,0.0,13.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,12000.0,24000.0,0.0,51.62,90.68,8608.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,5.181,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,24000.0,24000.0,0.0,41.36,108.14,13271.0,1050.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,9.081,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,24000.0,24000.0,0.0,28.58,87.08,17550.0,6260.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,9.17,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38240.0,8734.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.887,9.233,0.0,0.0,4.51,0.0,0.334,2.754,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.736,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42299.0,16223.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31472.0,8574.0,7508.0,0.0,575.0,6098.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,0.0,17.463,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,0.0,17.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30944.0,8558.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,8.303,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,0.0,21.139,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.804,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.458,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,3.942,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,9.164,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.472,86.472,46.995,46.995,39.477,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.723,4.406,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.439,0.0,17.038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.196,0.0,50.021,10.416,2.674,0.0,0.0,0.0,0.0,1853.3,6430.8,37.577,40.55,0.489,1.971,7.187,0.419,0.0,0.959,7.579,-4.942,0.0,0.0,0.438,1.257,-0.263,4.293,0.0,5.152,0.0,3.21,-6.762,-2.935,0.576,2.028,3.795,0.307,0.0,0.257,0.294,11.575,0.0,0.0,0.572,6.816,-0.249,-0.42,-1.415,-0.757,0.0,10.793,11.588,4.446,2104.5,2144.0,14468.7,4385.1,90000.0,60000.0,0.0,25.88,98.42,62092.0,24399.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.267,67.267,39.84,39.84,27.428,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.743,3.413,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.945,0.0,13.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.306,0.0,39.368,7.526,2.888,0.0,0.0,0.0,0.0,1554.0,4938.0,23.886,28.431,0.0,2.525,5.047,0.0,0.0,0.848,5.998,-4.053,0.0,0.0,0.0,1.761,-0.146,1.574,0.0,3.789,0.0,1.371,-5.071,-2.493,0.0,3.11,2.775,0.0,0.0,0.402,-0.49,8.601,0.0,0.0,0.0,8.463,-0.14,-0.183,-1.053,-0.638,0.0,5.886,8.93,3.888,1610.9,1574.7,9989.5,3520.4,90000.0,60000.0,0.0,25.88,98.42,47924.0,15311.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.65,68.65,40.101,40.101,28.549,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.766,3.552,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.309,0.0,13.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.411,0.0,40.869,7.526,2.687,0.0,0.0,0.0,0.0,1632.3,5239.7,26.287,32.144,0.645,2.771,4.649,0.0,0.0,0.979,6.67,-3.929,0.0,0.0,0.0,1.082,-0.162,1.987,0.0,3.935,0.0,1.613,-5.288,-2.699,0.809,3.085,2.609,0.0,0.0,0.639,-0.276,9.905,0.0,0.0,0.0,6.527,-0.155,-0.219,-1.096,-0.637,0.0,6.494,9.194,4.176,1610.9,1574.7,9989.3,3520.4,90000.0,60000.0,0.0,25.88,98.42,48411.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.282,136.282,75.371,75.371,60.91,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,29.027,9.473,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.769,0.0,16.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.203,0.0,107.257,8.985,3.506,0.0,0.0,0.0,105.0,3062.3,7371.4,54.682,50.217,0.128,5.524,11.378,0.0,0.0,1.248,14.004,-5.986,0.0,0.0,0.0,3.23,-0.722,4.937,0.0,6.276,0.0,7.099,-7.294,-3.929,0.202,6.823,11.717,0.0,0.0,0.523,5.458,17.456,0.0,0.0,0.0,18.949,-0.709,1.029,0.0,1.859,0.0,21.516,15.063,7.633,1857.7,1859.3,12229.0,3983.9,80000.0,60000.0,0.0,25.88,98.42,76554.0,20975.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.141,95.141,53.332,53.332,41.809,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.312,5.162,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.616,0.0,15.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.585,0.0,59.698,8.985,2.726,0.0,0.0,0.0,0.0,2075.9,7519.2,45.934,51.035,0.0,3.005,8.093,0.266,0.0,1.336,10.05,-6.655,0.0,0.0,0.37,1.255,-0.337,5.037,0.0,5.077,0.0,4.382,-6.862,-3.637,0.0,3.044,4.354,0.214,0.0,0.297,0.315,15.402,0.0,0.0,0.447,7.531,-0.32,-0.49,-1.77,-0.737,0.0,14.587,11.523,5.518,1857.7,1859.4,12229.0,3983.9,90000.0,60000.0,0.0,25.88,98.42,71539.0,26959.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,142.242,142.242,31.894,31.894,110.348,0.0,0.0,0.0,0.0,0.0,0.0,1.939,0.0,0.0,2.995,0.348,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.5,0.0,20.137,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.35,0.0,7.988,13.084,3.278,0.0,0.0,0.0,0.0,1993.4,2452.7,41.347,14.878,0.0,4.247,22.232,1.986,37.105,1.863,17.922,-9.457,0.0,0.0,0.0,12.082,-0.315,9.522,0.0,4.368,0.0,0.0,-14.573,-6.454,0.0,0.178,-0.794,-0.045,2.679,-0.086,-0.891,4.255,0.0,0.0,0.0,-3.557,-0.314,-0.514,-0.619,-0.075,0.0,0.0,5.644,2.233,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,38740.0,0.0,8907.0,0.0,750.0,19692.0,0.0,0.0,2259.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,141.653,141.653,34.049,34.049,107.604,0.0,0.0,0.0,0.0,0.0,0.0,1.691,0.0,0.0,2.601,0.411,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.937,0.0,23.28,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.383,0.0,5.998,15.632,3.268,0.0,0.0,0.0,0.0,2197.3,2578.4,40.515,13.451,0.0,4.696,23.603,4.396,10.144,1.496,18.957,-9.35,0.0,0.0,0.076,14.267,-0.347,6.117,0.0,20.825,0.0,2.966,-17.227,-7.76,0.0,0.203,-0.715,-0.042,0.519,-0.048,-0.56,4.543,0.0,0.0,-0.009,-3.729,-0.343,-0.193,-0.595,-1.898,0.0,0.107,6.313,2.539,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43636.0,5468.0,9095.0,0.0,587.0,14942.0,0.0,27.0,2397.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,185.757,185.757,39.285,39.285,146.472,0.0,0.0,0.0,0.0,0.0,0.0,2.539,0.0,0.0,3.638,0.547,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.034,0.0,26.377,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.509,0.0,10.33,18.129,3.214,0.0,0.0,0.0,0.0,2477.9,3308.4,55.44,19.563,0.0,7.203,27.363,4.679,24.316,1.177,22.371,-7.822,0.0,0.0,1.223,19.694,-0.365,18.319,0.0,6.384,0.0,7.958,-18.658,-8.182,0.0,0.306,-1.14,-0.066,1.602,-0.088,-1.393,5.358,0.0,0.0,-0.104,-2.374,-0.365,-0.992,-0.691,-0.286,0.0,0.545,7.296,2.823,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,59832.0,10595.0,10314.0,0.0,587.0,20172.0,0.0,891.0,4429.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.012,154.012,33.993,33.993,120.019,0.0,0.0,0.0,0.0,0.0,0.0,2.029,0.0,0.0,2.389,0.289,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.344,0.0,23.29,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.128,0.0,5.244,15.632,3.276,0.0,0.0,0.0,0.0,2226.3,2610.0,44.084,13.929,0.0,5.088,28.337,4.269,13.075,2.251,19.554,-8.214,0.0,0.0,0.266,15.531,-0.345,8.73,0.0,21.437,0.0,0.0,-17.507,-7.871,0.0,0.245,-0.691,-0.018,0.744,-0.076,-0.776,4.52,0.0,0.0,-0.028,-4.085,-0.341,-0.259,-0.523,-1.801,0.0,0.0,6.014,2.401,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44389.0,0.0,8913.0,0.0,885.0,18118.0,0.0,95.0,3355.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,156.325,156.325,37.675,37.675,118.65,0.0,0.0,0.0,0.0,0.0,0.0,1.914,0.0,0.0,2.958,0.282,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.214,0.0,26.375,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.298,0.0,7.539,18.129,3.213,0.0,0.0,0.0,0.0,2413.9,2825.7,46.006,15.529,0.872,4.91,25.351,4.845,9.789,1.246,23.444,-9.224,0.0,0.0,0.893,13.855,-0.364,19.559,0.0,6.4,0.0,4.992,-18.699,-8.179,0.025,0.219,-0.753,-0.078,0.5,-0.073,-1.37,5.069,0.0,0.0,-0.046,-3.89,-0.361,-1.028,-0.687,-0.272,0.0,0.345,7.235,2.807,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51143.0,8284.0,10714.0,0.0,587.0,16310.0,359.0,532.0,1678.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,2.334,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,24000.0,18000.0,34120.0,24.62,91.58,20649.0,6686.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,23400.0,23200.0,0.0,24.62,91.58,13914.0,1327.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,18000.0,18000.0,17060.0,24.62,91.58,13648.0,3089.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.853,39.853,0.0,0.0,21.411,0.0,0.0,0.0,7.559,0.538,0.161,0.004,3.072,1.04,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.223,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.34,0.164,12.019,10.478,0.0,0.0,0.0,1.0,16.0,7459.0,3560.9,42.956,19.023,0.0,4.422,10.844,0.619,5.714,0.298,7.394,-8.024,0.0,0.0,0.0,6.778,-0.019,5.733,0.0,3.86,0.0,0.0,-8.633,-4.768,0.0,-0.35,-0.879,-0.023,2.9,-0.048,-0.599,12.366,0.0,0.0,0.0,-8.871,-0.021,-1.377,-1.189,-1.027,0.0,0.0,7.782,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26406.0,0.0,5399.0,0.0,171.0,10377.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,35267.0,0.0,4833.0,0.0,181.0,13937.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4909.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.829,129.829,51.943,51.943,77.886,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.26,3.784,9.725,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.111,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.061,0.0,44.571,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6498.5,84.656,46.066,0.0,11.382,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.956,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.957,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,49914.0,0.0,9523.0,0.0,1028.0,26480.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.978,116.978,56.889,56.889,0.0,0.0,60.089,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.255,2.925,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.496,0.369,2.745,0.11,0.0,2.255,16.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.951,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.959,0.0,34.544,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6621.3,31.034,32.551,0.908,11.005,10.577,1.134,9.808,0.633,14.613,-15.405,0.0,0.0,0.0,7.525,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.244,0.149,0.176,0.052,6.389,0.012,-1.765,21.501,0.0,0.0,0.0,-6.71,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,44436.0,0.0,10325.0,0.0,395.0,12858.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.414,156.414,48.608,48.608,107.806,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.49,1.583,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.765,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.989,0.0,19.001,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4772.1,81.115,23.856,0.0,8.268,27.059,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.316,26.612,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.014,-0.865,0.005,2.201,-0.093,-1.71,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.324,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52324.0,8017.0,10175.0,0.0,318.0,15504.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.496,0.369,2.745,1.608,0.0,2.255,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,100000.0,36000.0,0.0,16.16,89.24,53604.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21272.0,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,43971.0,0.0,5067.0,0.0,362.0,17083.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,85000.0,30000.0,0.0,16.16,89.24,60409.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,158000.0,81000.0,33000.0,24.62,91.58,54382.0,20089.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.53,57.53,24.858,24.858,32.672,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.54,0.0,14.132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.214,0.0,0.0,8.607,2.071,0.0,0.0,0.0,0.0,1554.3,1299.3,17.654,0.0,0.0,1.763,6.788,0.231,0.0,0.196,4.821,-2.877,0.0,0.0,7.433,0.0,-0.053,2.486,0.0,3.124,0.0,0.0,-6.702,-3.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1294.7,1281.5,8575.8,3022.2,84000.0,0.0,0.0,24.62,91.58,22421.0,0.0,3869.0,0.0,128.0,5749.0,0.0,5824.0,0.0,1459.0,5391.0,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.675,72.675,31.766,31.766,40.908,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,7.903,1.021,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.958,0.0,17.881,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.8,0.0,23.144,8.564,5.231,0.0,0.0,0.0,0.0,1579.3,3624.8,24.012,22.742,0.717,1.779,7.835,0.433,0.0,0.588,5.217,-4.028,0.0,0.0,0.372,3.347,-0.138,1.744,0.0,10.422,0.0,2.036,-8.785,-2.844,0.486,1.117,0.735,0.091,0.0,-0.107,-0.293,5.629,0.0,0.0,0.112,3.831,-0.138,-0.367,-0.973,-3.484,0.0,2.602,10.733,3.103,1610.9,1574.7,10579.5,3728.4,75000.0,36000.0,0.0,24.62,91.58,33085.0,7576.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.777,67.777,29.713,29.713,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.257,0.0,0.0,7.134,1.521,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.558,0.0,18.12,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.733,0.0,22.845,10.226,3.619,0.0,0.0,0.0,0.0,1516.8,3329.2,19.98,21.277,0.767,1.659,7.019,0.34,0.0,0.428,5.478,-3.79,0.0,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-9.079,-2.901,0.614,1.244,-0.524,0.118,0.0,0.074,-0.711,6.39,0.0,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.931,11.526,3.237,1857.7,1859.4,12951.5,4219.3,75000.0,36000.0,0.0,24.62,91.58,31420.0,8676.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,78.146,78.146,30.129,30.129,48.017,0.0,0.0,0.0,0.0,0.0,0.0,0.647,0.0,0.0,6.253,0.932,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.353,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.015,0.0,14.034,9.614,0.0,0.0,0.0,0.0,0.0,1605.9,3024.0,28.665,14.173,0.0,3.353,14.661,0.392,0.0,0.306,6.677,-6.46,0.0,0.0,7.295,0.0,-0.082,7.286,0.0,7.296,0.0,3.208,-8.368,-3.708,0.0,1.121,-0.886,0.008,0.0,0.054,0.347,5.724,0.0,0.0,-0.005,0.0,-0.077,-0.819,-1.09,-1.55,0.0,1.281,7.176,2.834,1610.9,1574.7,11033.0,3888.2,77000.0,36000.0,0.0,17.24,91.22,29358.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,58.718,58.718,17.191,17.191,0.0,0.0,41.527,0.0,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.217,0.0,13.274,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.525,0.0,0.0,7.715,2.195,0.0,0.0,0.0,0.0,1134.0,975.2,16.286,0.0,0.0,1.661,10.17,0.487,1.11,1.042,5.327,-4.368,0.0,0.0,0.0,4.32,-0.041,2.74,0.0,5.69,0.0,0.0,-7.811,-2.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.3,993.0,6765.0,2581.4,87000.0,0.0,0.0,17.24,91.22,18253.0,0.0,3366.0,0.0,474.0,6809.0,0.0,0.0,2880.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,82679.0,13643.0,10261.0,0.0,650.0,23266.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,30426.0,0.0,5132.0,0.0,690.0,10940.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.194,1.443,1.158,0.0,1.46,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,924.8,0.0,3905.6,1188.1,109000.0,0.0,0.0,16.16,89.24,32325.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7643.0,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,60898.0,0.0,15758.0,0.0,1028.0,15579.0,0.0,4773.0,1069.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,80000.0,24000.0,0.0,16.16,89.24,27631.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,9886.0,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,60000.0,24000.0,0.0,16.16,89.24,25212.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,4925.0,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.998,0.0,16.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,8324.2,3197.3,110000.0,0.0,0.0,19.22,86.72,40440.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,10994.0,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,30633.0,0.0,6993.0,0.0,362.0,9341.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.1,2226.5,17536.3,5211.3,87000.0,0.0,0.0,16.16,89.24,42559.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6991.0,0.0,8806.0,10883.0,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,43973.0,0.0,7249.0,0.0,1028.0,13423.0,5873.0,795.0,946.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,263.645,263.645,47.328,47.328,216.317,0.0,0.0,0.0,0.0,0.0,0.0,4.262,0.0,0.0,2.66,0.267,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.767,0.0,26.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178.811,0.0,4.914,15.632,5.037,0.0,0.0,140.0,0.0,3249.4,4593.2,77.768,23.858,0.0,11.231,44.604,3.437,35.033,3.016,41.157,-22.869,0.0,0.0,4.272,22.319,-0.484,64.007,0.0,2.762,0.0,0.0,-20.273,-10.988,0.0,0.083,-2.236,-0.118,1.495,-0.212,-4.036,11.056,0.0,0.0,-0.318,-4.879,-0.482,-3.525,-1.055,-0.26,0.0,0.0,6.574,2.954,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,97503.0,0.0,18666.0,0.0,1544.0,30313.0,0.0,2471.0,8192.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,233.907,233.907,40.211,40.211,193.696,0.0,0.0,0.0,0.0,0.0,0.0,3.967,0.0,0.0,1.854,0.077,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.261,0.0,24.435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.422,0.0,3.165,15.632,3.225,0.0,0.0,0.0,0.0,2767.6,3100.5,89.493,19.715,0.0,9.183,39.876,3.992,43.914,2.661,34.078,-21.646,0.0,0.0,2.425,19.204,-0.37,56.218,0.0,1.75,0.0,0.0,-19.153,-7.589,0.0,0.183,-1.615,-0.065,2.502,-0.161,-3.142,7.055,0.0,0.0,-0.272,-4.669,-0.366,-2.879,-0.664,-0.146,0.0,0.0,5.555,1.95,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,85454.0,0.0,17465.0,0.0,1066.0,30498.0,0.0,927.0,3750.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,160.748,160.748,30.151,30.151,130.597,0.0,0.0,0.0,0.0,0.0,0.0,2.513,0.0,0.0,2.066,0.123,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.697,0.0,19.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.439,0.0,3.154,13.084,2.206,0.0,0.0,0.0,0.0,1994.0,2811.9,55.417,13.976,0.0,3.166,23.182,2.279,33.907,5.589,23.433,-11.473,0.0,0.0,0.547,12.702,-0.276,28.925,0.0,1.576,0.0,0.0,-14.351,-5.157,0.0,0.028,-0.929,-0.095,1.426,-0.379,-2.383,5.808,0.0,0.0,-0.071,-3.42,-0.276,-1.629,-0.549,-0.148,0.0,0.0,4.471,1.404,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,54524.0,0.0,11581.0,0.0,2417.0,20151.0,0.0,202.0,2421.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,229.02,229.02,43.659,43.659,185.362,0.0,0.0,0.0,0.0,0.0,0.0,4.768,0.0,0.0,2.147,0.207,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.796,0.0,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151.254,0.0,3.935,13.084,4.45,0.0,0.0,0.0,0.0,3101.2,3571.6,81.86,19.162,4.363,6.889,36.355,9.097,19.369,2.733,18.933,-13.314,0.0,0.0,12.687,18.441,-0.462,61.873,0.0,1.435,0.0,0.0,-18.014,-10.248,0.233,0.435,-1.484,-0.104,1.069,-0.123,-1.249,6.809,0.0,0.0,-1.163,-4.596,-0.459,-2.766,-0.501,-0.103,0.0,0.0,5.311,2.707,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79064.0,0.0,8527.0,0.0,1403.0,26527.0,1911.0,5425.0,2422.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.5,152.5,35.243,35.243,117.257,0.0,0.0,0.0,0.0,0.0,0.0,2.776,0.0,0.0,2.406,0.302,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.806,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.082,0.0,4.068,13.084,4.362,0.0,0.0,0.0,0.0,2317.0,3015.0,47.223,12.936,3.564,3.072,15.126,2.27,32.793,1.139,19.86,-13.612,1.043,-0.407,0.086,12.675,-0.187,20.633,0.0,10.931,0.0,0.0,-14.66,-7.027,-0.013,0.005,-1.094,-0.117,0.875,-0.089,-2.077,7.137,-0.068,0.396,-0.013,-4.088,-0.186,-1.186,-0.918,-1.261,0.0,0.0,4.827,2.037,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,45202.0,0.0,8927.0,496.0,442.0,17005.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.039,25.039,25.039,25.039,0.0,0.0,0.0,0.0,0.0,0.0,5.363,0.445,0.267,0.009,3.74,1.039,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.919,0.276,12.851,4.305,0.617,0.0,0.0,0.0,0.0,3842.2,2404.7,16.167,13.006,0.0,2.523,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.283,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.818,4.589,0.545,596.8,442.2,5543.5,2208.6,18000.0,18000.0,17065.0,24.62,91.58,19009.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8550.0,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,0.005,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.111,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,20000.0,18000.0,0.0,19.22,86.72,7389.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,705.0,0.0,3785.0,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.545,91.545,39.87,39.87,51.675,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,12.958,3.843,0.0,0.0,0.0,3.691,0.085,0.498,3.014,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.721,0.0,12.616,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.9,0.0,51.647,7.253,2.672,0.0,0.0,0.0,0.0,1537.0,5475.4,41.96,33.156,1.017,2.617,11.966,0.0,0.0,0.809,4.918,-2.538,0.0,0.0,0.057,2.027,-0.53,6.789,0.0,4.189,0.0,6.375,-7.395,-1.508,1.351,1.066,9.35,0.0,0.0,0.558,2.746,4.304,0.0,0.0,0.074,10.099,-0.517,0.518,-0.451,1.922,0.0,7.048,11.596,2.183,130.3,817.7,11617.6,3495.1,63000.0,46500.0,0.0,25.88,98.42,51008.0,12331.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.045,32.045,28.548,28.548,3.497,0.0,0.0,0.0,0.0,0.0,5.846,0.035,0.0,0.0,5.866,0.149,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.202,0.0,34.041,4.262,1.305,0.0,0.0,0.0,93.0,4425.1,2181.8,12.334,17.734,0.0,1.364,4.436,0.0,0.0,0.0,3.891,-7.555,0.0,0.0,0.0,1.446,-0.076,2.577,0.0,1.806,0.0,0.0,-2.434,-0.439,0.0,1.567,6.673,0.0,0.0,0.0,3.231,15.06,0.0,0.0,0.0,2.969,-0.077,-0.317,-3.564,0.51,0.0,0.0,7.533,1.035,728.6,567.4,7487.1,928.5,39000.0,16000.0,0.0,33.26,106.16,18656.0,0.0,5635.0,0.0,0.0,5120.0,0.0,0.0,2100.0,1357.0,4445.0,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.833,51.833,21.857,21.857,29.976,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.906,0.335,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.061,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.688,0.0,5.139,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2605.3,11.113,15.398,0.0,4.131,6.506,0.0,0.0,2.03,5.645,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.92,-10.283,-1.232,0.0,-0.284,-0.31,0.0,0.0,-0.39,-0.567,4.041,0.0,0.0,-0.955,0.0,-0.123,-0.557,-1.22,-0.76,0.0,0.569,5.253,0.551,1689.0,437.0,10674.9,2994.2,58000.0,29000.0,0.0,28.58,87.08,21920.0,7753.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Hot Tub Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak 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 +base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,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-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,8.739,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,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-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,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-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,9.068,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.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.482,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 +base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,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,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,9.832,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.949,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,12347.0,5659.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,9.717,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.113,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,9.916,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.163,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,14594.0,6779.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.261,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,8333.0,3674.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,9.695,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.034,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,7888.0,3455.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,4.595,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.505,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.205,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,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-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.663,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.295,23.295,22.713,22.713,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,1509.2,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,0.0,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,1522.4,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,0.0,8647.0,0.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,1534.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,0.0,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,1648.9,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,0.0,5885.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,1536.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,0.0,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.195,23.195,22.742,22.742,0.453,0.0,0.0,0.0,0.0,0.0,0.028,0.028,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,1528.0,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,0.0,28548.0,0.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,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-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,8872.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4518.0,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-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 +base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,7785.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3431.0,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,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-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,0.0,1.096,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,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-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,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.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,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-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.875,0.0,10.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.074,0.0,10.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.347,37.347,37.347,37.347,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.369,0.0,0.0,2.587,1.083,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.882,0.0,13.353,9.232,0.614,2.924,0.0,0.0,0.0,3216.9,2129.8,3216.9,20.987,15.084,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.099,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.826,8.485,2.01,1354.8,997.6,11413.0,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,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-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,3185.6,0.0,18.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,6.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,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-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.587,0.0,13.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,0.0,4.743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,1376.8,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.67,0.0,13.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,8.867,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,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-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,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-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,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-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.89,0.0,13.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,1376.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,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-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,0.0,0.0,1.948,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.106,0.0,3.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,2111.8,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,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-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.088,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,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-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,8.67,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,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-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,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-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,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-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,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-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,2.985,0.0,0.324,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,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-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,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-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,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-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,3.208,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,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-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,0.0,0.306,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,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-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,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-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,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-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,9.153,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,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-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,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-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,17.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,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-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,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-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,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-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,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-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,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-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,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-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,6.822,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,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-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,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-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,1.252,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,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-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,0.0,0.33,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,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-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,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-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,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-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,8.734,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,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-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,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-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,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-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,11.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,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-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,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-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.328,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,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-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,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-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,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-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,3.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,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-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,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-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,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-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,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-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,9.12,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,5.557,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,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,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,7.399,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,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,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,10.889,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,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,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,9.266,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,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-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,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-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,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-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,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-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,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-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,9.565,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.0,36000.0,24000.0,0.0,6.8,91.76,29033.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 +base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,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-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.137,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,27750.0,8437.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2299.0,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,9.402,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,9.362,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,9.33,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.199,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23122.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,28666.0,1683.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,9.348,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.189,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23083.0,4828.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,9.346,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.19,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20580.0,4443.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,9.28,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.715,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23845.0,1648.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,9.34,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.245,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23128.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20341.0,4163.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,9.523,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.975,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23883.0,6886.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,3123.7,0.0,15.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,7253.7,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,10081.5,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,6906.4,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,3384.0,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,3384.0,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,3385.8,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,7002.3,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,7296.6,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,7104.3,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,6954.5,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,49.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,3650.5,0.0,21.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,6628.4,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,7064.5,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.622,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,6922.4,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,6732.2,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,3194.1,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,3328.2,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,7149.0,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,7031.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,6896.7,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,5904.2,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,2057.9,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.106,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,2618.4,0.0,17.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,7326.8,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,0.077,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,0.077,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,2116.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,8622.9,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.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-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.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-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.697,36.697,36.697,36.697,0.0,0.0,0.0,0.0,0.0,0.0,5.486,0.794,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.0,1637.3,3421.0,23.54,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.97,39.97,39.97,39.97,0.0,0.0,0.0,0.0,0.0,0.0,5.504,0.688,0.0,0.0,2.527,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.125,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,3365.5,2553.9,3365.5,23.007,15.726,0.0,3.551,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.677,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.382,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,3219.5,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,3219.5,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,4941.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,0.077,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,4268.2,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,3640.7,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,3682.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,2846.2,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,2037.5,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.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-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,6044.7,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.119,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,7284.9,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,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-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,3619.1,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,3465.8,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,2779.5,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,2778.7,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,2543.3,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,0.0,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,2111.3,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only-ducted.xml,31.362,31.362,31.362,31.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,2021.1,0.0,14.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,2021.1,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,7929.1,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-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,8314.7,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,2071.2,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,3367.4,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2584.7,3212.4,20.879,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,0.698,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.378,41.378,41.378,41.378,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.38,0.0,0.0,2.932,0.962,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.427,0.0,13.138,9.233,0.614,0.0,0.0,0.0,0.0,3445.1,2732.5,3445.1,21.808,15.713,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.959,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,2211.4,0.0,12.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,3769.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,3769.3,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,4370.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,2829.9,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,6442.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,19.737,19.737,19.737,19.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.607,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,0.0,0.0,0.0,63.32,89.06,2825.0,0.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 +base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,2126.3,0.0,3.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,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-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,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-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,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-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,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-hvac-space-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,0.758,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,0.355,9.179,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,2089.4,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,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-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,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-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,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-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,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-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,9.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,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-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,9.579,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.656,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,24000.0,24000.0,0.0,17.24,91.22,18314.0,4508.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,7.629,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,24000.0,24000.0,0.0,41.0,84.38,13255.0,5428.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 +base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,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-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.316,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,36000.0,24000.0,0.0,-13.72,81.14,31260.0,6260.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 +base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,10.333,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,2342.0,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.228,0.744,0.0,0.0,0.3,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,12000.0,24000.0,0.0,63.32,89.06,3417.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 +base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,4.948,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,2424.8,0.0,13.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,12000.0,24000.0,0.0,51.62,90.68,8608.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 +base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,5.181,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.0,24000.0,24000.0,0.0,41.36,108.14,13271.0,1050.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,9.081,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,24000.0,24000.0,0.0,28.58,87.08,17550.0,6260.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,9.17,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,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-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.887,9.233,0.0,0.0,4.51,0.0,0.334,2.754,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.736,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,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-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,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-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,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-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,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-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.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,3.08,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,16.505,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.981,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 +base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,0.0,17.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,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-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,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-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,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-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-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,15.785,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,24.753,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,6.706,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,6.873,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,15.785,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,24.473,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,90.778,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 +base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,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-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.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,3173.5,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.915,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 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,9102.0,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,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-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,6232.4,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,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-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,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-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,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-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,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-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,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-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,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-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,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-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,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-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,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-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,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-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,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-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,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-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,9.164,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,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-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,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-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,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-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,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-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,2116.04,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,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-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,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-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,9304.3,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,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-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,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-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,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-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,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.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 +house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,62092.0,24399.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 +house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47924.0,15311.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 +house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48411.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 +house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76554.0,20975.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 +house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.64,0.0,15.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,71539.0,26959.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 +house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.738,0.0,20.136,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.248,0.0,23.282,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.924,0.0,26.378,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.634,0.0,23.29,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.81,0.0,26.376,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,2.334,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,4986.2,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,24000.0,18000.0,34120.0,24.62,91.58,20649.0,6686.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 +house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,3031.7,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,23400.0,23200.0,0.0,24.62,91.58,13914.0,1327.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 +house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,2913.6,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13648.0,3089.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 +house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,7459.2,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,4683.5,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4909.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 +house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.496,0.369,2.745,0.11,0.0,2.255,16.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.496,0.369,2.745,1.608,0.0,2.255,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,100000.0,36000.0,0.0,16.16,89.24,53604.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21272.0,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 +house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,4638.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,3591.8,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60409.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 +house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54382.0,20089.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 +house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.136,0.0,14.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,1554.0,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1294.8,1282.2,8578.8,3023.3,0.0,84000.0,0.0,0.0,24.62,91.58,22421.0,0.0,3869.0,0.0,128.0,5749.0,0.0,5824.0,0.0,1459.0,5391.0,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.065,0.0,17.882,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,33085.0,7576.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 +house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.643,0.0,18.121,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31420.0,8676.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 +house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.987,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29358.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.377,0.0,13.28,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,1133.7,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,7846.0,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,1347.4,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.194,1.443,1.158,0.0,1.46,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,1018.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,924.8,0.0,3905.6,1188.1,0.0,109000.0,0.0,0.0,16.16,89.24,32325.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7643.0,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 +house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,2949.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,80000.0,24000.0,0.0,16.16,89.24,27631.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,9886.0,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 +house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,60000.0,24000.0,0.0,16.16,89.24,25212.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,4925.0,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 +house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.998,0.0,16.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,1457.0,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,8324.2,3197.3,0.0,110000.0,0.0,0.0,19.22,86.72,40440.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,10994.0,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 +house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,5656.5,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,1709.2,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.1,2226.5,17536.3,5211.3,0.0,87000.0,0.0,0.0,16.16,89.24,42559.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6991.0,0.0,8806.0,10883.0,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 +house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,1751.1,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,185.392,0.0,26.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.178,0.0,19.901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,0.299,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.008,0.0,22.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,3842.0,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,18000.0,18000.0,17065.0,24.62,91.58,19009.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8550.0,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 +house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,0.005,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.111,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,20000.0,18000.0,0.0,19.22,86.72,7389.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,705.0,0.0,3785.0,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 +house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.87,0.0,12.637,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,51008.0,12331.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 +house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,4432.3,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,39000.0,16000.0,0.0,33.26,106.16,18656.0,0.0,5635.0,0.0,0.0,5120.0,0.0,0.0,2100.0,1357.0,4445.0,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,0.334,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.067,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21920.0,7753.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 06f0adb4e9..5fa5a6f748 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -39,6 +39,7 @@ base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1 base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1048.54,144.0,756.37,0.0,900.37,144.0,4.17,148.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1049.52,144.0,757.07,0.0,901.07,144.0,4.45,148.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,1049.51,144.0,757.54,0.0,901.54,144.0,3.97,147.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1052.72,144.0,761.84,0.0,905.84,144.0,2.88,146.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1049.58,144.0,757.62,0.0,901.62,144.0,3.96,147.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1048.57,144.0,757.32,0.0,901.32,144.0,3.25,147.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1031.42,144.0,887.42,0.0,1031.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -60,7 +61,7 @@ base-bldgtype-multifamily.xml,1166.1,144.0,873.25,0.0,1017.25,144.0,4.85,148.85, base-dhw-combi-tankless-outside.xml,1219.08,144.0,713.53,0.0,857.53,144.0,217.55,361.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1227.99,144.0,713.85,0.0,857.85,144.0,226.14,370.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1213.75,144.0,1069.75,0.0,1213.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1387.61,144.0,1243.61,0.0,1387.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1387.68,144.0,1243.68,0.0,1387.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1472.89,144.0,988.81,0.0,1132.81,144.0,196.08,340.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-tankless.xml,1268.63,144.0,1124.63,0.0,1268.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-var-speed.xml,1189.31,144.0,1045.31,0.0,1189.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -124,7 +125,7 @@ base-enclosure-beds-2.xml,1567.5,144.0,1108.62,0.0,1252.62,144.0,170.88,314.88,0 base-enclosure-beds-4.xml,1729.09,144.0,1284.5,0.0,1428.5,144.0,156.59,300.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-beds-5.xml,1808.87,144.0,1371.31,0.0,1515.31,144.0,149.56,293.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-ceilingtypes.xml,1778.25,144.0,1214.66,0.0,1358.66,144.0,275.59,419.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-floortypes.xml,1519.3,144.0,980.3,0.0,1124.3,144.0,251.0,395.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-floortypes.xml,1540.13,144.0,977.57,0.0,1121.57,144.0,274.56,418.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-garage.xml,1616.06,144.0,1152.66,0.0,1296.66,144.0,175.4,319.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-infil-ach-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-infil-cfm-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -149,9 +150,12 @@ base-enclosure-windows-physical-properties.xml,1707.89,144.0,1201.04,0.0,1345.04 base-enclosure-windows-shading-seasons.xml,1647.37,144.0,1197.54,0.0,1341.54,144.0,161.83,305.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-windows-shading.xml,1590.69,144.0,1118.71,0.0,1262.71,144.0,183.98,327.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-windows-storms.xml,1640.51,144.0,1177.87,0.0,1321.87,144.0,174.64,318.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-ambient.xml,1421.13,144.0,1009.54,0.0,1153.54,144.0,123.59,267.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-ambient.xml,1423.58,144.0,1008.51,0.0,1152.51,144.0,127.07,271.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-basement-garage.xml,1521.03,144.0,1087.91,0.0,1231.91,144.0,145.12,289.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-complex.xml,1725.64,144.0,1231.23,0.0,1375.23,144.0,206.41,350.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-no-skirt.xml,1413.73,144.0,980.54,0.0,1124.54,144.0,145.19,289.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-skirt.xml,1411.27,144.0,980.81,0.0,1124.81,144.0,142.46,286.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-foundation-complex.xml,1821.66,144.0,1240.82,0.0,1384.82,144.0,292.84,436.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1643.45,144.0,1214.88,0.0,1358.88,144.0,140.57,284.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-foundation-conditioned-basement-slab-insulation.xml,1646.2,144.0,1204.03,0.0,1348.03,144.0,154.17,298.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-basement-wall-insulation.xml,1627.83,144.0,1181.78,0.0,1325.78,144.0,158.05,302.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-crawlspace.xml,1384.2,144.0,963.85,0.0,1107.85,144.0,132.35,276.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -163,7 +167,7 @@ base-foundation-unconditioned-basement-wall-insulation.xml,1395.49,144.0,964.12, base-foundation-unconditioned-basement.xml,1372.03,144.0,990.24,0.0,1134.24,144.0,93.79,237.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-unvented-crawlspace.xml,1358.78,144.0,993.41,0.0,1137.41,144.0,77.37,221.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-vented-crawlspace.xml,1371.34,144.0,991.63,0.0,1135.63,144.0,91.71,235.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-walkout-basement.xml,1680.8,144.0,1210.06,0.0,1354.06,144.0,182.74,326.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-walkout-basement.xml,1701.98,144.0,1209.74,0.0,1353.74,144.0,204.24,348.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1303.23,144.0,1159.23,0.0,1303.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -174,70 +178,71 @@ base-hvac-air-to-air-heat-pump-1-speed.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0 base-hvac-air-to-air-heat-pump-2-speed.xml,1519.16,144.0,1375.16,0.0,1519.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1680.7,144.0,1285.89,0.0,1429.89,144.0,106.81,250.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1674.99,144.0,1247.53,0.0,1391.53,144.0,139.46,283.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1674.99,144.0,1247.53,0.0,1391.53,144.0,139.46,283.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1683.88,144.0,1289.04,0.0,1433.04,144.0,106.84,250.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1688.7,144.0,1294.63,0.0,1438.63,144.0,106.07,250.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed.xml,1510.26,144.0,1366.26,0.0,1510.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,1320.61,144.0,1176.61,0.0,1320.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1565.62,144.0,1421.62,0.0,1565.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1564.11,144.0,1420.11,0.0,1564.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,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1739.17,144.0,1595.17,0.0,1739.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1682.2,144.0,1538.2,0.0,1682.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1680.66,144.0,1536.66,0.0,1680.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,1729.62,144.0,1585.62,0.0,1729.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1636.74,144.0,1492.74,0.0,1636.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1632.49,144.0,1488.49,0.0,1632.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,1566.45,144.0,1422.45,0.0,1566.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1528.96,144.0,1384.96,0.0,1528.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1497.04,144.0,1353.04,0.0,1497.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1638.16,144.0,1253.13,0.0,1397.13,144.0,97.03,241.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1667.64,144.0,1259.99,0.0,1403.99,144.0,119.65,263.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1527.79,144.0,1383.79,0.0,1527.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1494.14,144.0,1350.14,0.0,1494.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,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1637.92,144.0,1252.76,0.0,1396.76,144.0,97.16,241.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1666.86,144.0,1259.61,0.0,1403.61,144.0,119.25,263.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1537.76,144.0,1393.76,0.0,1537.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1515.42,144.0,1371.42,0.0,1515.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1505.87,144.0,1361.87,0.0,1505.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-elec-only.xml,1748.19,144.0,1604.19,0.0,1748.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1636.51,144.0,1213.25,0.0,1357.25,144.0,135.26,279.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-only.xml,1442.43,144.0,1020.52,0.0,1164.52,144.0,133.91,277.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1514.58,144.0,1370.58,0.0,1514.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1505.93,144.0,1361.93,0.0,1505.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-elec-only.xml,1749.18,144.0,1605.18,0.0,1749.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1636.63,144.0,1213.11,0.0,1357.11,144.0,135.52,279.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-gas-only.xml,1442.55,144.0,1020.39,0.0,1164.39,144.0,134.16,278.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-central-ac-only-1-speed.xml,1346.5,144.0,1202.5,0.0,1346.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-central-ac-only-2-speed.xml,1290.52,144.0,1146.52,0.0,1290.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-central-ac-only-var-speed.xml,1268.22,144.0,1124.22,0.0,1268.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1761.87,144.0,1617.87,0.0,1761.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1760.35,144.0,1616.35,0.0,1760.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1764.11,144.0,1363.77,0.0,1507.77,144.0,112.34,256.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1749.42,144.0,1355.45,0.0,1499.45,144.0,105.97,249.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1749.42,144.0,1355.45,0.0,1499.45,144.0,105.97,249.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,1567.55,144.0,1195.86,0.0,1339.86,144.0,83.69,227.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1567.55,144.0,1195.86,0.0,1339.86,144.0,83.69,227.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1749.22,144.0,1355.5,0.0,1499.5,144.0,105.72,249.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1749.22,144.0,1355.5,0.0,1499.5,144.0,105.72,249.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,1567.7,144.0,1196.15,0.0,1340.15,144.0,83.55,227.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1567.7,144.0,1196.15,0.0,1340.15,144.0,83.55,227.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-elec-resistance-only.xml,1704.68,144.0,1560.68,0.0,1704.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,1530.06,144.0,1067.18,0.0,1211.18,144.0,174.88,318.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,1529.14,144.0,1067.09,0.0,1211.09,144.0,174.05,318.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-floor-furnace-propane-only.xml,1742.99,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,586.04,586.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-elec-only.xml,1932.76,144.0,1788.76,0.0,1932.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.53,144.0,1160.98,0.0,1304.98,144.0,170.55,314.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.72,144.0,1139.31,0.0,1283.31,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-only.xml,1494.97,144.0,1033.82,0.0,1177.82,144.0,173.15,317.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-room-ac.xml,1665.9,144.0,1203.02,0.0,1347.02,144.0,174.88,318.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-elec-only.xml,1929.1,144.0,1785.1,0.0,1929.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.51,144.0,1161.37,0.0,1305.37,144.0,170.14,314.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.69,144.0,1139.69,0.0,1283.69,144.0,170.0,314.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-only.xml,1494.06,144.0,1033.73,0.0,1177.73,144.0,172.33,316.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-room-ac.xml,1664.97,144.0,1202.92,0.0,1346.92,144.0,174.05,318.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1287.0,144.0,1143.0,0.0,1287.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1366.77,144.0,1222.77,0.0,1366.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1476.2,144.0,1332.2,0.0,1476.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1462.01,144.0,1318.01,0.0,1462.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1462.01,144.0,1318.01,0.0,1462.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1366.04,144.0,1222.04,0.0,1366.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1475.02,144.0,1331.02,0.0,1475.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1461.29,144.0,1317.29,0.0,1461.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1461.29,144.0,1317.29,0.0,1461.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1265.67,144.0,1121.67,0.0,1265.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1241.94,144.0,1097.94,0.0,1241.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1363.66,144.0,1219.66,0.0,1363.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1362.58,144.0,1218.58,0.0,1362.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1462.81,144.0,1318.81,0.0,1462.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1440.76,144.0,1296.76,0.0,1440.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1423.08,144.0,1279.08,0.0,1423.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,1401.46,144.0,1257.46,0.0,1401.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1639.68,144.0,1185.88,0.0,1329.88,0.0,0.0,0.0,0.0,309.8,309.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1439.72,144.0,1295.72,0.0,1439.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1422.81,144.0,1278.81,0.0,1422.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,1401.09,144.0,1257.09,0.0,1401.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1639.81,144.0,1185.98,0.0,1329.98,0.0,0.0,0.0,0.0,309.83,309.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ptac-with-heating.xml,1844.65,144.0,1700.65,0.0,1844.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ptac.xml,1289.24,144.0,1145.24,0.0,1289.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-pthp-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,1532.21,144.0,1388.21,0.0,1532.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1549.91,144.0,1405.91,0.0,1549.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,1532.66,144.0,1388.66,0.0,1532.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1550.34,144.0,1406.34,0.0,1550.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,0,0,0,0,0,0 base-hvac-autosize-room-ac-only.xml,1322.9,144.0,1178.9,0.0,1322.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-room-ac-with-heating.xml,1879.23,144.0,1735.23,0.0,1879.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1532.21,144.0,1388.21,0.0,1532.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1549.91,144.0,1405.91,0.0,1549.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-sizing-controls.xml,1765.06,144.0,1428.97,0.0,1572.97,144.0,48.09,192.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-stove-oil-only.xml,1707.39,144.0,1016.36,0.0,1160.36,0.0,0.0,0.0,0.0,547.03,547.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1532.66,144.0,1388.66,0.0,1532.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1550.34,144.0,1406.34,0.0,1550.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,0,0,0,0,0,0 +base-hvac-autosize-sizing-controls.xml,1764.99,144.0,1429.0,0.0,1573.0,144.0,47.99,191.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-stove-oil-only.xml,1707.39,144.0,1016.3,0.0,1160.3,0.0,0.0,0.0,0.0,547.09,547.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize.xml,1664.48,144.0,1205.66,0.0,1349.66,144.0,170.82,314.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize.xml,1664.46,144.0,1206.05,0.0,1350.05,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-boiler-coal-only.xml,1456.33,144.0,1021.0,0.0,1165.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,291.33,291.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-boiler-elec-only.xml,1771.72,144.0,1627.72,0.0,1771.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-boiler-gas-central-ac-1-speed.xml,1633.46,144.0,1204.14,0.0,1348.14,144.0,141.32,285.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -269,7 +274,6 @@ base-hvac-evap-cooler-furnace-gas.xml,1517.24,144.0,1061.15,0.0,1205.15,144.0,16 base-hvac-evap-cooler-only-ducted.xml,1188.39,144.0,1044.39,0.0,1188.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-evap-cooler-only.xml,1185.61,144.0,1041.61,0.0,1185.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-fireplace-wood-only.xml,1485.17,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.22,328.22,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fixed-heater-gas-only.xml,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-floor-furnace-propane-only-pilot-light.xml,1875.95,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,719.0,719.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-floor-furnace-propane-only.xml,1742.99,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,586.04,586.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-coal-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -287,7 +291,7 @@ base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0. base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1270.71,144.0,1126.71,0.0,1270.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.93,144.0,1217.93,0.0,1361.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1461.26,144.0,1317.26,0.0,1461.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1461.32,144.0,1317.32,0.0,1461.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1774.69,144.0,1630.69,0.0,1774.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1604.26,144.0,1460.26,0.0,1604.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1587.1,144.0,1443.1,0.0,1587.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -295,7 +299,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1683.26,144.0,1222. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1632.51,144.0,1172.18,0.0,1316.18,144.0,172.33,316.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1611.04,144.0,1150.71,0.0,1294.71,144.0,172.33,316.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-only.xml,1493.87,144.0,1028.54,0.0,1172.54,144.0,177.33,321.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1522.01,144.0,1378.01,0.0,1522.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1521.94,144.0,1377.94,0.0,1521.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -310,7 +314,6 @@ base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1397.25,144.0,1 base-hvac-mini-split-heat-pump-ductless.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-multiple.xml,2257.9,144.0,1729.32,0.0,1873.32,144.0,51.35,195.35,0.0,90.6,90.6,0.0,98.63,98.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,1959.67,144.0,1815.67,0.0,1959.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-portable-heater-gas-only.xml,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,1852.42,144.0,1708.42,0.0,1852.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-natural-gas.xml,1592.0,144.0,1155.08,0.0,1299.08,144.0,148.92,292.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac.xml,1296.73,144.0,1152.73,0.0,1296.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -326,14 +329,15 @@ base-hvac-seasons.xml,1646.17,144.0,1195.7,0.0,1339.7,144.0,162.47,306.47,0.0,0. base-hvac-setpoints-daily-schedules.xml,1624.03,144.0,1176.79,0.0,1320.79,144.0,159.24,303.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-setpoints-daily-setbacks.xml,1623.73,144.0,1181.79,0.0,1325.79,144.0,153.94,297.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-setpoints.xml,1477.87,144.0,1136.02,0.0,1280.02,144.0,53.85,197.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-space-heater-gas-only.xml,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-stove-oil-only.xml,1707.32,144.0,1015.15,0.0,1159.15,0.0,0.0,0.0,0.0,548.17,548.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-stove-wood-pellets-only.xml,1486.14,144.0,1015.15,0.0,1159.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,326.99,326.99,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1619.32,144.0,1182.77,0.0,1326.77,144.0,148.55,292.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,1619.27,144.0,1183.13,0.0,1327.13,144.0,148.14,292.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-undersized.xml,1503.12,144.0,1103.54,0.0,1247.54,144.0,111.58,255.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-ceiling-fans.xml,1661.61,144.0,1210.06,0.0,1354.06,144.0,163.55,307.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-holiday.xml,1655.48,144.0,1203.78,0.0,1347.78,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1673.96,144.0,1224.93,0.0,1368.93,144.0,161.03,305.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-kwh-per-year.xml,1755.1,144.0,1317.13,0.0,1461.13,144.0,149.97,293.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-mixed.xml,1654.75,144.0,1203.05,0.0,1347.05,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-none-ceiling-fans.xml,1508.7,144.0,1037.09,0.0,1181.09,144.0,183.61,327.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-none.xml,1495.84,144.0,1024.08,0.0,1168.08,144.0,183.76,327.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -392,13 +396,15 @@ base-pv-generators-battery-scheduled.xml,812.18,144.0,1253.13,-1167.33,229.8,144 base-pv-generators-battery.xml,782.26,144.0,1223.82,-1167.94,199.88,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-generators.xml,755.48,144.0,1197.14,-1168.04,173.1,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv.xml,753.5,144.0,1197.14,-895.34,445.8,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0-runperiod-1-month.xml,74.66,0.0,14.35,0.0,14.35,0.0,60.31,60.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0-runperiod-1-month.xml,98.66,12.0,14.35,0.0,26.35,12.0,60.31,72.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-0.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon.xml,2467.6,144.0,1731.43,0.0,1875.43,144.0,298.84,442.84,0.0,0.0,0.0,0.0,69.87,69.87,0.0,79.46,79.46,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon2.xml,2248.99,144.0,1650.65,0.0,1794.65,144.0,165.28,309.28,0.0,65.6,65.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.46,79.46,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1.xml,1411.62,144.0,944.7,0.0,1088.7,144.0,178.92,322.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-5.xml,1162.01,144.0,1332.86,-674.31,802.55,144.0,215.46,359.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-all-10-mins.xml,1664.99,144.0,1205.26,0.0,1349.26,144.0,171.73,315.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1278.07,144.0,954.36,0.0,1098.36,144.0,35.71,179.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-schedules-detailed-mixed-timesteps.xml,1492.68,144.0,1145.29,0.0,1289.29,144.0,59.39,203.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-10-mins.xml,1658.69,144.0,1202.52,0.0,1346.52,144.0,168.17,312.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-power-outage.xml,1401.49,144.0,1007.48,0.0,1151.48,144.0,106.01,250.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -416,7 +422,7 @@ base-schedules-simple.xml,1651.01,144.0,1198.33,0.0,1342.33,144.0,164.68,308.68, base-simcontrol-calendar-year-custom.xml,1647.89,144.0,1196.15,0.0,1340.15,144.0,163.74,307.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-daylight-saving-custom.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-daylight-saving-disabled.xml,1648.21,144.0,1196.61,0.0,1340.61,144.0,163.6,307.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,143.65,0.0,97.13,0.0,97.13,0.0,46.52,46.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-runperiod-1-month.xml,167.65,12.0,97.13,0.0,109.13,12.0,46.52,58.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-temperature-capacitance-multiplier.xml,1645.31,144.0,1193.65,0.0,1337.65,144.0,163.66,307.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1664.97,144.0,1205.13,0.0,1349.13,144.0,171.84,315.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1664.17,144.0,1204.83,0.0,1348.83,144.0,171.34,315.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index cf78eba2ed..b1dbbe0c36 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -193,8 +193,6 @@ def test_run_simulation_timeseries_outputs command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\"" if not invalid_variable_only command += ' --hourly ALL' - command += ' --add-timeseries-time-column DST' - command += ' --add-timeseries-time-column UTC' command += " --add-timeseries-output-variable 'Zone People Occupant Count'" command += " --add-timeseries-output-variable 'Zone People Total Heating Energy'" end @@ -209,8 +207,6 @@ def test_run_simulation_timeseries_outputs # Check timeseries columns exist timeseries_rows = CSV.read(File.join(File.dirname(xml), 'run', 'results_timeseries.csv')) assert_equal(1, timeseries_rows[0].select { |r| r == 'Time' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeDST' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeUTC' }.size) assert_equal(1, timeseries_rows[0].select { |r| r == 'Zone People Occupant Count: Living Space' }.size) assert_equal(1, timeseries_rows[0].select { |r| r == 'Zone People Total Heating Energy: Living Space' }.size) else @@ -429,11 +425,12 @@ def _get_simulation_results(annual_csv_path, xml) end def _get_bill_results(bill_csv_path) - # Grab all outputs from reporting measure CSV bill results + # Grab all outputs (except monthly) from reporting measure CSV bill results results = {} if File.exist? bill_csv_path CSV.foreach(bill_csv_path) do |row| next if row.nil? || (row.size < 2) + next if (1..12).to_a.any? { |month| row[0].include?(": Month #{month}:") } results[row[0]] = Float(row[1]) end @@ -736,28 +733,6 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml) num_kiva_instances += 1 end - if hpxml_path.include? 'ASHRAE_Standard_140' - # nop - elsif hpxml_path.include? 'real_homes' - # nop - elsif hpxml.building_construction.residential_facility_type == HPXML::ResidentialTypeApartment - # no foundation, above dwelling unit - assert_equal(0, num_kiva_instances) - elsif hpxml.slabs.empty? - assert_equal(0, num_kiva_instances) - else - num_expected_kiva_instances = { 'base-foundation-multiple.xml' => 2, # additional instance for 2nd foundation type - 'base-enclosure-2stories-garage.xml' => 2, # additional instance for garage - 'base-foundation-basement-garage.xml' => 2, # additional instance for garage - 'base-enclosure-garage.xml' => 2, # additional instance for garage - 'base-foundation-walkout-basement.xml' => 4, # 3 foundation walls plus a no-wall exposed perimeter - 'base-foundation-complex.xml' => 10, # lots of foundations for testing - 'base-pv-battery-garage.xml' => 2 } # additional instance for garage - num_expected = num_expected_kiva_instances[File.basename(hpxml_path)] - num_expected = 1 if num_expected.nil? - assert_equal(num_expected, num_kiva_instances) - end - # Enclosure Foundation Slabs num_slabs = hpxml.slabs.size if (num_slabs <= 1) && (num_kiva_instances <= 1) # The slab surfaces may be combined in these situations, so skip tests @@ -823,39 +798,16 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml) end # Net area - hpxml_value = wall.area - (hpxml.windows + hpxml.doors).each do |subsurface| - next if subsurface.wall_idref.upcase != wall_id - - hpxml_value -= subsurface.area - end - if wall.exterior_adjacent_to == HPXML::LocationGround - # Calculate total length of walls - wall_total_length = 0 - hpxml.foundation_walls.each do |foundation_wall| - next unless foundation_wall.exterior_adjacent_to == HPXML::LocationGround - next unless wall.interior_adjacent_to == foundation_wall.interior_adjacent_to - - wall_total_length += foundation_wall.area / foundation_wall.height - end - - # Calculate total slab exposed perimeter - slab_exposed_length = 0 - hpxml.slabs.each do |slab| - next unless wall.interior_adjacent_to == slab.interior_adjacent_to - - slab_exposed_length += slab.exposed_perimeter - end - - # Calculate exposed foundation wall area - if slab_exposed_length < wall_total_length - hpxml_value *= (slab_exposed_length / wall_total_length) + hpxml_value = wall.net_area + if wall.is_a? HPXML::FoundationWall + if wall.is_exterior + # only modeling portion of foundation wall that is exposed perimeter + hpxml_value *= wall.exposed_fraction + else + # interzonal foundation walls: only above-grade portion modeled + hpxml_value *= (wall.height - wall.depth_below_grade) / wall.height end end - if (hpxml.foundation_walls.include? wall) && (not wall.is_exterior) - # interzonal foundation walls: only above-grade portion modeled - hpxml_value *= (wall.height - wall.depth_below_grade) / wall.height - end if wall.is_exterior query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%' OR RowName LIKE '#{wall_id} %') AND ColumnName='Net Area' AND Units='m2'" else