diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb
index 06715001ad..a76557e7a3 100644
--- a/BuildResidentialHPXML/measure.rb
+++ b/BuildResidentialHPXML/measure.rb
@@ -42,6 +42,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument
arg.setDescription('Absolute/relative path of the HPXML file.')
args << arg
+ arg = OpenStudio::Measure::OSArgument.makeStringArgument('existing_hpxml_path', false)
+ arg.setDisplayName('Existing HPXML File Path')
+ arg.setDescription('Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units).')
+ args << arg
+
arg = OpenStudio::Measure::OSArgument.makeStringArgument('software_info_program_used', false)
arg.setDisplayName('Software Info: Program Used')
arg.setDescription('The name of the software program used.')
@@ -3169,7 +3174,15 @@ def run(model, runner, user_arguments)
hpxml_path = File.expand_path(hpxml_path)
end
- hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path)
+ # Existing HPXML File
+ if args[:existing_hpxml_path].is_initialized
+ existing_hpxml_path = args[:existing_hpxml_path].get
+ unless (Pathname.new existing_hpxml_path).absolute?
+ existing_hpxml_path = File.expand_path(existing_hpxml_path)
+ end
+ end
+
+ hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path)
if not hpxml_doc
runner.registerError('Unsuccessful creation of HPXML file.')
return false
@@ -3366,7 +3379,7 @@ def argument_errors(args)
end
class HPXMLFile
- def self.create(runner, model, args, epw_path, hpxml_path)
+ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path)
epw_file = OpenStudio::EpwFile.new(epw_path)
if (args[:hvac_control_heating_season_period].to_s == HPXML::BuildingAmerica) || (args[:hvac_control_cooling_season_period].to_s == HPXML::BuildingAmerica) || (args[:apply_defaults])
weather = WeatherProcess.new(epw_path: epw_path, runner: nil)
@@ -3381,9 +3394,12 @@ def self.create(runner, model, args, epw_path, hpxml_path)
sorted_surfaces = model.getSurfaces.sort_by { |s| s.additionalProperties.getFeatureAsInteger('Index').get }
sorted_subsurfaces = model.getSubSurfaces.sort_by { |ss| ss.additionalProperties.getFeatureAsInteger('Index').get }
- hpxml = HPXML.new
+ hpxml = HPXML.new(hpxml_path: existing_hpxml_path, building_id: 'ALL')
+
+ if not set_header(runner, hpxml, args)
+ return false
+ end
- set_header(hpxml, args)
hpxml_bldg = add_building(hpxml, args)
set_site(hpxml_bldg, args)
set_neighbor_buildings(hpxml_bldg, args)
@@ -3439,6 +3455,7 @@ def self.create(runner, model, args, epw_path, hpxml_path)
renumber_hpxml_ids(hpxml_bldg)
hpxml_doc = hpxml.to_doc()
+ hpxml.set_unique_hpxml_ids(hpxml_doc, true) if hpxml.buildings.size > 1
XMLHelper.write_file(hpxml_doc, hpxml_path)
if args[:apply_defaults]
@@ -3448,9 +3465,9 @@ def self.create(runner, model, args, epw_path, hpxml_path)
end
eri_version = Constants.ERIVersions[-1]
- # FIXME: Address this when multiple buildings
- HPXMLDefaults.apply(runner, hpxml, hpxml.buildings[0], eri_version, weather, epw_file: epw_file)
+ HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file)
hpxml_doc = hpxml.to_doc()
+ hpxml.set_unique_hpxml_ids(hpxml_doc, true) if hpxml.buildings.size > 1
XMLHelper.write_file(hpxml_doc, hpxml_path)
end
@@ -3551,14 +3568,40 @@ def self.create_geometry_envelope(runner, model, args)
return true
end
- def self.set_header(hpxml, args)
+ def self.unavailable_period_exists(hpxml, column_name, begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability = nil)
+ natvent_availability = HPXML::ScheduleUnavailable if natvent_availability.nil?
+
+ hpxml.header.unavailable_periods.each do |unavailable_period|
+ begin_hour = 0 if begin_hour.nil?
+ end_hour = 24 if end_hour.nil?
+
+ next unless (unavailable_period.column_name == column_name) &&
+ (unavailable_period.begin_month == begin_month) &&
+ (unavailable_period.begin_day == begin_day) &&
+ (unavailable_period.begin_hour == begin_hour) &&
+ (unavailable_period.end_month == end_month) &&
+ (unavailable_period.end_day == end_day) &&
+ (unavailable_period.end_hour == end_hour) &&
+ (unavailable_period.natvent_availability == natvent_availability)
+
+ return true
+ end
+ return false
+ end
+
+ def self.set_header(runner, hpxml, args)
+ errors = []
+
hpxml.header.xml_type = 'HPXML'
hpxml.header.xml_generated_by = 'BuildResidentialHPXML'
hpxml.header.transaction = 'create'
if args[:schedules_vacancy_period].is_initialized
begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_vacancy_period].get)
- hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: HPXML::ScheduleUnavailable)
+
+ if not unavailable_period_exists(hpxml, 'Vacancy', begin_month, begin_day, begin_hour, end_month, end_day, end_hour)
+ hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: HPXML::ScheduleUnavailable)
+ end
end
if args[:schedules_power_outage_period].is_initialized
begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_power_outage_period].get)
@@ -3567,22 +3610,39 @@ def self.set_header(hpxml, args)
natvent_availability = args[:schedules_power_outage_window_natvent_availability].get
end
- hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability)
+ if not unavailable_period_exists(hpxml, 'Power Outage', begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability)
+ hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability)
+ end
end
if args[:software_info_program_used].is_initialized
+ if !hpxml.header.software_program_used.nil? && (hpxml.header.software_program_used != args[:software_info_program_used].get)
+ errors << "'Software Info: Program Used' cannot vary across dwelling units."
+ end
hpxml.header.software_program_used = args[:software_info_program_used].get
end
if args[:software_info_program_version].is_initialized
+ if !hpxml.header.software_program_version.nil? && (hpxml.header.software_program_version != args[:software_info_program_version].get)
+ errors << "'Software Info: Program Version' cannot vary across dwelling units."
+ end
hpxml.header.software_program_version = args[:software_info_program_version].get
end
if args[:simulation_control_timestep].is_initialized
+ if !hpxml.header.timestep.nil? && (hpxml.header.timestep != args[:simulation_control_timestep].get)
+ errors << "'Simulation Control: Timestep' cannot vary across dwelling units."
+ end
hpxml.header.timestep = args[:simulation_control_timestep].get
end
if args[:simulation_control_run_period].is_initialized
begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:simulation_control_run_period].get)
+ if (!hpxml.header.sim_begin_month.nil? && (hpxml.header.sim_begin_month != begin_month)) ||
+ (!hpxml.header.sim_begin_day.nil? && (hpxml.header.sim_begin_day != begin_day)) ||
+ (!hpxml.header.sim_end_month.nil? && (hpxml.header.sim_end_month != end_month)) ||
+ (!hpxml.header.sim_end_day.nil? && (hpxml.header.sim_end_day != end_day))
+ errors << "'Simulation Control: Run Period' cannot vary across dwelling units."
+ end
hpxml.header.sim_begin_month = begin_month
hpxml.header.sim_begin_day = begin_day
hpxml.header.sim_end_month = end_month
@@ -3590,10 +3650,16 @@ def self.set_header(hpxml, args)
end
if args[:simulation_control_run_period_calendar_year].is_initialized
+ if !hpxml.header.sim_calendar_year.nil? && (hpxml.header.sim_calendar_year != Integer(args[:simulation_control_run_period_calendar_year].get))
+ errors << "'Simulation Control: Run Period Calendar Year' cannot vary across dwelling units."
+ end
hpxml.header.sim_calendar_year = args[:simulation_control_run_period_calendar_year].get
end
if args[:simulation_control_temperature_capacitance_multiplier].is_initialized
+ if !hpxml.header.temperature_capacitance_multiplier.nil? && (hpxml.header.temperature_capacitance_multiplier != Float(args[:simulation_control_temperature_capacitance_multiplier].get))
+ errors << "'Simulation Control: Temperature Capacitance Multiplier' cannot vary across dwelling units."
+ end
hpxml.header.temperature_capacitance_multiplier = args[:simulation_control_temperature_capacitance_multiplier].get
end
@@ -3644,6 +3710,7 @@ def self.set_header(hpxml, args)
fuel_values[HPXML::FuelTypeWoodPellets])
emissions_scenarios.each do |emissions_scenario|
name, emissions_type, elec_units, elec_value_or_schedule_filepath, elec_num_headers, elec_column_num, fuel_units, natural_gas_value, propane_value, fuel_oil_value, coal_value, wood_value, wood_pellets_value = emissions_scenario
+
elec_value = Float(elec_value_or_schedule_filepath) rescue nil
if elec_value.nil?
elec_schedule_filepath = elec_value_or_schedule_filepath
@@ -3657,6 +3724,38 @@ def self.set_header(hpxml, args)
wood_value = Float(wood_value) rescue nil
wood_pellets_value = Float(wood_pellets_value) rescue nil
+ emissions_scenario_exists = false
+ hpxml.header.emissions_scenarios.each do |es|
+ if (es.name != name) || (es.emissions_type != emissions_type)
+ next
+ end
+
+ if (es.emissions_type != emissions_type) ||
+ (!elec_units.nil? && es.elec_units != elec_units) ||
+ (!elec_value.nil? && es.elec_value != elec_value) ||
+ (!elec_schedule_filepath.nil? && es.elec_schedule_filepath != elec_schedule_filepath) ||
+ (!elec_num_headers.nil? && es.elec_schedule_number_of_header_rows != elec_num_headers) ||
+ (!elec_column_num.nil? && es.elec_schedule_column_number != elec_column_num) ||
+ (!fuel_units.nil? && es.natural_gas_units != fuel_units) ||
+ (!natural_gas_value.nil? && es.natural_gas_value != natural_gas_value) ||
+ (!fuel_units.nil? && es.propane_units != fuel_units) ||
+ (!propane_value.nil? && es.propane_value != propane_value) ||
+ (!fuel_units.nil? && es.fuel_oil_units != fuel_units) ||
+ (!fuel_oil_value.nil? && es.fuel_oil_value != fuel_oil_value) ||
+ (!fuel_units.nil? && es.coal_units != fuel_units) ||
+ (!coal_value.nil? && es.coal_value != coal_value) ||
+ (!fuel_units.nil? && es.wood_units != fuel_units) ||
+ (!wood_value.nil? && es.wood_value != wood_value) ||
+ (!fuel_units.nil? && es.wood_pellets_units != fuel_units) ||
+ (!wood_pellets_value.nil? && es.wood_pellets_value != wood_pellets_value)
+ errors << "HPXML header already includes an emissions scenario named '#{name}' with type '#{emissions_type}'."
+ else
+ emissions_scenario_exists = true
+ end
+ end
+
+ next if emissions_scenario_exists
+
hpxml.header.emissions_scenarios.add(name: name,
emissions_type: emissions_type,
elec_units: elec_units,
@@ -3770,6 +3869,7 @@ def self.set_header(hpxml, args)
bills_scenarios.each do |bills_scenario|
name, elec_tariff_filepath, elec_fixed_charge, natural_gas_fixed_charge, propane_fixed_charge, fuel_oil_fixed_charge, coal_fixed_charge, wood_fixed_charge, wood_pellets_fixed_charge, elec_marginal_rate, natural_gas_marginal_rate, propane_marginal_rate, fuel_oil_marginal_rate, coal_marginal_rate, wood_marginal_rate, wood_pellets_marginal_rate, pv_compensation_type, pv_net_metering_annual_excess_sellback_rate_type, pv_net_metering_annual_excess_sellback_rate, pv_feed_in_tariff_rate, pv_monthly_grid_connection_fee_unit, pv_monthly_grid_connection_fee = bills_scenario
+
elec_tariff_filepath = (elec_tariff_filepath.to_s.include?('.') ? elec_tariff_filepath : nil)
elec_fixed_charge = Float(elec_fixed_charge) rescue nil
natural_gas_fixed_charge = Float(natural_gas_fixed_charge) rescue nil
@@ -3805,6 +3905,39 @@ def self.set_header(hpxml, args)
pv_monthly_grid_connection_fee_dollars = Float(pv_monthly_grid_connection_fee) rescue nil
end
+ utility_bill_scenario_exists = false
+ hpxml.header.utility_bill_scenarios.each do |ubs|
+ next if ubs.name != name
+
+ if (!elec_tariff_filepath.nil? && ubs.elec_tariff_filepath != elec_tariff_filepath) ||
+ (!elec_fixed_charge.nil? && ubs.elec_fixed_charge != elec_fixed_charge) ||
+ (!natural_gas_fixed_charge.nil? && ubs.natural_gas_fixed_charge != natural_gas_fixed_charge) ||
+ (!propane_fixed_charge.nil? && ubs.propane_fixed_charge != propane_fixed_charge) ||
+ (!fuel_oil_fixed_charge.nil? && ubs.fuel_oil_fixed_charge != fuel_oil_fixed_charge) ||
+ (!coal_fixed_charge.nil? && ubs.coal_fixed_charge != coal_fixed_charge) ||
+ (!wood_fixed_charge.nil? && ubs.wood_fixed_charge != wood_fixed_charge) ||
+ (!wood_pellets_fixed_charge.nil? && ubs.wood_pellets_fixed_charge != wood_pellets_fixed_charge) ||
+ (!elec_marginal_rate.nil? && ubs.elec_marginal_rate != elec_marginal_rate) ||
+ (!natural_gas_marginal_rate.nil? && ubs.natural_gas_marginal_rate != natural_gas_marginal_rate) ||
+ (!propane_marginal_rate.nil? && ubs.propane_marginal_rate != propane_marginal_rate) ||
+ (!fuel_oil_marginal_rate.nil? && ubs.fuel_oil_marginal_rate != fuel_oil_marginal_rate) ||
+ (!coal_marginal_rate.nil? && ubs.coal_marginal_rate != coal_marginal_rate) ||
+ (!wood_marginal_rate.nil? && ubs.wood_marginal_rate != wood_marginal_rate) ||
+ (!wood_pellets_marginal_rate.nil? && ubs.wood_pellets_marginal_rate != wood_pellets_marginal_rate) ||
+ (!pv_compensation_type.nil? && ubs.pv_compensation_type != pv_compensation_type) ||
+ (!pv_net_metering_annual_excess_sellback_rate_type.nil? && ubs.pv_net_metering_annual_excess_sellback_rate_type != pv_net_metering_annual_excess_sellback_rate_type) ||
+ (!pv_net_metering_annual_excess_sellback_rate.nil? && ubs.pv_net_metering_annual_excess_sellback_rate != pv_net_metering_annual_excess_sellback_rate) ||
+ (!pv_feed_in_tariff_rate.nil? && ubs.pv_feed_in_tariff_rate != pv_feed_in_tariff_rate) ||
+ (!pv_monthly_grid_connection_fee_dollars_per_kw.nil? && ubs.pv_monthly_grid_connection_fee_dollars_per_kw != pv_monthly_grid_connection_fee_dollars_per_kw) ||
+ (!pv_monthly_grid_connection_fee_dollars.nil? && ubs.pv_monthly_grid_connection_fee_dollars != pv_monthly_grid_connection_fee_dollars)
+ errors << "HPXML header already includes a utility bill scenario named '#{name}'."
+ else
+ utility_bill_scenario_exists = true
+ end
+ end
+
+ next if utility_bill_scenario_exists
+
hpxml.header.utility_bill_scenarios.add(name: name,
elec_tariff_filepath: elec_tariff_filepath,
elec_fixed_charge: elec_fixed_charge,
@@ -3829,6 +3962,11 @@ def self.set_header(hpxml, args)
pv_monthly_grid_connection_fee_dollars: pv_monthly_grid_connection_fee_dollars)
end
end
+
+ errors.each do |error|
+ runner.registerError(error)
+ end
+ return errors.empty?
end
def self.add_building(hpxml, args)
diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml
index 9e02311c42..a5485ebac2 100644
--- a/BuildResidentialHPXML/measure.xml
+++ b/BuildResidentialHPXML/measure.xml
@@ -3,8 +3,8 @@
3.1
build_residential_hpxml
a13a8983-2b01-4930-8af2-42030b6e4233
- 281ad8f6-3e19-4e32-bb0d-b52e399aae3b
- 2023-09-28T16:21:23Z
+ 158958f4-24a0-465c-aca9-7c7bab723fc2
+ 2023-10-03T15:04:52Z
2C38F48B
BuildResidentialHPXML
HPXML Builder
@@ -19,6 +19,14 @@
true
false
+
+ existing_hpxml_path
+ Existing HPXML File Path
+ Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units).
+ String
+ false
+ false
+
software_info_program_used
Software Info: Program Used
@@ -6748,7 +6756,7 @@
measure.rb
rb
script
- 91835523
+ E436A82D
geometry.rb
@@ -6760,7 +6768,7 @@
build_residential_hpxml_test.rb
rb
test
- EE3ADA7A
+ B79B8310
diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb
index 44224cb36b..6a12c2e37b 100644
--- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb
+++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb
@@ -22,8 +22,19 @@ def test_workflows
hpxmls_files = {
# Base files to derive from
'base-sfd.xml' => nil,
+ 'base-sfd2.xml' => 'base-sfd.xml',
+
'base-sfa.xml' => 'base-sfd.xml',
+ 'base-sfa2.xml' => 'base-sfa.xml',
+ 'base-sfa3.xml' => 'base-sfa.xml',
+
'base-mf.xml' => 'base-sfd.xml',
+ 'base-mf2.xml' => 'base-mf.xml',
+ 'base-mf3.xml' => 'base-mf.xml',
+ 'base-mf4.xml' => 'base-mf.xml',
+
+ 'base-sfd-header.xml' => 'base-sfd.xml',
+ 'base-sfd-header-no-duplicates.xml' => 'base-sfd-header.xml',
# Extra files to test
'extra-auto.xml' => 'base-sfd.xml',
@@ -190,6 +201,10 @@ def test_workflows
'error-garage-too-wide.xml' => 'base-sfd.xml',
'error-garage-too-deep.xml' => 'base-sfd.xml',
'error-vented-attic-with-zero-floor-insulation.xml' => 'base-sfd.xml',
+ 'error-different-software-program.xml' => 'base-sfd-header.xml',
+ 'error-different-simulation-control.xml' => 'base-sfd-header.xml',
+ 'error-same-emissions-scenario-name.xml' => 'base-sfd-header.xml',
+ 'error-same-utility-bill-scenario-name.xml' => 'base-sfd-header.xml',
'warning-non-electric-heat-pump-water-heater.xml' => 'base-sfd.xml',
'warning-sfd-slab-non-zero-foundation-height.xml' => 'base-sfd.xml',
@@ -205,62 +220,73 @@ def test_workflows
}
expected_errors = {
- 'error-heating-system-and-heat-pump.xml' => 'Multiple central heating systems are not currently supported.',
- 'error-cooling-system-and-heat-pump.xml' => 'Multiple central cooling systems are not currently supported.',
- 'error-sfd-conditioned-basement-zero-foundation-height.xml' => "Foundation type of 'ConditionedBasement' cannot have a height of zero.",
- 'error-sfd-adiabatic-walls.xml' => 'No adiabatic surfaces can be applied to single-family detached homes.',
- 'error-mf-conditioned-basement' => 'Conditioned basement/crawlspace foundation type for apartment units is not currently supported.',
- 'error-mf-conditioned-crawlspace' => 'Conditioned basement/crawlspace foundation type for apartment units is not currently supported.',
- 'error-mf-bottom-crawlspace-zero-foundation-height.xml' => "Foundation type of 'UnventedCrawlspace' cannot have a height of zero.",
- 'error-second-heating-system-but-no-primary-heating.xml' => 'A second heating system was specified without a primary heating system.',
- 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' => "A ducted heat pump with 'separate' ducted backup is not supported.",
- 'error-sfa-no-building-num-units.xml' => 'Did not specify the number of units in the building for single-family attached or apartment units.',
- 'error-sfa-above-apartment.xml' => 'Single-family attached units cannot be above another unit.',
- 'error-sfa-below-apartment.xml' => 'Single-family attached units cannot be below another unit.',
- 'error-sfa-all-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.',
- 'error-mf-no-building-num-units.xml' => 'Did not specify the number of units in the building for single-family attached or apartment units.',
- 'error-mf-all-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.',
- 'error-mf-two-stories.xml' => 'Apartment units can only have one above-grade floor.',
- 'error-mf-conditioned-attic.xml' => 'Conditioned attic type for apartment units is not currently supported.',
- 'error-dhw-indirect-without-boiler.xml' => 'Must specify a boiler when modeling an indirect water heater type.',
- 'error-conditioned-attic-with-one-floor-above-grade.xml' => 'Units with a conditioned attic must have at least two above-grade floors.',
- 'error-zero-number-of-bedrooms.xml' => 'Number of bedrooms must be greater than zero.',
- 'error-sfd-with-shared-system.xml' => 'Specified a shared system for a single-family detached unit.',
- 'error-rim-joist-height-but-no-assembly-r.xml' => 'Specified a rim joist height but no rim joist assembly R-value.',
- 'error-rim-joist-assembly-r-but-no-height.xml' => 'Specified a rim joist assembly R-value but no rim joist height.',
- 'error-emissions-args-not-all-specified.xml' => 'Did not specify all required emissions arguments.',
- 'error-emissions-args-not-all-same-size.xml' => 'One or more emissions arguments does not have enough comma-separated elements specified.',
- 'error-emissions-natural-gas-args-not-all-specified.xml' => 'Did not specify fossil fuel emissions units for natural gas emissions values.',
- 'error-bills-args-not-all-same-size.xml' => 'One or more utility bill arguments does not have enough comma-separated elements specified.',
- 'error-invalid-aspect-ratio.xml' => 'Aspect ratio must be greater than zero.',
- 'error-negative-foundation-height.xml' => 'Foundation height cannot be negative.',
- 'error-too-many-floors.xml' => 'Number of above-grade floors must be six or less.',
- 'error-invalid-garage-protrusion.xml' => 'Garage protrusion fraction must be between zero and one.',
- 'error-sfa-no-non-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.',
- 'error-hip-roof-and-protruding-garage.xml' => 'Cannot handle protruding garage and hip roof.',
- 'error-protruding-garage-under-gable-roof.xml' => 'Cannot handle protruding garage and attic ridge running from front to back.',
- 'error-ambient-with-garage.xml' => 'Cannot handle garages with an ambient foundation type.',
- 'error-invalid-door-area.xml' => 'Door area cannot be negative.',
- 'error-invalid-window-aspect-ratio.xml' => 'Window aspect ratio must be greater than zero.',
- 'error-garage-too-wide.xml' => 'Garage is as wide as the single-family detached unit.',
- 'error-garage-too-deep.xml' => 'Garage is as deep as the single-family detached unit.',
- 'error-vented-attic-with-zero-floor-insulation.xml' => "Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'."
+ 'error-heating-system-and-heat-pump.xml' => ['Multiple central heating systems are not currently supported.'],
+ 'error-cooling-system-and-heat-pump.xml' => ['Multiple central cooling systems are not currently supported.'],
+ 'error-sfd-conditioned-basement-zero-foundation-height.xml' => ["Foundation type of 'ConditionedBasement' cannot have a height of zero."],
+ 'error-sfd-adiabatic-walls.xml' => ['No adiabatic surfaces can be applied to single-family detached homes.'],
+ 'error-mf-conditioned-basement' => ['Conditioned basement/crawlspace foundation type for apartment units is not currently supported.'],
+ 'error-mf-conditioned-crawlspace' => ['Conditioned basement/crawlspace foundation type for apartment units is not currently supported.'],
+ 'error-mf-bottom-crawlspace-zero-foundation-height.xml' => ["Foundation type of 'UnventedCrawlspace' cannot have a height of zero."],
+ 'error-second-heating-system-but-no-primary-heating.xml' => ['A second heating system was specified without a primary heating system.'],
+ 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' => ["A ducted heat pump with 'separate' ducted backup is not supported."],
+ 'error-sfa-no-building-num-units.xml' => ['Did not specify the number of units in the building for single-family attached or apartment units.'],
+ 'error-sfa-above-apartment.xml' => ['Single-family attached units cannot be above another unit.'],
+ 'error-sfa-below-apartment.xml' => ['Single-family attached units cannot be below another unit.'],
+ 'error-sfa-all-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'],
+ 'error-mf-no-building-num-units.xml' => ['Did not specify the number of units in the building for single-family attached or apartment units.'],
+ 'error-mf-all-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'],
+ 'error-mf-two-stories.xml' => ['Apartment units can only have one above-grade floor.'],
+ 'error-mf-conditioned-attic.xml' => ['Conditioned attic type for apartment units is not currently supported.'],
+ 'error-dhw-indirect-without-boiler.xml' => ['Must specify a boiler when modeling an indirect water heater type.'],
+ 'error-conditioned-attic-with-one-floor-above-grade.xml' => ['Units with a conditioned attic must have at least two above-grade floors.'],
+ 'error-zero-number-of-bedrooms.xml' => ['Number of bedrooms must be greater than zero.'],
+ 'error-sfd-with-shared-system.xml' => ['Specified a shared system for a single-family detached unit.'],
+ 'error-rim-joist-height-but-no-assembly-r.xml' => ['Specified a rim joist height but no rim joist assembly R-value.'],
+ 'error-rim-joist-assembly-r-but-no-height.xml' => ['Specified a rim joist assembly R-value but no rim joist height.'],
+ 'error-emissions-args-not-all-specified.xml' => ['Did not specify all required emissions arguments.'],
+ 'error-emissions-args-not-all-same-size.xml' => ['One or more emissions arguments does not have enough comma-separated elements specified.'],
+ 'error-emissions-natural-gas-args-not-all-specified.xml' => ['Did not specify fossil fuel emissions units for natural gas emissions values.'],
+ 'error-bills-args-not-all-same-size.xml' => ['One or more utility bill arguments does not have enough comma-separated elements specified.'],
+ 'error-invalid-aspect-ratio.xml' => ['Aspect ratio must be greater than zero.'],
+ 'error-negative-foundation-height.xml' => ['Foundation height cannot be negative.'],
+ 'error-too-many-floors.xml' => ['Number of above-grade floors must be six or less.'],
+ 'error-invalid-garage-protrusion.xml' => ['Garage protrusion fraction must be between zero and one.'],
+ 'error-sfa-no-non-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'],
+ 'error-hip-roof-and-protruding-garage.xml' => ['Cannot handle protruding garage and hip roof.'],
+ 'error-protruding-garage-under-gable-roof.xml' => ['Cannot handle protruding garage and attic ridge running from front to back.'],
+ 'error-ambient-with-garage.xml' => ['Cannot handle garages with an ambient foundation type.'],
+ 'error-invalid-door-area.xml' => ['Door area cannot be negative.'],
+ 'error-invalid-window-aspect-ratio.xml' => ['Window aspect ratio must be greater than zero.'],
+ 'error-garage-too-wide.xml' => ['Garage is as wide as the single-family detached unit.'],
+ 'error-garage-too-deep.xml' => ['Garage is as deep as the single-family detached unit.'],
+ 'error-vented-attic-with-zero-floor-insulation.xml' => ["Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'."],
+ 'error-different-software-program.xml' => ["'Software Info: Program Used' cannot vary across dwelling units.",
+ "'Software Info: Program Version' cannot vary across dwelling units."],
+ 'error-different-simulation-control.xml' => ["'Simulation Control: Timestep' cannot vary across dwelling units.",
+ "'Simulation Control: Run Period' cannot vary across dwelling units.",
+ "'Simulation Control: Run Period Calendar Year' cannot vary across dwelling units.",
+ "'Simulation Control: Temperature Capacitance Multiplier' cannot vary across dwelling units."],
+ 'error-same-emissions-scenario-name.xml' => ["HPXML header already includes an emissions scenario named 'Emissions' with type 'CO2e'."],
+ 'error-same-utility-bill-scenario-name.xml' => ["HPXML header already includes a utility bill scenario named 'Bills'."]
}
expected_warnings = {
- 'warning-non-electric-heat-pump-water-heater.xml' => 'Cannot model a heat pump water heater with non-electric fuel type.',
- 'warning-sfd-slab-non-zero-foundation-height.xml' => "Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero.",
- 'warning-mf-bottom-slab-non-zero-foundation-height.xml' => "Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero.",
- 'warning-slab-non-zero-foundation-height-above-grade.xml' => 'Specified a slab foundation type with a non-zero height above grade.',
- 'warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.',
- 'warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.',
- 'warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.',
- 'warning-vented-attic-with-floor-and-roof-insulation.xml' => 'Home with unconditioned attic type has both ceiling insulation and roof insulation.',
- 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => 'Home with unconditioned attic type has both ceiling insulation and roof insulation.',
- 'warning-conditioned-basement-with-ceiling-insulation.xml' => 'Home with conditioned basement has floor insulation.',
- 'warning-conditioned-attic-with-floor-insulation.xml' => 'Home with conditioned attic has ceiling insulation.',
+ 'warning-non-electric-heat-pump-water-heater.xml' => ['Cannot model a heat pump water heater with non-electric fuel type.'],
+ 'warning-sfd-slab-non-zero-foundation-height.xml' => ["Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero."],
+ 'warning-mf-bottom-slab-non-zero-foundation-height.xml' => ["Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero."],
+ 'warning-slab-non-zero-foundation-height-above-grade.xml' => ['Specified a slab foundation type with a non-zero height above grade.'],
+ 'warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'],
+ 'warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'],
+ 'warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'],
+ 'warning-vented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'],
+ 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'],
+ 'warning-conditioned-basement-with-ceiling-insulation.xml' => ['Home with conditioned basement has floor insulation.'],
+ 'warning-conditioned-attic-with-floor-insulation.xml' => ['Home with conditioned attic has ceiling insulation.']
}
+ schema_path = File.join(File.dirname(__FILE__), '../..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd')
+ schema_validator = XMLValidator.get_schema_validator(schema_path)
+
puts "Generating #{hpxmls_files.size} HPXML files..."
hpxmls_files.each_with_index do |(hpxml_file, parent), i|
@@ -307,14 +333,21 @@ def test_workflows
end
hpxml_path = File.absolute_path(File.join(@output_path, hpxml_file))
- hpxml = HPXML.new(hpxml_path: hpxml_path)
+ hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL')
hpxml.header.xml_generated_by = 'build_residential_hpxml_test.rb'
hpxml.header.created_date_and_time = Time.new(2000, 1, 1).strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs
hpxml_doc = hpxml.to_doc()
XMLHelper.write_file(hpxml_doc, hpxml_path)
- rescue Exception => e
- flunk "Error: Did not successfully generate #{hpxml_file}.\n#{e}\n#{e.backtrace.join('\n')}"
+
+ errors, _warnings = XMLValidator.validate_against_schema(hpxml_path, schema_validator)
+ next unless errors.size > 0
+
+ puts errors.to_s
+ puts "\nError: Did not successfully validate #{hpxml_file}."
+ exit!
+ rescue Exception
+ flunk "Error: Did not successfully generate #{hpxml_file}"
end
end
@@ -610,6 +643,8 @@ def _set_measure_argument_values(hpxml_file, args)
args['pool_heater_type'] = HPXML::HeaterTypeElectricResistance
args['permanent_spa_present'] = false
args['permanent_spa_heater_type'] = HPXML::HeaterTypeElectricResistance
+ elsif ['base-sfd2.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml')
elsif ['base-sfa.xml'].include? hpxml_file
args['geometry_unit_type'] = HPXML::ResidentialTypeSFA
args['geometry_unit_cfa'] = 1800.0
@@ -624,6 +659,10 @@ def _set_measure_argument_values(hpxml_file, args)
args['window_area_left'] = 0
args['window_area_right'] = 0
args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal
+ elsif ['base-sfa2.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml')
+ elsif ['base-sfa3.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml')
elsif ['base-mf.xml'].include? hpxml_file
args['geometry_unit_type'] = HPXML::ResidentialTypeApartment
args['geometry_unit_cfa'] = 900.0
@@ -649,6 +688,28 @@ def _set_measure_argument_values(hpxml_file, args)
args['ducts_number_of_return_registers'] = 1
args['door_area'] = 20.0
args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal
+ elsif ['base-mf2.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml')
+ elsif ['base-mf3.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml')
+ elsif ['base-mf4.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml')
+ elsif ['base-sfd-header.xml'].include? hpxml_file
+ args['software_info_program_used'] = 'Program'
+ args['software_info_program_version'] = '1'
+ args['schedules_vacancy_period'] = 'Jan 2 - Jan 5'
+ args['schedules_power_outage_period'] = 'Feb 10 - Feb 12'
+ args['schedules_power_outage_window_natvent_availability'] = HPXML::ScheduleAvailable
+ args['simulation_control_run_period'] = 'Jan 1 - Dec 31'
+ args['simulation_control_run_period_calendar_year'] = 2007
+ args['simulation_control_temperature_capacitance_multiplier'] = 1.0
+ args['emissions_scenario_names'] = 'Emissions'
+ args['emissions_types'] = 'CO2e'
+ args['emissions_electricity_units'] = 'kg/MWh'
+ args['emissions_electricity_values_or_filepaths'] = '1'
+ args['utility_bill_scenario_names'] = 'Bills'
+ elsif ['base-sfd-header-no-duplicates.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml')
end
# Extras
@@ -1133,6 +1194,26 @@ def _set_measure_argument_values(hpxml_file, args)
args['geometry_garage_depth'] = 40
elsif ['error-vented-attic-with-zero-floor-insulation.xml'].include? hpxml_file
args['ceiling_assembly_r'] = 0
+ elsif ['error-different-software-program.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml')
+ args['software_info_program_used'] = 'Program2'
+ args['software_info_program_version'] = '2'
+ args['emissions_scenario_names'] = 'Emissions2'
+ args['utility_bill_scenario_names'] = 'Bills2'
+ elsif ['error-different-simulation-control.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml')
+ args['simulation_control_timestep'] = 10
+ args['simulation_control_run_period'] = 'Jan 2 - Dec 30'
+ args['simulation_control_run_period_calendar_year'] = 2008
+ args['simulation_control_temperature_capacitance_multiplier'] = 2.0
+ args['emissions_scenario_names'] = 'Emissions2'
+ args['utility_bill_scenario_names'] = 'Bills2'
+ elsif ['error-same-emissions-scenario-name.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml')
+ args['emissions_electricity_values_or_filepaths'] = '2'
+ elsif ['error-same-utility-bill-scenario-name.xml'].include? hpxml_file
+ args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml')
+ args['utility_bill_electricity_fixed_charges'] = '13.0'
end
# Warning
@@ -1186,23 +1267,27 @@ def _set_measure_argument_values(hpxml_file, args)
end
end
- def _test_measure(runner, expected_error, expected_warning)
+ def _test_measure(runner, expected_errors, expected_warnings)
# check warnings/errors
- if not expected_error.nil?
- if runner.result.stepErrors.select { |s| s.include?(expected_error) }.size <= 0
- runner.result.stepErrors.each do |s|
- puts "ERROR: #{s}"
+ if not expected_errors.nil?
+ expected_errors.each do |expected_error|
+ if runner.result.stepErrors.select { |s| s.include?(expected_error) }.size <= 0
+ runner.result.stepErrors.each do |s|
+ puts "ERROR: #{s}"
+ end
end
+ assert(runner.result.stepErrors.select { |s| s.include?(expected_error) }.size > 0)
end
- assert(runner.result.stepErrors.select { |s| s.include?(expected_error) }.size > 0)
end
- if not expected_warning.nil?
- if runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size <= 0
- runner.result.stepWarnings.each do |s|
- puts "WARNING: #{s}"
+ if not expected_warnings.nil?
+ expected_warnings.each do |expected_warning|
+ if runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size <= 0
+ runner.result.stepWarnings.each do |s|
+ puts "WARNING: #{s}"
+ end
end
+ assert(runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size > 0)
end
- assert(runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size > 0)
end
end
end
diff --git a/BuildResidentialScheduleFile/measure.rb b/BuildResidentialScheduleFile/measure.rb
index fd6ce317a1..ac78972ca8 100644
--- a/BuildResidentialScheduleFile/measure.rb
+++ b/BuildResidentialScheduleFile/measure.rb
@@ -147,7 +147,7 @@ def run(model, runner, user_arguments)
# output csv path
args[:output_csv_path] = "#{filename}.csv"
- args[:output_csv_path] = "#{filename}_#{i + 1}.csv" if i > 0
+ args[:output_csv_path] = "#{filename}_#{i + 1}.csv" if i > 0 && args[:building_id].get == 'ALL'
# create the schedules
success = create_schedules(runner, hpxml, hpxml_bldg, epw_file, args)
diff --git a/BuildResidentialScheduleFile/measure.xml b/BuildResidentialScheduleFile/measure.xml
index 24484d7ae3..ff35a5d8fe 100644
--- a/BuildResidentialScheduleFile/measure.xml
+++ b/BuildResidentialScheduleFile/measure.xml
@@ -3,8 +3,8 @@
3.1
build_residential_schedule_file
f770b2db-1a9f-4e99-99a7-7f3161a594b1
- 32b707ca-3229-4912-b64f-f7d0163bc552
- 2023-09-20T21:59:04Z
+ d6a9eedd-3661-499a-8e45-0fe9716cd4cb
+ 2023-09-26T16:12:25Z
03F02484
BuildResidentialScheduleFile
Schedule File Builder
@@ -102,7 +102,7 @@
measure.rb
rb
script
- A2133951
+ DA57F7ED
README.md
@@ -900,7 +900,7 @@
build_residential_schedule_file_test.rb
rb
test
- 32332B7A
+ 13DDEF22
diff --git a/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb b/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb
index 9e611c1a13..1186a44ea3 100644
--- a/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb
+++ b/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb
@@ -298,6 +298,8 @@ def test_multiple_buildings
output_path: @tmp_schedule_file_path)
if hpxml_bldg.building_id == 'MyBuilding'
+ assert_equal(1, hpxml_bldg.header.schedules_filepaths.size)
+ assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic.csv')
assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1)
@@ -313,6 +315,8 @@ def test_multiple_buildings
assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1)
assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping))
elsif hpxml_bldg.building_id == 'MyBuilding_2'
+ assert_equal(1, hpxml_bldg.header.schedules_filepaths.size)
+ assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv')
assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1)
@@ -328,6 +332,8 @@ def test_multiple_buildings
assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1)
assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping))
elsif hpxml_bldg.building_id == 'MyBuilding_3'
+ assert_equal(1, hpxml_bldg.header.schedules_filepaths.size)
+ assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_3.csv')
assert_in_epsilon(6045, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1)
@@ -350,7 +356,7 @@ def test_multiple_buildings_id
hpxml = _create_hpxml('base-multiple-buildings.xml')
XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path)
- @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv'))
+ @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic_2.csv'))
@args_hash['building_id'] = 'MyBuilding_2'
hpxml, result = _test_measure()
@@ -370,6 +376,8 @@ def test_multiple_buildings_id
year: 2007,
output_path: @tmp_schedule_file_path)
+ assert_equal(1, hpxml_bldg.header.schedules_filepaths.size)
+ assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv')
assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1)
assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1)
diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml
index 106be4cb1c..f4a0c7b06d 100644
--- a/HPXMLtoOpenStudio/measure.xml
+++ b/HPXMLtoOpenStudio/measure.xml
@@ -3,8 +3,8 @@
3.1
hpxm_lto_openstudio
b1543b30-9465-45ff-ba04-1d1f85e763bc
- c9fb3647-7ee2-48ed-809a-87178d163168
- 2023-09-30T00:09:22Z
+ c07fe49a-6051-421e-8919-899cd3a0ff0f
+ 2023-09-30T21:03:29Z
D8922A73
HPXMLtoOpenStudio
HPXML to OpenStudio Translator
@@ -238,13 +238,13 @@
hpxml.rb
rb
resource
- 9E0F82C7
+ 40E63FB6
hpxml_defaults.rb
rb
resource
- BFB8A264
+ 3C7ED956
hpxml_schema/HPXML.xsd
@@ -366,6 +366,18 @@
resource
DEED74EA
+
+ schedule_files/occupancy-stochastic_2.csv
+ csv
+ resource
+ 7E648862
+
+
+ schedule_files/occupancy-stochastic_3.csv
+ csv
+ resource
+ 4DCFB9A0
+
schedule_files/setpoints-10-mins.csv
csv
diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb
index edb19ecf2e..5072bda931 100644
--- a/HPXMLtoOpenStudio/resources/hpxml.rb
+++ b/HPXMLtoOpenStudio/resources/hpxml.rb
@@ -1607,7 +1607,9 @@ def collapse_enclosure_surfaces(surf_types_of_interest = nil)
:under_slab_insulation_id,
:area,
:length,
- :exposed_perimeter]
+ :exposed_perimeter,
+ :interior_shading_id,
+ :exterior_shading_id]
# Look for pairs of surfaces that can be collapsed
like_foundation_walls = {}
@@ -3517,8 +3519,8 @@ def from_doc(building)
class Window < BaseElement
ATTRS = [:id, :area, :azimuth, :orientation, :frame_type, :thermal_break, :glass_layers,
:glass_type, :gas_fill, :ufactor, :shgc, :interior_shading_factor_summer,
- :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer,
- :exterior_shading_factor_winter, :exterior_shading_type, :storm_type, :overhangs_depth,
+ :interior_shading_id, :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer,
+ :exterior_shading_id, :exterior_shading_factor_winter, :exterior_shading_type, :storm_type, :overhangs_depth,
:overhangs_distance_to_top_of_window, :overhangs_distance_to_bottom_of_window,
:fraction_operable, :performance_class, :wall_idref]
attr_accessor(*ATTRS)
@@ -3589,7 +3591,11 @@ def to_doc(building)
if (not @exterior_shading_type.nil?) || (not @exterior_shading_factor_summer.nil?) || (not @exterior_shading_factor_winter.nil?)
exterior_shading = XMLHelper.add_element(window, 'ExteriorShading')
sys_id = XMLHelper.add_element(exterior_shading, 'SystemIdentifier')
- XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading")
+ if @exterior_shading_id.nil?
+ XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading")
+ else
+ XMLHelper.add_attribute(sys_id, 'id', @exterior_shading_id)
+ end
XMLHelper.add_element(exterior_shading, 'Type', @exterior_shading_type, :string) unless @exterior_shading_type.nil?
XMLHelper.add_element(exterior_shading, 'SummerShadingCoefficient', @exterior_shading_factor_summer, :float, @exterior_shading_factor_summer_isdefaulted) unless @exterior_shading_factor_summer.nil?
XMLHelper.add_element(exterior_shading, 'WinterShadingCoefficient', @exterior_shading_factor_winter, :float, @exterior_shading_factor_winter_isdefaulted) unless @exterior_shading_factor_winter.nil?
@@ -3597,7 +3603,11 @@ def to_doc(building)
if (not @interior_shading_type.nil?) || (not @interior_shading_factor_summer.nil?) || (not @interior_shading_factor_winter.nil?)
interior_shading = XMLHelper.add_element(window, 'InteriorShading')
sys_id = XMLHelper.add_element(interior_shading, 'SystemIdentifier')
- XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading")
+ if @interior_shading_id.nil?
+ XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading")
+ else
+ XMLHelper.add_attribute(sys_id, 'id', @interior_shading_id)
+ end
XMLHelper.add_element(interior_shading, 'Type', @interior_shading_type, :string) unless @interior_shading_type.nil?
XMLHelper.add_element(interior_shading, 'SummerShadingCoefficient', @interior_shading_factor_summer, :float, @interior_shading_factor_summer_isdefaulted) unless @interior_shading_factor_summer.nil?
XMLHelper.add_element(interior_shading, 'WinterShadingCoefficient', @interior_shading_factor_winter, :float, @interior_shading_factor_winter_isdefaulted) unless @interior_shading_factor_winter.nil?
@@ -3640,9 +3650,11 @@ def from_doc(window)
@gas_fill = XMLHelper.get_value(window, 'GasFill', :string)
@ufactor = XMLHelper.get_value(window, 'UFactor', :float)
@shgc = XMLHelper.get_value(window, 'SHGC', :float)
+ @exterior_shading_id = HPXML::get_id(window, 'ExteriorShading/SystemIdentifier')
@exterior_shading_type = XMLHelper.get_value(window, 'ExteriorShading/Type', :string)
@exterior_shading_factor_summer = XMLHelper.get_value(window, 'ExteriorShading/SummerShadingCoefficient', :float)
@exterior_shading_factor_winter = XMLHelper.get_value(window, 'ExteriorShading/WinterShadingCoefficient', :float)
+ @interior_shading_id = HPXML::get_id(window, 'InteriorShading/SystemIdentifier')
@interior_shading_type = XMLHelper.get_value(window, 'InteriorShading/Type', :string)
@interior_shading_factor_summer = XMLHelper.get_value(window, 'InteriorShading/SummerShadingCoefficient', :float)
@interior_shading_factor_winter = XMLHelper.get_value(window, 'InteriorShading/WinterShadingCoefficient', :float)
diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv
new file mode 100644
index 0000000000..a7f8dc95be
--- /dev/null
+++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv
@@ -0,0 +1,8761 @@
+occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.14
+0.667,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.159
+0.667,0.334,0.334,0.25,0,0,0,0.403,0.692,0.692,0,0,0.119
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.342
+0.667,0.334,0.334,0.5,0,0,0,0.31,0.692,0.692,0,0,0.149
+0.667,0.322,0.322,0.0167,0,0,0,0.319,0.705,0.705,0,0,0.402
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0372
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.223
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.26
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0
+0.667,0.548,0.548,0.5,0,0,0,0.58,0.805,0.805,0,0,0.0743
+0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.0743
+0.667,0.677,0.677,0.05,0,0,0,0.711,0.78,0.78,0,0,0.149
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0743
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372
+0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.334
+1,0.355,0.355,0.783,0,0,0,0.601,0.693,0.693,0,0,0.28
+1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.162
+0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.275
+0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.217
+0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.168
+0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.365
+0.667,0.181,0.181,0,0,0.233,0,0.284,0.591,0.591,0,0.295,0.154
+0.667,0.18,0.18,0,0,0.25,0.217,0.302,0.591,0.591,0,0.44,0
+0.667,0.182,0.182,0.25,0,0,0.6,0.316,0.585,0.585,0,0.55,0
+0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.479,0.186
+0.333,0.234,0.234,0,0.4,0,0,0.354,0.61,0.61,0.707,0.379,0.0743
+0.667,0.548,0.548,0,0.667,0,0,0.58,0.805,0.805,0,0.287,0.112
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223
+0.667,0.677,0.677,0,0.65,0,0,0.711,0.78,0.78,0.635,0,0.417
+0.667,0.307,0.307,0,0.15,0,0,0.503,0.604,0.604,0,0,0.112
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.195
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.186
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.192,0.192,0,0.65,0.233,0,0.33,0.579,0.579,0.614,0.494,0.0963
+0.667,0.343,0.343,0.517,0.15,0,0.717,0.3,0.692,0.692,0,0.232,0.121
+0.667,0.334,0.334,0,0,0,0.917,0.31,0.692,0.692,0,0,0
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.149
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.186
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.0841,0.149
+0.333,0.234,0.234,0,0,0.483,0,0.354,0.61,0.61,0,0.448,0.215
+0.667,0.548,0.548,0,0,0,0.817,0.58,0.805,0.805,0,0,0.112
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.335
+0.667,0.677,0.677,0,0.65,0,0,0.711,0.78,0.78,0.792,0,0.0743
+0.667,0.565,0.565,0.767,0.15,0,0,0.748,0.742,0.742,0.143,0,0.0372
+0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.297
+0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.314
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.448
+0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.313
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.222
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.264
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.292
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.157
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.182,0.182,0,0.15,0,0,0.316,0.585,0.585,0.458,0,0
+0.333,0.196,0.196,0,0.65,0,0,0.321,0.597,0.597,0.538,0,0.187
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.634,0,0.158
+0.667,0.548,0.548,0.25,0,0,0,0.58,0.805,0.805,0.378,0,0.127
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0743
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.223
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.424,0
+1,0.253,0.253,0.517,0,0.25,0.217,0.487,0.617,0.617,0,0.229,0
+1,0.449,0.449,0,0,0,1,0.657,0.787,0.787,0,0,0
+0.333,0.192,0.192,0,0,0,0.417,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.112
+0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.186
+0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0.186
+0.333,0.18,0.18,0.3,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.186
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.105
+1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.146
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.269
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0372
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.347
+0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.167
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.281
+0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.52
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.153
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186
+0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0,0,0.0743
+0.667,0.669,0.669,0.1,0,0.483,0,0.673,0.817,0.817,0,0.613,0.223
+0.667,0.677,0.677,0.917,0,0,0.633,0.711,0.78,0.78,0,0.136,0.0743
+1,0.823,0.823,0.367,0,0,1,0.993,0.88,0.88,0,0,0.08
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.112
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0882
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.19
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.242
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.351
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.184
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0743
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149
+0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.186
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.1,0,0.186
+0.667,0.669,0.669,0,0.817,0,0,0.673,0.817,0.817,0.438,0,0.149
+0.667,0.677,0.677,0,0.25,0,0,0.711,0.78,0.78,0,0,0.0372
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.119
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.206
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.223
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.166
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0502
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.145
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0978
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0887
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.115
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149
+0.333,0.196,0.196,0,0,0.717,0,0.321,0.597,0.597,0,0.511,0.149
+0.667,0.418,0.418,0,0,0,0.483,0.449,0.755,0.755,0,0,0.52
+0.667,0.548,0.548,0,0,0,0.867,0.58,0.805,0.805,0,0,0.372
+0.667,0.669,0.669,0,0.4,0,0,0.673,0.817,0.817,0.508,0,0.301
+1,0.991,0.991,0,0.667,0.233,0,0.937,0.937,0.937,0.139,0.635,0
+0.667,0.565,0.565,0,0,0,0.533,0.748,0.742,0.742,0,0.601,0.0372
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.117
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.368
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.221
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.271
+0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0
+0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0372
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0.106,0.263
+0.667,0.334,0.334,0,0,0.717,0,0.31,0.692,0.692,0,0.508,0.118
+0.333,0.186,0.186,0,0,0,0.733,0.288,0.585,0.585,0,0.454,0.0372
+0.333,0.181,0.181,0,0,0,0.9,0.284,0.591,0.591,0,0.731,0
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.633,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.322
+0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.0173
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186
+0.333,0.299,0.299,0,0.15,0,0,0.419,0.635,0.635,0.391,0,0.297
+0.667,0.669,0.669,0,0.65,0,0,0.673,0.817,0.817,0.653,0,0.149
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.173,0,0.149
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.26
+0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.203
+1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0697
+0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.414
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.247
+0.333,0.192,0.192,0.25,0,0,0,0.284,0.579,0.579,0,0,0.163
+0.667,0.322,0.322,0.5,0,0,0,0.319,0.705,0.705,0,0,0.135
+0.667,0.313,0.313,0.0167,0,0,0,0.31,0.717,0.717,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.502,0.0372
+0.667,0.343,0.343,0,0,0,0.967,0.384,0.73,0.73,0,0,0.0372
+1,0.602,0.602,0,0,0,0.117,0.545,0.899,0.899,0,0,0.149
+0.667,0.548,0.548,0.25,0,0,0,0.58,0.805,0.805,0,0,0.149
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223
+0.667,0.677,0.677,0,0,0.483,0,0.711,0.78,0.78,0,0.124,0.315
+1,0.565,0.565,0,0,0,0.267,0.748,0.742,0.742,0,0,0.112
+1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.535
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.111
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.194
+0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.118
+0.333,0.183,0.183,0.517,0,0,0,0.391,0.572,0.572,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.297
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0372
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0372
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.112
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.204,0,0.0372
+1,0.979,0.979,0,0.8,0,0,0.881,0.993,0.993,0.753,0,0.149
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.149
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.267
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0532,0.0532,0,0,0,0,0.394,0.555,0.555,0,0,0.268
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.324
+1,0.151,0.151,0.25,0,0,0,0.372,0.541,0.541,0,0,0.133
+1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.228
+0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.421
+0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.403
+0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.132
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.158
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.224
+1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.43
+1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0.243,0,0.497
+0.667,0.548,0.548,0,0.9,0,0,0.58,0.805,0.805,0.481,0,0.52
+0.667,0.669,0.669,0,0.45,0,0,0.673,0.817,0.817,0,0,0.113
+0.333,0.363,0.363,0,0,0.233,0,0.484,0.622,0.622,0,0.382,0.112
+0.333,0.307,0.307,0,0,0,0.533,0.503,0.604,0.604,0,0,0
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0
+0.667,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0743
+0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0867
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0347
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14
+1,0.0532,0.0532,0.917,0,0,0,0.394,0.555,0.555,0,0,0.222
+1,0.117,0.117,0.633,0,0,0,0.422,0.567,0.567,0,0,0.199
+1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.0797
+1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.111
+1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.438
+1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.483
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.394
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.34
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.216
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0.167,0,0,0,0.316,0.585,0.585,0,0,0.0743
+0.333,0.196,0.196,0.0833,0,0,0,0.321,0.597,0.597,0,0,0.335
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0743
+0.667,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.0743
+0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0.0749,0.0372
+0.667,0.363,0.363,0,0,0.717,0,0.484,0.622,0.622,0,0.56,0.0743
+0.667,0.565,0.565,0,0,0,0.267,0.748,0.742,0.742,0,0.131,0.0791
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.049
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.343,0.343,0.35,0.567,0,0,0.3,0.692,0.692,0.798,0,0
+1,0.477,0.477,0,0.233,0,0,0.336,0.806,0.806,0.15,0,0
+1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.0743
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0372
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0.0724,0,0.0743
+0.667,0.315,0.315,0,0.817,0,0,0.375,0.705,0.705,0.896,0,0.223
+0.667,0.343,0.343,0,0.25,0,0,0.384,0.73,0.73,0,0,0.0372
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.112
+0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0,0,0.0743
+0.667,0.669,0.669,0.1,0,0,0,0.673,0.817,0.817,0,0,0.335
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0743
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.149
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.26
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0
+1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.216
+0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.128,0
+0.667,0.186,0.186,0,0,0.483,0,0.288,0.585,0.585,0,0.839,0.223
+0.333,0.181,0.181,0,0,0,0.533,0.284,0.591,0.591,0,0.651,0.223
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.595,0.0372
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.524,0.0372
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.396,0.0372
+0.333,0.234,0.234,0.25,0,0,0,0.354,0.61,0.61,0,0.538,0.367
+0.667,0.548,0.548,0,0.65,0,0,0.58,0.805,0.805,0.796,0.131,0.26
+0.667,0.669,0.669,0.5,0.417,0,0,0.673,0.817,0.817,0,0,0.446
+0.333,0.363,0.363,0.783,0,0,0,0.484,0.622,0.622,0,0,0.0372
+0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0743
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0743
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.181,0.181,0,0.15,0,0,0.284,0.591,0.591,0.292,0,0
+0.667,0.311,0.311,0.517,0.917,0,0,0.347,0.717,0.717,0.483,0,0
+0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.112
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.297
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.297
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.186
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0743
+1,0.565,0.565,0,0,0.233,0,0.748,0.742,0.742,0,0.202,0.112
+1,0.43,0.43,0,0,0,0.717,0.729,0.717,0.717,0,0,0.0743
+1,0.212,0.212,0,0,0,0.917,0.447,0.56,0.56,0,0,0.186
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.149
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.267
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.126
+0.667,0.183,0.183,0.267,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0.106,0.25
+0.667,0.322,0.322,0,0,0.483,0,0.319,0.705,0.705,0,0,0.0999
+0.333,0.181,0.181,0,0,0,0.967,0.284,0.591,0.591,0,0,0.0372
+0.333,0.18,0.18,0,0,0,0.667,0.302,0.591,0.591,0,0,0.149
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.186
+0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0.167,0,0
+0.333,0.0495,0.0495,0,0.8,0,0,0.258,0.465,0.465,0.555,0,0.0743
+0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0372
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.207
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0
+1,0.253,0.253,0.3,0,0,0,0.487,0.617,0.617,0,0,0
+1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0
+1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.0743
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.347
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.199
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.186
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.186
+0.333,0.182,0.182,0,0,0.233,0,0.316,0.585,0.585,0,0.364,0.149
+0.333,0.196,0.196,0,0,0,0.467,0.321,0.597,0.597,0,0.321,0
+0.333,0.234,0.234,0,0,0,0.617,0.354,0.61,0.61,0,0,0.186
+0.333,0.299,0.299,0.25,0,0,0,0.419,0.635,0.635,0.176,0,0.112
+0.667,0.669,0.669,0,0.9,0,0,0.673,0.817,0.817,0.675,0,0.112
+0.667,0.677,0.677,0,0.167,0,0,0.711,0.78,0.78,0.646,0,0
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.253,0.253,0.25,0,0,0,0.487,0.617,0.617,0,0,0.158
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.132
+0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.193
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.613
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.183
+0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0372
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.166
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.099
+0.667,0.548,0.548,0.5,0,0,0,0.58,0.805,0.805,0,0,0.149
+0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.112
+0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.149
+0.667,0.565,0.565,0.6,0,0,0,0.748,0.742,0.742,0,0,0.0743
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.207
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.178
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.175
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.108
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.158
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.0793
+1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.134
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.154
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.26
+0.333,0.18,0.18,0,0.0667,0,0,0.302,0.591,0.591,0.364,0,0.223
+0.333,0.182,0.182,0,0.733,0,0,0.316,0.585,0.585,0.74,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0.529,0,0
+0.333,0.234,0.234,0.417,0,0,0,0.354,0.61,0.61,0.455,0,0.186
+0.667,0.548,0.548,0.35,0,0,0,0.58,0.805,0.805,0,0,0
+0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0.137,0,0.149
+0.333,0.363,0.363,0,0.533,0,0,0.484,0.622,0.622,0.616,0,0.112
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0.499,0,0.112
+0.667,0.43,0.43,0,0.567,0,0,0.729,0.717,0.717,0.79,0,0.186
+1,0.374,0.374,0,0.233,0,0,0.636,0.655,0.655,0,0,0.186
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.149
+1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.12
+1,0.316,0.316,0.1,0,0.15,0,0.524,0.68,0.68,0,0.193,0
+1,0.334,0.334,0,0,1,0,0.403,0.692,0.692,0,0.324,0
+1,0.343,0.343,0.417,0,0.533,0,0.3,0.692,0.692,0,0.402,0.272
+1,0.477,0.477,1,0,0,0.933,0.336,0.806,0.806,0,0,0.259
+1,0.458,0.458,0.133,0,0,0.967,0.35,0.824,0.824,0,0.301,0.534
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.00459,0.261
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.175
+0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.283
+0.333,0.234,0.234,0.517,0,0,0,0.354,0.61,0.61,0,0,0.0372
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.268
+0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0743
+0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.16
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.498
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.186
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.188
+1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.386
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0.25,0,0,0,0.279,0.579,0.579,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0887,0.0743
+0,0.0495,0.0495,0,0,0.717,0,0.258,0.465,0.465,0,0.369,0.112
+0.333,0.18,0.18,0,0,0,0.733,0.302,0.591,0.591,0,0.723,0
+0.667,0.315,0.315,0.25,0,0,0.0833,0.375,0.705,0.705,0,0.0917,0
+0.667,0.343,0.343,0.267,0,0,0,0.384,0.73,0.73,0,0,0.0372
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0
+1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.26
+0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.249
+0.667,0.677,0.677,0.0333,0,0,0,0.711,0.78,0.78,0,0,0
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.223
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0657,0
+1,0.0833,0.0833,0,0,0.483,0,0.34,0.516,0.516,0,0.413,0.257
+1,0.253,0.253,0,0,0,0.817,0.487,0.617,0.617,0,0,0.22
+0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0998
+0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.177
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0
+0.667,0.334,0.334,0,0,0.733,0,0.31,0.692,0.692,0,0.731,0
+0.333,0.186,0.186,0,0,0.233,0.233,0.288,0.585,0.585,0,0.401,0.0372
+0.333,0.181,0.181,0,0,0,0.85,0.284,0.591,0.591,0,0.492,0.112
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.719,0.112
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.763,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.402,0
+0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0.573,0.112
+0.667,0.548,0.548,0.0333,0,0,0,0.58,0.805,0.805,0,0,0.0372
+0.667,0.669,0.669,0,0.267,0,0,0.673,0.817,0.817,0.616,0,0.0743
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.753,0,0.112
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.245,0,0.0743
+1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0.25,0,0,0,0.326,0.51,0.51,0,0,0
+0.667,0.0833,0.0833,0.517,0,0,0,0.34,0.516,0.516,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.196,0.196,0.783,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0.25,0,0.483,0,0.284,0.591,0.591,0,0.0352,0.186
+0.667,0.311,0.311,0,0,0.483,0,0.347,0.717,0.717,0,0,0
+0.667,0.315,0.315,0,0,0,0.983,0.375,0.705,0.705,0,0,0
+1,0.49,0.49,0,0,0,0.65,0.447,0.862,0.862,0,0,0.0372
+1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.259
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.26
+0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.174
+0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.311
+0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.238
+0.667,0.212,0.212,0.5,0,0,0,0.447,0.56,0.56,0,0,0.112
+1,0.116,0.116,0.0167,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.151,0.151,0.25,0,0,0,0.372,0.541,0.541,0,0,0
+1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.188
+1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0
+0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0743
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.161
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.321
+0.667,0.311,0.311,0.25,0,0,0,0.347,0.717,0.717,0,0,0.517
+0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.246
+0.667,0.343,0.343,0.5,0,0,0,0.384,0.73,0.73,0,0,0.16
+0.667,0.234,0.234,0.267,0,0,0,0.354,0.61,0.61,0,0,0.117
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.149
+0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0372
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0372
+0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.132
+1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.381
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.212
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0372
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0.483,0,0.288,0.585,0.585,0,0.537,0.112
+0.333,0.181,0.181,0,0,0.233,0.233,0.284,0.591,0.591,0,0.752,0
+0.333,0.18,0.18,0,0,0,1,0.302,0.591,0.591,0,0.307,0
+0.667,0.315,0.315,0,0,0,0.4,0.375,0.705,0.705,0,0,0
+0.667,0.343,0.343,0.25,0,0,0,0.384,0.73,0.73,0,0,0.0743
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.149
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.409
+0.667,0.669,0.669,0.517,0,0,0,0.673,0.817,0.817,0,0,0.223
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0372
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.241
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.263
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.317
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.238
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.205
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.192,0.192,0,0,0.15,0,0.33,0.579,0.579,0,0.393,0
+0.667,0.196,0.196,0,0,0.567,0,0.279,0.579,0.579,0,0.466,0
+0.667,0.192,0.192,0,0,0,0.533,0.284,0.579,0.579,0,0.674,0
+0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.538,0.194
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.227
+0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0743
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.372
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.222
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.0875
+1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.211
+0.667,0.183,0.183,0.917,0,0,0,0.391,0.572,0.572,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.322,0.322,0.167,0,0,0,0.319,0.705,0.705,0,0.106,0
+0.333,0.181,0.181,0.0833,0,0.717,0,0.284,0.591,0.591,0,0.621,0
+0.667,0.311,0.311,0,0,0,0.65,0.347,0.717,0.717,0,0.775,0
+0.667,0.315,0.315,0,0,0,0.7,0.375,0.705,0.705,0,0.335,0.186
+0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.297
+0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.186
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0743
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.112
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0743
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0743
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.297
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.274
+1,0.183,0.183,0.25,0.4,0,0,0.391,0.572,0.572,0.536,0,0
+1,0.192,0.192,0,0.4,0,0,0.33,0.579,0.579,0.531,0,0
+1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0.558,0,0.0372
+1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0.655,0,0.112
+1,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.186
+0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.294
+0.667,0.315,0.315,0,0,0.733,0,0.375,0.705,0.705,0,0.384,0.192
+0.667,0.343,0.343,0,0,0.95,0,0.384,0.73,0.73,0,0,0.0372
+0.667,0.418,0.418,0,0,0,0.517,0.449,0.755,0.755,0,0,0.149
+0.667,0.548,0.548,0,0,0,0.833,0.58,0.805,0.805,0,0,0
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0743
+0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.0951
+0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0372
+0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.492
+0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0
+1,0.0743,0.0743,0.25,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.183,0.183,0.283,0,0,0,0.391,0.572,0.572,0,0,0.162
+0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0827
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248
+0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.148
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.149
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.186
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.186
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0743
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.419
+1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.149
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0744
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.162
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0928
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.149
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0
+0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0
+0.333,0.307,0.307,0.5,0,0,0,0.503,0.604,0.604,0,0,0.284
+0.667,0.43,0.43,0.0167,0,0,0,0.729,0.717,0.717,0,0,0.124
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.464
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0458
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.45,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.15,0.15,0.05,0,0,0,0.374,0.543,0.543,0,0,0.228
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.258
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.142
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.149
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.223
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.372
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.112
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.226
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.158
+1,0.442,0.442,0.95,0,0,0,0.64,0.658,0.658,0,0,0.0372
+1,0.183,0.183,0.583,0,0,0,0.555,0.608,0.608,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156
+1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.122
+1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.438
+0.667,0.181,0.181,0.25,0,0,0,0.392,0.574,0.574,0,0,0.166
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.518
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.19
+0.667,0.328,0.328,0.2,0,0,0,0.311,0.696,0.696,0,0,0.252
+0.667,0.316,0.316,0.567,0,0,0,0.321,0.709,0.709,0,0,0.173
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0743
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.335
+0.333,0.322,0.322,0.25,0,0,0,0.468,0.644,0.644,0,0,0.112
+0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0
+1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0372
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.207
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.192
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.303
+0.333,0.193,0.193,0.383,0,0,0,0.28,0.581,0.581,0,0,0.154
+0.333,0.189,0.189,0.117,0,0,0,0.284,0.581,0.581,0,0,0
+0.333,0.183,0.183,0,0,0.117,0,0.289,0.587,0.587,0,0.22,0.0372
+0.333,0.178,0.178,0,0,0.383,0.0833,0.284,0.593,0.593,0,0.494,0.186
+0.333,0.177,0.177,0,0,0,0.167,0.303,0.593,0.593,0,0.453,0.0372
+0.333,0.178,0.178,0.25,0,0,0,0.317,0.587,0.587,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.112
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0743
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0372
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.149
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.297
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.149
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166
+1,0.313,0.313,0.883,0,0,0,0.527,0.683,0.683,0,0,0.297
+0.667,0.33,0.33,0.383,0,0,0,0.405,0.696,0.696,0,0,0.114
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0372
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0372
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.112
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0743
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.294
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.318
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.284
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.438
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0372
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.139
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.247
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.549
+0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.288
+0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0743
+0.667,0.307,0.307,0,0.6,0,0,0.311,0.721,0.721,0.839,0,0.223
+0.333,0.0495,0.0495,0,0.45,0,0,0.258,0.465,0.465,0.0965,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.143,0,0.223
+0.333,0.0495,0.0495,0.2,0.783,0,0,0.258,0.465,0.465,0.594,0,0.223
+0.667,0.322,0.322,0.3,0,0,0,0.468,0.644,0.644,0,0,0
+0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0
+0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0743
+0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0743
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0867
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0
+0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372
+0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.26
+0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.195
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372
+0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.354
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.349
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0692
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.227
+0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.125
+0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.186
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.149
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0
+0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0743
+0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.223
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.108
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.158
+0.333,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.309
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.231
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.306
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0
+1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.223
+0.667,0.313,0.313,0.5,0,0,0,0.527,0.683,0.683,0,0,0.149
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.511
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.417
+0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.372
+0.667,0.316,0.316,0.25,0,0,0,0.321,0.709,0.709,0,0,0.112
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0372
+0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.219
+0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.0743
+0.667,0.466,0.466,0.2,0,0,0,0.584,0.809,0.809,0,0,0
+0.667,0.595,0.595,0.05,0,0,0,0.677,0.822,0.822,0,0,0.149
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.0743
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.231
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.186
+0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0.2,0,0,0,0.327,0.511,0.511,0,0,0
+1,0.0829,0.0829,0.567,0,0,0,0.341,0.518,0.518,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.168
+0.667,0.307,0.307,0,0,0.25,0,0.377,0.709,0.709,0,0.219,0.296
+0.667,0.322,0.322,0,0,0,0.65,0.386,0.734,0.734,0,0.722,0.116
+0.667,0.367,0.367,0,0,0,0.917,0.452,0.759,0.759,0,0.569,0.284
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.424,0.107
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.318,0.0743
+0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149
+0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372
+0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.149
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.187
+0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.188
+1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0511
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.291
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.275
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.281
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.335
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.0743
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.112
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0489
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.463
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0466
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0847
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.187
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0
+0.333,0.183,0.183,0.383,0,0,0,0.289,0.587,0.587,0,0,0.112
+0.667,0.307,0.307,0.117,0,0,0,0.311,0.721,0.721,0,0,0.112
+0.667,0.305,0.305,0.25,0,0,0,0.349,0.721,0.721,0,0,0.186
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.112
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0372
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.0743
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.297
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.112
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0743
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0
+1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0
+1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0829,0.0829,0.817,0,0,0,0.341,0.518,0.518,0,0,0.112
+1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.352
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.236
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.124
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0743
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.67,0.67,0.05,0,0,0,0.715,0.784,0.784,0,0,0.112
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743
+0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0172
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123
+0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.186
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0743
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.0743
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.223
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.149
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,0,0.35,0.433,0,0.303,0.593,0.593,0.503,0.373,0.112
+0.333,0.178,0.178,0,0.433,0.0667,0.25,0.317,0.587,0.587,0,0.472,0.0372
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.569,0.0372
+0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0.112
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0372
+0.667,0.595,0.595,0.45,0,0,0,0.677,0.822,0.822,0,0,0
+0.667,0.67,0.67,0.05,0,0,0,0.715,0.784,0.784,0,0,0.112
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0372
+0.667,0.501,0.501,0,0,0.25,0,0.734,0.721,0.721,0,0.0627,0.348
+1,0.442,0.442,0,0,0,0.65,0.64,0.658,0.658,0,0,0.318
+1,0.0495,0.0495,0,0,0,0.667,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.38
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.202
+1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.389
+1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.452
+1,0.337,0.337,0.2,0,0,0,0.302,0.696,0.696,0,0,0.377
+0.667,0.328,0.328,0.3,0,0,0,0.311,0.696,0.696,0,0,0.149
+0.333,0.183,0.183,0.2,0,0,0,0.289,0.587,0.587,0,0,0.112
+0.667,0.307,0.307,0.567,0,0,0,0.311,0.721,0.721,0,0,0.0372
+0.667,0.305,0.305,0.2,0,0,0,0.349,0.721,0.721,0,0,0.0372
+0.333,0.178,0.178,0.3,0,0,0,0.317,0.587,0.587,0,0,0.297
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.112
+0.333,0.258,0.258,0.767,0,0,0,0.421,0.637,0.637,0,0,0.399
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0992
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.171
+0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372
+0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.173
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.251,0.251,0.25,0,0,0,0.49,0.621,0.621,0,0,0.149
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.254
+0.333,0.189,0.189,0.2,0,0,0,0.284,0.581,0.581,0,0,0.0743
+0.333,0.183,0.183,1,0,0,0,0.289,0.587,0.587,0,0,0.112
+0.333,0.178,0.178,1,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0.0372
+0.333,0.178,0.178,0.133,0,0,0,0.317,0.587,0.587,0,0,0.112
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0372
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.294
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.387
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.185
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.404
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.302
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0.3,0,0,0,0.374,0.543,0.543,0,0,0.118
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.111
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.124
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.149
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.186
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.26
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.112
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.26
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.223
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.116
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.223
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.112
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.112
+0.667,0.322,0.322,0.25,0,0,0,0.386,0.734,0.734,0,0,0.0372
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.223
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.223
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0743
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.147,0,0.0743
+0.667,0.625,0.625,0,0.783,0,0,0.753,0.746,0.746,0.401,0,0.0743
+0.667,0.501,0.501,0,0.267,0,0,0.734,0.721,0.721,0,0,0.0372
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.157
+0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.107
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.306
+1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.105
+0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.57
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.424
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.383
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168
+0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.185
+0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.0743
+0.333,0.36,0.36,0.767,0,0,0,0.486,0.625,0.625,0,0,0.149
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0823
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.213
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.244
+1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.151
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.112
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.368
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.366
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.225
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.124
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0.1,0,0,0.258,0.465,0.465,0.306,0,0.186
+1,0.526,0.526,0,0.95,0,0,0.549,0.906,0.906,0.724,0,0.0372
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.49,0,0.0743
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0743
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.112
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0
+0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.412
+0.667,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0513,0.0513,0.25,0,0,0,0.327,0.511,0.511,0,0,0.201
+1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.195
+1,0.351,0.351,0,0,0.25,0,0.606,0.698,0.698,0,0.398,0.347
+1,0.444,0.444,0,0,0,0.65,0.662,0.792,0.792,0,0.534,0.0718
+0.333,0.19,0.19,0,0,0,0.667,0.331,0.581,0.581,0,0.728,0.112
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.748,0
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.338,0.0372
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.616,0.0743
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.714,0.0852
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.578,0.0743
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.433,0.0372
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743
+0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.217
+0.333,0.258,0.258,0.3,0,0,0,0.421,0.637,0.637,0,0,0.223
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.0743
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.165
+0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.537
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0867
+0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0978
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.454
+0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.161
+0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.273
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.228
+0.333,0.178,0.178,0.2,0.6,0.183,0,0.284,0.593,0.593,0.848,0.295,0.112
+0.667,0.305,0.305,0.05,0.183,0.0667,0.25,0.349,0.721,0.721,0,0.599,0.0767
+1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.208
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.149
+0.667,0.367,0.367,0.45,0,0,0,0.452,0.759,0.759,0,0,0.112
+1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0.0372
+0.667,0.595,0.595,0.0833,0,0,0,0.677,0.822,0.822,0,0,0
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.46
+0.667,0.625,0.625,0,0,0.25,0,0.753,0.746,0.746,0,0.0841,0.0372
+1,0.727,0.727,0,0,0,0.65,0.972,0.849,0.849,0,0,0
+1,0.638,0.638,0,0,0,0.917,0.831,0.755,0.755,0,0,0.295
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.389
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.108
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.328
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0.683,0,0.258,0.465,0.465,0,0.462,0.0743
+0.333,0.186,0.186,0,0,1,0,0.322,0.6,0.6,0,0.737,0.26
+0.333,0.208,0.208,0,0,0.0833,0.25,0.355,0.612,0.612,0,0.576,0
+0.333,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0.378,0
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0372
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0743
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.112
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.305
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.284
+0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.234
+0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.48
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.1
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.249
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.372
+0.333,0.186,0.186,0.25,0,0,0,0.322,0.6,0.6,0,0,0.112
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372
+0.333,0.258,0.258,0,0,0.5,0,0.421,0.637,0.637,0,0.687,0.0372
+0.333,0.322,0.322,0,0,0,0.25,0.468,0.644,0.644,0,0.453,0.483
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0.474,0.297
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0.336,0.149
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0.43,0
+1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0525
+1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.258
+1,0.099,0.099,0.5,0,0.367,0,0.461,0.595,0.595,0,0.353,0.0642
+1,0.066,0.066,0,0,0.383,0.0833,0.433,0.57,0.57,0,0.656,0
+1,0.0495,0.0495,0,0,0,1,0.346,0.511,0.511,0,0.131,0
+1,0.0495,0.0495,0,0,0,0.483,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0
+1,0.0829,0.0829,0.383,0,0,0,0.341,0.518,0.518,0,0,0.223
+1,0.15,0.15,0.117,0,0,0,0.374,0.543,0.543,0,0,0
+1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.183
+1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.329
+1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.109
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.0965,0,0.0743
+0.667,0.466,0.466,0,0.783,0,0,0.584,0.809,0.809,0.764,0,0
+0.667,0.595,0.595,0,0.267,0,0,0.677,0.822,0.822,0,0,0.112
+0.333,0.36,0.36,0.633,0,0,0,0.486,0.625,0.625,0,0,0.169
+1,0.913,0.913,0.383,0,0,0,1,0.887,0.887,0,0,0.215
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.197
+1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.206
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.133
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0516
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.281
+1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.174
+1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.536
+0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.138
+0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.37
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.428
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.646
+0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.187
+0.667,0.186,0.186,0.383,0,0,0,0.322,0.6,0.6,0,0,0.0743
+0.667,0.208,0.208,0.117,0,0,0,0.355,0.612,0.612,0,0.164,0.0372
+0.667,0.466,0.466,0,0,0.25,0.0833,0.584,0.809,0.809,0,0.37,0.0372
+0.667,0.595,0.595,0,0,0,0.167,0.677,0.822,0.822,0,0,0.112
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.1,0,0
+0.667,0.625,0.625,0,0.783,0,0,0.753,0.746,0.746,0.822,0,0.0372
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0.59,0,0.186
+0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0.772,0,0.0372
+0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.536,0.208,0
+0.667,0.0743,0.0743,0,0,0.567,0,0.36,0.53,0.53,0,0.494,0.0372
+0.667,0.0578,0.0578,0,0,0,0.783,0.346,0.518,0.518,0,0.344,0
+1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0.778,0
+1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0.528,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.28
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.149
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.223
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.26
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0743
+0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.186
+1,0.246,0.246,0.5,0,0,0,0.449,0.562,0.562,0,0,0.0372
+1,0.116,0.116,0,0,0.183,0,0.407,0.537,0.537,0,0.265,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0.35,0,0,0.258,0.465,0.465,0.163,0,0.147
+1,0.313,0.313,0,0.7,0,0,0.527,0.683,0.683,0,0,0.16
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.112
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.186
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.223
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0
+0.667,0.307,0.307,0.25,0,0,0,0.377,0.709,0.709,0,0,0.196
+0.667,0.322,0.322,0,0.6,0,0,0.386,0.734,0.734,0.842,0,0.0743
+0.667,0.367,0.367,0,0.183,0,0,0.452,0.759,0.759,0,0,0
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.149
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.112
+0.667,0.67,0.67,0,0.1,0,0,0.715,0.784,0.784,0.312,0,0.0372
+1,0.913,0.913,0,0.95,0,0,1,0.887,0.887,0.601,0,0.0376
+1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0683
+1,0.15,0.15,0.45,0,0,0,0.374,0.543,0.543,0,0,0.159
+1,0.181,0.181,0.317,0,0,0,0.392,0.574,0.574,0,0,0.145
+1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.556
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.231
+0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.418
+0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.109
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.26
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0372
+0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.16
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.195
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.226
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.238
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.29
+0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.223
+0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.113
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0743
+0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0
+0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0.112
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.477
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.36
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.328
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.411
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.546
+0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.295
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.534
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.385
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.128,0,0.0372
+1,0.426,0.426,0,0.9,0,0,0.278,0.656,0.656,0.573,0,0.0372
+0.667,0.292,0.292,0,0.117,0,0,0.264,0.602,0.602,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.149
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.149
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.202
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.407
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.339
+0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.446
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0816,0.0816,0.233,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.0743
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0941
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.304
+0.667,0.312,0.312,0.333,0,0,0,0.264,0.582,0.582,0,0,0.0884
+0.667,0.3,0.3,0.15,0,0,0,0.271,0.592,0.592,0,0,0.132
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.153
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.584
+0.333,0.17,0.17,0,0.233,0,0,0.287,0.529,0.529,0.583,0,0.124
+0.667,0.298,0.298,0,0.533,0,0,0.323,0.612,0.612,0.692,0,0.26
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.43,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.331,0.331,0.0833,0,0,0,0.42,0.559,0.559,0,0,0
+0.667,0.635,0.635,0.4,0,0,0,0.613,0.622,0.622,0,0,0.15
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0743
+0.667,0.185,0.185,0.0833,0,0,0,0.257,0.524,0.524,0,0,0.163
+0.667,0.312,0.312,0.15,0,0,0,0.264,0.582,0.582,0,0,0.0721
+1,0.426,0.426,0.483,0,0,0,0.278,0.656,0.656,0,0,0.217
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0546
+1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.364
+1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.26
+1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0372
+1,0.326,0.326,0.0833,0,0,0,0.375,0.632,0.632,0,0,0.292
+1,0.395,0.395,0.633,0,0,0,0.479,0.672,0.672,0,0,0.193
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.149
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.149
+0.667,0.635,0.635,0,0.733,0,0,0.613,0.622,0.622,0.774,0,0.262
+0.667,0.555,0.555,0,0.0333,0,0,0.598,0.602,0.602,0,0,0.0773
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.335
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.252
+0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.116
+0.333,0.177,0.177,0.967,0,0,0,0.346,0.519,0.519,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.186
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0.112
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.149
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.138
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.583
+0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.336
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.159
+0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.113
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.145
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.315
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.274
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.169,0.169,0.75,0,0,0,0.276,0.534,0.534,0,0,0.0372
+1,0.41,0.41,0.217,0,0,0,0.345,0.656,0.656,0,0,0
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0743
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.186
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.313
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.266
+0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.494
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.401
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.239
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0706
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.187
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.137
+1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.26
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.254
+0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.194
+0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.172
+0.333,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.176,0.0743
+0.667,0.289,0.289,0.233,0,0.25,0.217,0.294,0.602,0.602,0,0.619,0.0743
+1,0.41,0.41,0,0,0,1,0.345,0.656,0.656,0,0.638,0.48
+1,0.422,0.422,0,0,0,0.333,0.356,0.686,0.686,0,0.615,0
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.437,0
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.463,0.186
+0.667,0.507,0.507,0.25,0,0,0,0.553,0.682,0.682,0,0.00917,0
+0.667,0.613,0.613,0.233,0,0,0,0.583,0.652,0.652,0.148,0,0.223
+0.667,0.635,0.635,0,0.9,0,0,0.613,0.622,0.622,0.538,0,0.112
+0.667,0.555,0.555,0,0.117,0,0,0.598,0.602,0.602,0,0,0.0743
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0743
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0654
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.147,0.147,0.483,0,0.233,0,0.331,0.494,0.494,0,0.411,0
+0.667,0.305,0.305,0,0,0,0.967,0.435,0.572,0.572,0,0.339,0.32
+0.667,0.318,0.318,0,0,0,0.583,0.338,0.582,0.582,0,0.106,0.174
+0.333,0.185,0.185,0,0,0.233,0,0.257,0.524,0.524,0,0.489,0.334
+0.333,0.181,0.181,0,0,0,0.25,0.261,0.524,0.524,0,0.56,0.0743
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.537,0.149
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.664,0.0743
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.567,0.0372
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.131,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.343
+0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.112
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.186
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.149
+0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.149
+0.333,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.117
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.147,0.147,0.483,0,0,0,0.331,0.494,0.494,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.278,0
+0.333,0.181,0.181,0,0,1,0,0.261,0.524,0.524,0,0.384,0.0372
+0.333,0.175,0.175,0,0,0,0.467,0.265,0.529,0.529,0,0.339,0
+0.333,0.171,0.171,0,0,0,0.05,0.261,0.534,0.534,0,0.347,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.174,0.174,0.233,0,0,0,0.29,0.539,0.539,0,0,0.297
+0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.507,0.507,0,0.15,0,0,0.553,0.682,0.682,0.393,0,0.112
+0.333,0.331,0.331,0,0.35,0,0,0.42,0.559,0.559,0.382,0,0.149
+0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.125
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.301
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0858
+0.667,0.185,0.185,0.333,0,0,0,0.257,0.524,0.524,0,0,0.255
+0.333,0.181,0.181,0.15,0,0,0,0.261,0.524,0.524,0,0,0.0168
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.224
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0496
+0.333,0.169,0.169,0.0833,0.233,0,0,0.276,0.534,0.534,0.419,0,0.305
+0.667,0.17,0.17,0.4,0.533,0,0,0.287,0.529,0.529,0.165,0,0.0743
+0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.112
+0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.26
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.149
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.176
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.0372
+0.667,0.635,0.635,0.333,0,0,0,0.613,0.622,0.622,0,0,0.112
+0.667,0.555,0.555,0.15,0,0,0,0.598,0.602,0.602,0,0,0.07
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.112
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.171
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.248
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.154
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.279
+1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.316
+1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.302
+1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.248
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.14
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.552
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112
+0,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.174,0.174,0.4,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0372
+0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.38
+0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0897
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.186
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.112
+0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0743
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0372
+1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.149
+1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.196
+0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.408
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.193
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.311
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0
+1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.26
+0.667,0.395,0.395,0.717,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0372
+0.667,0.613,0.613,0,0,0.233,0,0.583,0.652,0.652,0,0.318,0.0372
+0.667,0.635,0.635,0,0,0.75,0,0.613,0.622,0.622,0,0,0.0372
+0.667,0.555,0.555,0,0,0,0.717,0.598,0.602,0.602,0,0,0.0372
+0.667,0.2,0.2,0,0,0,0.317,0.391,0.509,0.509,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0983
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.145
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.383
+0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.614
+0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.141
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.169
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.272
+0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.313
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.131
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.227
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.226
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.219
+1,0.895,0.895,0.967,0,0,0,0.745,0.745,0.745,0,0,0.309
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0372
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.175
+1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.713
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0.233,0,0,0,0.305,0.464,0.464,0,0,0.132
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.28
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.115
+1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.667,0.312,0.312,0.483,0,0,0,0.264,0.582,0.582,0,0,0.26
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.149
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.19
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.456
+0.333,0.17,0.17,0.233,0,0,0,0.287,0.529,0.529,0,0,0.148
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.297
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.1
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.278,0.278,0,0.4,0,0,0.405,0.574,0.574,0.599,0,0
+0.333,0.331,0.331,0,0.367,0,0,0.42,0.559,0.559,0.139,0,0.112
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.406
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.312
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.108
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.162
+1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.249
+0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.215
+0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.112
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.158,0,0
+0.333,0.171,0.171,0,0.9,0,0,0.261,0.534,0.534,0.473,0,0.223
+0.333,0.169,0.169,0.233,0.117,0,0,0.276,0.534,0.534,0,0,0.112
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.112
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0743
+1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.279
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.259
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.158
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.313
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.112
+0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0934
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.232
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.223
+0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.667,0.169,0.169,0.483,0,0,0,0.276,0.534,0.534,0,0,0.112
+0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372
+0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.308
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0372
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.372
+0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.149
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.125
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.223
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.238
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.148
+0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.249
+0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.07
+0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.0372
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.186
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.149
+0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0743
+0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0743
+0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.128
+0.333,0.188,0.188,0.333,0,0,0,0.316,0.549,0.549,0,0,0.233
+0.667,0.395,0.395,0.15,0,0,0,0.479,0.672,0.672,0,0,0.511
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.409
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0
+0.667,0.635,0.635,0,0.233,0.483,0,0.613,0.622,0.622,0.356,0.427,0.372
+1,0.807,0.807,0,0.783,0,0.8,0.768,0.671,0.671,0.607,0,0.268
+1,0.5,0.5,0,0,0,0.233,0.656,0.596,0.596,1,0,0.142
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.406,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0954
+1,0.318,0.318,0,0,0.567,0,0.338,0.582,0.582,0,0.0612,0.1
+0.667,0.321,0.321,0,0,0.167,0.3,0.257,0.582,0.582,0,0,0.168
+0.333,0.181,0.181,0,0,0,1,0.261,0.524,0.524,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0.25,0.258,0.465,0.465,0,0,0.186
+0.333,0.171,0.171,0,0,0.0667,0,0.261,0.534,0.534,0,0.0489,0.0372
+0.333,0.169,0.169,0,0,0.417,0.05,0.276,0.534,0.534,0,0.55,0.0372
+0.333,0.17,0.17,0,0,0,0.2,0.287,0.529,0.529,0,0.404,0.195
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.555,0.312
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.569,0.431
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.609,0.0776
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.3,0.332
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.283,0.505
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.297
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0743
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.274
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0983
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.283
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.126
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0633
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.297
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.326,0.326,0.5,0,0,0,0.375,0.632,0.632,0,0,0.328
+0.333,0.222,0.222,0.467,0,0,0,0.368,0.569,0.569,0,0,0.0372
+0.333,0.278,0.278,0.75,0,0,0,0.405,0.574,0.574,0,0,0.112
+0.667,0.613,0.613,0.217,0,0,0,0.583,0.652,0.652,0,0,0.297
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0743
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.157
+0.333,0.177,0.177,0.233,0,0,0,0.346,0.519,0.519,0,0,0.118
+0.333,0.184,0.184,0.717,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0743
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.112
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0743
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.181
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.387
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0372
+0.333,0.188,0.188,0.483,0,0,0,0.316,0.549,0.549,0,0,0.335
+0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0372
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.149
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0372
+0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.361
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.717,0,0,0,0.305,0.464,0.464,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.28
+0.667,0.318,0.318,0.483,0,0,0,0.338,0.582,0.582,0,0,0.252
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0531
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0372
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.223
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0372
+0.667,0.395,0.395,0.483,0,0,0,0.479,0.672,0.672,0,0,0.149
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0743
+0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.112
+0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.41
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0969
+0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.319
+0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.306
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.206
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.372
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.16
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.171
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.463
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.12
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.122,0,0.347
+0.667,0.395,0.395,0,0.9,0,0,0.479,0.672,0.672,0.751,0,0.571
+0.667,0.507,0.507,0,0.117,0,0,0.553,0.682,0.682,0.72,0,0.0744
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.475,0,0.0372
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.724,0,0.223
+0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0.724,0,0
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.288,0,0.13
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.332
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0855
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.245,0.245,0.233,0,0,0,0.405,0.523,0.523,0,0,0.266
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.264
+1,0.318,0.318,0,0.15,0,0,0.338,0.582,0.582,0.419,0,0.0925
+1,0.456,0.456,0,0.35,0,0,0.256,0.641,0.641,0.57,0,0.096
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.162
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0.117,0,0.186
+0.667,0.289,0.289,0,0.9,0,0,0.294,0.602,0.602,0.577,0,0.186
+0.667,0.29,0.29,0,0.117,0,0,0.316,0.592,0.592,0,0,0.0372
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.149
+0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.149
+0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.25
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0738
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.255
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.257
+1,0.35,0.35,0.233,0,0,0,0.524,0.553,0.553,0,0,0.149
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.112
+1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.0372
+1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.181
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.157
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0.258,0,0
+0.333,0.169,0.169,0,0.983,0,0,0.276,0.534,0.534,0.455,0,0.112
+0.333,0.17,0.17,0.233,0.0333,0,0,0.287,0.529,0.529,0.885,0,0
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0.18,0,0.0372
+1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.0743
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.223
+0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.149
+0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.26
+0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.0372
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.131
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.427
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.323
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.237
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.127
+0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0
+0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.485
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.19
+1,0.567,0.567,0.333,0,0,0,0.59,0.775,0.775,0,0,0.186
+0.667,0.507,0.507,0.383,0,0,0,0.553,0.682,0.682,0,0,0.296
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.335
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0712
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0
+0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.16
+0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.016
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+0.667,0.177,0.177,0.483,0,0,0,0.346,0.519,0.519,0,0,0.0832
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.112
+0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0372
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.186
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.174,0.174,0,0,0.733,0,0.29,0.539,0.539,0,0.457,0
+0.667,0.326,0.326,0,0,0,0.467,0.375,0.632,0.632,0,0.445,0.0372
+0.667,0.395,0.395,0,0.4,0,0.05,0.479,0.672,0.672,0.737,0.0352,0.297
+0.667,0.507,0.507,0.233,0.617,0,0,0.553,0.682,0.682,0.777,0,0
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.282,0,0.26
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.26
+0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.26
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0.483,0,0.305,0.474,0.474,0,0.462,0.17
+1,0.147,0.147,0,0,0,0.717,0.331,0.494,0.494,0,0.483,0.473
+0.667,0.305,0.305,0,0,0,0.317,0.435,0.572,0.572,0,0.595,0
+0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0.304,0
+0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.347,0.26
+0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0372
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.102
+0.667,0.292,0.292,0,0,0.233,0,0.264,0.602,0.602,0,0.488,0.0743
+0.333,0.169,0.169,0,0,0,0.517,0.276,0.534,0.534,0,0.815,0.0372
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.445,0.26
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.186
+0.667,0.395,0.395,0.233,0.4,0,0,0.479,0.672,0.672,0.473,0,0.166
+0.667,0.278,0.278,0,0.367,0,0,0.405,0.574,0.574,0.0909,0,0.462
+1,0.895,0.895,0,0,0.483,0,0.745,0.745,0.745,0,0.206,0.419
+1,0.928,0.928,0,0,0,0.717,0.79,0.701,0.701,0,0,0.314
+1,0.555,0.555,0,0,0,0.05,0.598,0.602,0.602,0,0,0.075
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.119
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0858
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0846
+0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.149
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0
+0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.112
+0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0743
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0
+0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.276
+0.667,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.202
+1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0,0.181
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.368
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0648
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.051,0.051,0.483,0,0,0,0.294,0.469,0.469,0,0,0.318
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.138
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.667,0.326,0.326,0.5,0,0,0,0.375,0.632,0.632,0,0,0.327
+0.667,0.395,0.395,0.217,0,0,0,0.479,0.672,0.672,0,0,0.0372
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0743
+1,0.895,0.895,0.233,0,0,0,0.745,0.745,0.745,0,0,0.0372
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.149
+0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.309
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.131
+1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.0893
+1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.195
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.112
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.149
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0743
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0372
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.26
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.112
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.26
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0372
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.231
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.195
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.356
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+1,0.184,0.184,0.333,0,0,0,0.298,0.524,0.524,0,0,0
+1,0.321,0.321,0.15,0,0,0,0.257,0.582,0.582,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0372
+1,0.426,0.426,0,0,0.233,0,0.278,0.656,0.656,0,0.479,0.254
+0.333,0.171,0.171,0,0,0,0.517,0.261,0.534,0.534,0,0.312,0.112
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.317,0.372
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.0887,0.223
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743
+0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.223
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.415
+0.333,0.331,0.331,0.233,0,0,0,0.42,0.559,0.559,0,0,0.338
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.326
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.247
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.063
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.44
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0978
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0729
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112
+0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149
+1,0.274,0.274,0.467,0,0,0,0.374,0.63,0.63,0,0,0.223
+1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.112
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0743
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.26
+1,0.783,0.783,0,0.2,0,0,0.787,0.698,0.698,0.451,0,0
+1,0.88,0.88,0,0.783,0,0,0.765,0.668,0.668,0.759,0,0
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.79,0,0.478
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0.618,0,0.236
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.453,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0.5,0,0,0,0.331,0.493,0.493,0,0,0.158
+1,0.417,0.417,0.2,0,0,0,0.521,0.623,0.623,0,0,0.41
+1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.167
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.19
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.215
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.159,0.159,0,0,0.25,0,0.275,0.533,0.533,0,0.401,0.0743
+0.333,0.159,0.159,0,0,0,0.7,0.286,0.528,0.528,0,0.277,0
+0.333,0.159,0.159,0,0,0,0.783,0.29,0.538,0.538,0,0.416,0.0651
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0.401,0.227
+1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0.763,0.104
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0.739,0.329
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.595,0.149
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.453,0
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.381
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.534
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.172
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.261
+1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.199
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.246
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.637
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.297
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.112
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.112
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149
+0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.114
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.174
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.254
+0.667,0.295,0.295,0,0,0.233,0,0.433,0.571,0.571,0,0.242,0.363
+0.667,0.301,0.301,0,0,0.533,0,0.337,0.581,0.581,0,0.546,0.0969
+1,0.424,0.424,0,0,0,0.233,0.255,0.638,0.638,0,0.159,0.243
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.112
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.186
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0.0372
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.0743
+0.333,0.194,0.194,0,0,0.733,0,0.405,0.572,0.572,0,0.648,0.112
+0.333,0.239,0.239,0,0,0.55,0,0.419,0.558,0.558,0,0.419,0.112
+0.333,0.294,0.294,0,0,0,0.917,0.434,0.543,0.543,0,0.0749,0.339
+0.667,0.603,0.603,0.25,0,0,0.317,0.596,0.6,0.6,0,0,0.234
+1,0.415,0.415,0.45,0,0,0,0.522,0.551,0.551,0,0,0.231
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.172
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.183
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0852
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0835
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0864
+0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.138
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.24
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.164,0.164,0.233,0,0,0,0.264,0.528,0.528,0,0,0.112
+0.667,0.271,0.271,0.467,0,0,0,0.263,0.6,0.6,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0932
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.248
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.479
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.517
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0743
+0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0645
+1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.206
+0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.182
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.149
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0372
+1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.297
+1,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0
+0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0372
+0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0372
+1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149
+1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.159
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.428
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.298
+0.333,0.17,0.17,0.467,0,0,0,0.26,0.523,0.523,0,0,0.149
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.297
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0
+0.333,0.162,0.162,0.05,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.17,0.17,0.417,0,0,0,0.368,0.568,0.568,0,0,0.0743
+0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.223
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.362
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.188
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.432
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.115
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.354
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.281,0,0.151
+0.667,0.299,0.299,0,0.733,0,0,0.256,0.581,0.581,0.353,0,0.112
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.245
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.248
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.297
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.186
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0372
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.149
+0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.223
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.297
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.149
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0
+0.667,0.603,0.603,0,0,0.517,0,0.596,0.6,0.6,0,0.428,0
+0.667,0.415,0.415,0,0,0,0.483,0.522,0.551,0.551,0,0.391,0.0743
+1,0.183,0.183,0,0,0,0.75,0.455,0.511,0.511,0,0.119,0
+0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+0.667,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.116
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.102
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.238
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0.5,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0.2,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.149
+0.667,0.339,0.339,0,0.4,0,0,0.551,0.68,0.68,0.562,0,0.385
+0.667,0.429,0.429,0,0.583,0,0,0.581,0.65,0.65,0.226,0,0.283
+0.667,0.538,0.538,0.233,0,0,0,0.61,0.62,0.62,0,0,0.477
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0659
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.262
+1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.182
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0858
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0743
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0372
+0.333,0.16,0.16,0.467,0,0.233,0,0.26,0.533,0.533,0,0.211,0.112
+0.667,0.269,0.269,0,0,0.0167,0.45,0.293,0.6,0.6,0,0.226,0.112
+0.667,0.268,0.268,0,0,0,0.533,0.315,0.591,0.591,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.223
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.194,0.194,0.7,0,0,0,0.405,0.572,0.572,0,0,0
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.149
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.376
+0.667,0.415,0.415,0.5,0,0,0,0.522,0.551,0.551,0,0,0.384
+1,0.116,0.116,0.2,0,0,0,0.357,0.488,0.488,0,0,0.186
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.22
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.349
+1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.45
+1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.202
+1,0.394,0.394,0.233,0,0,0,0.277,0.653,0.653,0,0,0.243
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.186
+0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.112
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0794
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0372
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.149
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.186
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.186
+0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0372
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158
+1,0.295,0.295,0.25,0,0,0,0.433,0.571,0.571,0,0,0.0543
+0.667,0.301,0.301,0.45,0,0,0,0.337,0.581,0.581,0,0,0.168
+1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.252
+1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.117
+1,0.394,0.394,0.233,0.4,0,0,0.277,0.653,0.653,0.484,0,0.201
+0.667,0.271,0.271,0,0.583,0,0,0.263,0.6,0.6,0.727,0,0.194
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.338,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.269,0.269,0.467,0,0,0,0.322,0.61,0.61,0,0,0
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0
+1,0.484,0.484,0.233,0,0,0,0.698,0.787,0.787,0,0,0.112
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372
+0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.357
+0.667,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.37
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.186
+0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.252
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.2
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.213
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.297
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.186
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.26
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.297
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.103
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.499
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.204
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.44
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.217
+0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.178
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.18
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+1,0.175,0.175,0.05,0,0,0,0.297,0.523,0.523,0,0,0.0788
+1,0.299,0.299,0.183,0,0,0,0.256,0.581,0.581,0,0,0.216
+1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.292
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.706
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.192
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.197
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.223
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743
+0.333,0.17,0.17,0.55,0,0,0,0.368,0.568,0.568,0,0,0.149
+0.333,0.194,0.194,0.383,0,0,0,0.405,0.572,0.572,0,0,0.186
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.112
+0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.112
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743
+0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.137
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.39
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.251
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.163
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.333
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.26
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.409
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.372
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0372
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.223
+0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.106
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.11,0.11,0.233,0,0,0,0.352,0.482,0.482,0,0,0
+1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.201
+1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.231
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0496
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.335
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.112
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.112
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.186
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.339,0.339,0.75,0,0,0,0.551,0.68,0.68,0,0,0.149
+0.667,0.429,0.429,0.417,0,0,0,0.581,0.65,0.65,0,0,0.0743
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0743
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.112
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.194
+1,0.295,0.295,0.2,0,0,0,0.433,0.571,0.571,0,0,0.339
+1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.118
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.149
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.112
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372
+0.333,0.159,0.159,0,0.4,0,0,0.286,0.528,0.528,0.506,0,0.0743
+0.333,0.159,0.159,0,0.583,0,0,0.29,0.538,0.538,0.135,0,0
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.147
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.193
+0.333,0.194,0.194,0.467,0,0.733,0,0.405,0.572,0.572,0,0.485,0.0743
+1,0.619,0.619,0,0,0.0333,0.433,0.742,0.742,0.742,0,0.728,0.149
+0.667,0.538,0.538,0,0,0,0.55,0.61,0.62,0.62,0,0.704,0
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0.585,0.0743
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.758,0.299
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.661,0.0721
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0.791,0.0372
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0.382,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0.511,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.512,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.33,0.33,0.233,0,0,0,0.477,0.549,0.549,0,0,0.202
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.351
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.104
+1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.096
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.267
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0863
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.109,0,0.0372
+0.333,0.159,0.159,0,0.733,0,0,0.286,0.528,0.528,0.362,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.14
+1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.2
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.273
+0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.112
+0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.173
+0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0983
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0372
+0.333,0.16,0.16,0.467,0,0,0,0.26,0.533,0.533,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.186
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.199
+1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.187
+1,0.412,0.412,0,0,0.483,0,0.587,0.772,0.772,0,0.106,0.377
+0.667,0.339,0.339,0,0,0.0333,0.433,0.551,0.68,0.68,0,0,0.264
+0.667,0.429,0.429,0,0,0,0.3,0.581,0.65,0.65,0,0,0.533
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.682
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.22
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.223
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.112
+0.667,0.164,0.164,0,0.4,0,0,0.264,0.528,0.528,0.34,0,0.149
+0.667,0.271,0.271,0.467,0.333,0,0,0.263,0.6,0.6,0,0,0.171
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.28
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0788
+0.667,0.269,0.269,0.233,0,0,0,0.322,0.61,0.61,0,0,0.295
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743
+1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.112
+0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.149
+0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.186
+0.667,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0.119,0,0.112
+0.667,0.603,0.603,0,0.733,0,0,0.596,0.6,0.6,0.529,0,0.534
+0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0166
+0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.149
+0.667,0.291,0.291,0.233,0,0,0,0.477,0.67,0.67,0,0,0
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.26
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.112
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.175,0.175,0,0,0.283,0,0.297,0.523,0.523,0,0.191,0.362
+1,0.299,0.299,0,0,0.233,0.233,0.256,0.581,0.581,0,0.344,0.143
+0.333,0.0495,0.0495,0,0,0,0.5,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.147
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.295
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.164
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.154
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743
+0.667,0.291,0.291,0.05,0,0,0,0.477,0.67,0.67,0,0,0.112
+0.667,0.339,0.339,0.417,0,0,0,0.551,0.68,0.68,0,0,0.146
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.223
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.304
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.312
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.184
+1,0.0743,0.0743,0,0.4,0,0,0.32,0.483,0.483,0.614,0,0.0372
+1,0.0578,0.0578,0,0.333,0,0,0.308,0.474,0.474,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.226
+0.667,0.143,0.143,0,0,0.733,0,0.331,0.493,0.493,0,0.593,0.159
+0.667,0.172,0.172,0,0,0.3,0.167,0.345,0.518,0.518,0,0.796,0
+0.667,0.301,0.301,0,0,0,1,0.337,0.581,0.581,0,0.328,0.0743
+0.667,0.299,0.299,0,0,0,0.317,0.256,0.581,0.581,0,0,0.0743
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.112
+0.333,0.159,0.159,0.233,0,0,0,0.275,0.533,0.533,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.186
+0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.112
+0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0372
+0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0372
+0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.256
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.113
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.226
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0703
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.211
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.2
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.174,0.174,0.233,0,0,0,0.257,0.523,0.523,0,0,0
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.112
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.149
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.286
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.155
+0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.223
+0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0743
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.223
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.112
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.226
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.144
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.131
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.309
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.223
+0.333,0.17,0.17,0.5,0,0,0,0.26,0.523,0.523,0,0,0.149
+0.333,0.164,0.164,0.2,0,0,0,0.264,0.528,0.528,0,0,0.223
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.149
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0372
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.186
+0.667,0.339,0.339,0.5,0,0,0,0.551,0.68,0.68,0,0,0.112
+0.667,0.429,0.429,0.433,0,0,0,0.581,0.65,0.65,0,0,0.149
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.339
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.127
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0
+1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.238
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.28
+0.667,0.172,0.172,0.233,0,0,0,0.345,0.518,0.518,0,0,0.0566
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.106
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.149
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.223
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.112
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.169
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.258
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0528
+0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.143,0.143,0.467,0,0,0,0.331,0.493,0.493,0,0,0.149
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0743
+0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.266
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.107
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0372
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.0372
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0.16,0,0
+0.667,0.429,0.429,0,0.9,0,0,0.581,0.65,0.65,0.675,0,0.0743
+0.667,0.538,0.538,0,0.0833,0,0,0.61,0.62,0.62,0,0,0.453
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.483
+0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.173
+0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.242
+0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.354
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.101
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.399
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.116
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0782
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.632
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.451
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.291
+0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.189
+1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.309
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.296
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.091
+1,0.172,0.172,0.3,0,0,0,0.345,0.518,0.518,0,0,0.186
+1,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.167
+0.667,0.299,0.299,0.817,0.45,0,0,0.256,0.581,0.581,0.737,0,0.0372
+0.667,0.291,0.291,0,0.0333,0,0,0.263,0.581,0.581,0.317,0,0.177
+1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.376
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.611
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.401
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112
+1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.418
+0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0546
+0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.26
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.296
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.223
+0.667,0.232,0.232,0,0.45,0,0,0.39,0.508,0.508,0.588,0,0.0372
+1,0.116,0.116,0,0.533,0,0,0.357,0.488,0.488,0.599,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0.737,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0.167,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.236,0.236,0.25,0.15,0,0,0.404,0.521,0.521,0.449,0,0.0372
+0.667,0.172,0.172,0.217,0.583,0,0,0.345,0.518,0.518,0.657,0,0.0743
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.442,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0743
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0372
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.28
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.231
+0.667,0.27,0.27,0.717,0,0,0,0.264,0.582,0.582,0,0,0.14
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0.233,0,0,0,0.261,0.534,0.534,0,0,0.358
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.21
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.298
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0
+0.667,0.264,0.264,0,0.15,0,0,0.479,0.672,0.672,0.362,0,0.0743
+0.333,0.173,0.173,0,0.567,0,0,0.405,0.574,0.574,0.659,0,0.186
+0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.112
+0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.126
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.155
+0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.35
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0624
+1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.435
+1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.157
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.375
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.395
+0.667,0.16,0.16,0.467,0.4,0,0,0.261,0.524,0.524,0.534,0,0.0372
+0.667,0.259,0.259,0,0.317,0,0,0.271,0.592,0.592,0.597,0,0.0743
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0.581,0,0.0743
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.106
+0.667,0.249,0.249,0.467,0,0,0,0.316,0.592,0.592,0,0,0.485
+0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.134
+0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.112
+0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0372
+0.667,0.296,0.296,0.5,0,0,0,0.553,0.682,0.682,0,0,0.284
+0.667,0.365,0.365,1,0,0,0,0.583,0.652,0.652,0,0,0.186
+0.667,0.464,0.464,0.9,0,0,0,0.613,0.622,0.622,0,0,0.26
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0372
+0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.243
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0753
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.303
+1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.661
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0507
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.112
+0.333,0.16,0.16,0,0.15,0,0,0.261,0.524,0.524,0.386,0,0.297
+0.333,0.154,0.154,0,0.567,0,0,0.265,0.529,0.529,0.319,0,0.223
+0.333,0.15,0.15,0,0,0.25,0,0.261,0.534,0.534,0,0.167,0.112
+0.333,0.149,0.149,0,0,0,0.733,0.276,0.534,0.534,0,0,0.112
+0.333,0.149,0.149,0.5,0,0,0,0.287,0.529,0.529,0,0,0.0743
+0.667,0.249,0.249,0.7,0,0,0,0.323,0.612,0.612,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.437
+0.667,0.264,0.264,0.233,0,0,0,0.479,0.672,0.672,0,0,0.208
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.251
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0743
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.284,0.284,1,0,0.233,0,0.435,0.572,0.572,0,0.309,0.0969
+1,0.404,0.404,1,0,1,0,0.378,0.641,0.641,0,0.206,0.537
+0.667,0.278,0.278,0.383,0,0.283,0.183,0.257,0.582,0.582,0,0.11,0.134
+0.333,0.16,0.16,0.467,0,0,0.8,0.261,0.524,0.524,0,0,0.297
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0743
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112
+0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743
+1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0743
+1,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0372
+1,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.247
+1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.186
+0.667,0.464,0.464,0.467,0,0,0,0.613,0.622,0.622,0,0,0.0743
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.277
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0743
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0832
+1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.398
+1,0.286,0.286,0.233,0,0,0,0.338,0.582,0.582,0,0,0.184
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0372
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0372
+0.333,0.154,0.154,0.233,0,0,0,0.265,0.529,0.529,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0.483,0,0.287,0.529,0.529,0,0.339,0.0372
+0.333,0.149,0.149,0,0,0.533,0,0.29,0.539,0.539,0,0,0.112
+0.667,0.252,0.252,0,0,0,0.933,0.375,0.632,0.632,0,0,0.0372
+0.667,0.264,0.264,0,0,0,0.55,0.479,0.672,0.672,0,0,0.149
+0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.315
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.186
+0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.15
+1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.109
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.163
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.149,0.149,0.233,0,0,0,0.287,0.529,0.529,0,0,0.112
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.112
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.257
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372
+0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.26
+0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0.717,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.087
+1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.19
+0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.277
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.229
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.241
+0.333,0.16,0.16,0.467,0,0,0,0.261,0.524,0.524,0,0,0.252
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0372
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.223
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.186
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372
+0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.149
+0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372
+0.333,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.174
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0818
+1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.548
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.101
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.149
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.112
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.309
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.268
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.26
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0743
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.143
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.0743
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.122
+1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.38
+1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.241
+1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.234
+1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.149
+0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372
+0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.223
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.335
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0
+0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0743
+0.667,0.296,0.296,0.717,0,0,0,0.553,0.682,0.682,0,0,0
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.121
+0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.245
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.431
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0738
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.112
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.195
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.779
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.26
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372
+0.667,0.464,0.464,0.467,0,0,0,0.613,0.622,0.622,0,0,0.212
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0743
+0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.111
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.143
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.134,0,0.0835
+1,0.0578,0.0578,0,0.9,0,0,0.309,0.474,0.474,0.751,0,0
+1,0.0495,0.0495,0,0.0667,0,0,0.309,0.469,0.469,0,0,0.0928
+1,0.0495,0.0495,0.5,0,0,0,0.305,0.464,0.464,0,0,0.0931
+1,0.0495,0.0495,0.45,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.286,0.286,0.467,0,0,0,0.338,0.582,0.582,0,0,0.159
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.089
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.149
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.106,0
+0.333,0.149,0.149,0,0,0.5,0,0.29,0.539,0.539,0,0,0
+1,0.353,0.353,0.467,0,0,0.95,0.434,0.715,0.715,0,0,0.149
+1,0.371,0.371,0,0.4,0,0.533,0.59,0.775,0.775,0.516,0.138,0.149
+0.667,0.296,0.296,0,0.0833,0.5,0,0.553,0.682,0.682,0,0.365,0.186
+0.667,0.365,0.365,0,0,0,0.95,0.583,0.652,0.652,0,0.638,0.0743
+1,0.671,0.671,0,0,0,0.0333,0.79,0.701,0.701,0,0.642,0.45
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0.454,0.186
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.222,0
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.125
+1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0925
+0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.159
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0
+0.333,0.149,0.149,0,0,0.5,0,0.29,0.539,0.539,0,0.739,0
+0.667,0.252,0.252,0,0,0,0.7,0.375,0.632,0.632,0,0.44,0.186
+0.667,0.264,0.264,0,0,0,0.0333,0.479,0.672,0.672,0,0.176,0.112
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.661,0.26
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.221,0
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.223
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0837
+1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.667,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.164,0.164,0.217,0,0,0,0.257,0.524,0.524,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743
+0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.304
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.23
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.152
+0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.299
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.335
+0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0899
+0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.42
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.335
+0.667,0.464,0.464,0,0.4,0,0,0.613,0.622,0.622,0.662,0,0.149
+0.667,0.549,0.549,0,0.567,0,0,0.598,0.602,0.602,0.36,0,0.0372
+0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0372
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0942
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.07
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.249
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0639
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.146
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.489
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.149
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743
+0,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.149
+0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.112
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.186
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.127
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.112
+0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.286
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.596
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.017
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.376
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.315
+0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.123
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0.4,0,0,0.276,0.534,0.534,0.722,0,0
+0.333,0.149,0.149,0,0.317,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0743
+0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.442
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.55
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.335
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.172
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0743
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.301
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0712
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.176
+0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.26
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.215
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.183
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.167
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0743
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.255
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.374
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.107
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0578
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.269
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.216
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.096
+0.333,0.15,0.15,0,0.65,0,0,0.261,0.534,0.534,0.631,0,0
+0.333,0.149,0.149,0,0.0667,0.233,0,0.276,0.534,0.534,0.514,0.213,0.149
+0.333,0.149,0.149,0,0,0.0167,0.233,0.287,0.529,0.529,0,0.45,0.0743
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.494,0.149
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.65,0.149
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.167,0
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.186
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.186
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.186
+0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164
+1,0.284,0.284,1,0,0,0,0.435,0.572,0.572,0,0,0.199
+0.667,0.286,0.286,0.433,0,0,0,0.338,0.582,0.582,0,0,0.127
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.111
+0.667,0.27,0.27,0.717,0,0,0,0.264,0.582,0.582,0,0,0.637
+0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.499
+0.667,0.251,0.251,0.233,0,0,0,0.264,0.602,0.602,0,0,0.442
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.106
+1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.263
+0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.363
+0.333,0.151,0.151,0.233,0,0,0,0.316,0.549,0.549,0,0,0.149
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.149
+0.333,0.173,0.173,0,0,0.733,0,0.405,0.574,0.574,0,0.393,0.328
+0.667,0.365,0.365,0,0,0.0167,0.45,0.583,0.652,0.652,0,0,0.112
+1,0.671,0.671,0,0,0,0.783,0.79,0.701,0.701,0,0,0.0743
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.164
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107
+1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.515
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.212
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.147
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.372
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.157
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.225
+0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.409
+0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.186
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.149
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.105
+0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.112
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112
+1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.0371
+1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0.52
+1,0.353,0.353,0.233,0,0,0,0.434,0.715,0.715,0,0,0.339
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.243
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.458
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.378
+1,0.582,0.582,0.467,0,0,0,0.656,0.596,0.596,0,0,0.227
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.149
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.08
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.167,0.167,0.95,0,0,0,0.346,0.519,0.519,0,0,0.593
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0372
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372
+0.333,0.149,0.149,0.467,0,0,0,0.276,0.534,0.534,0,0,0.149
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0372
+0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.223
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.112
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.576
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.0683
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.275
+0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.139
+0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.309
+0.333,0.164,0.164,0.233,0,0,0,0.257,0.524,0.524,0,0,0.256
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0743
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.112
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.149
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.186
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.281
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.286
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.166
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.101
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.247
+0.667,0.278,0.278,0.467,0,0,0,0.257,0.582,0.582,0,0,0.203
+0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372
+0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0372
+0.667,0.296,0.296,0,0.4,0,0,0.553,0.682,0.682,0.705,0,0.149
+0.667,0.365,0.365,0,0.567,0,0,0.583,0.652,0.652,0.6,0,0.268
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0.276,0,0.112
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.532
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.167,0.167,0,0,0.233,0,0.346,0.519,0.519,0,0.379,0
+0.667,0.168,0.168,0,0,0.0167,0.233,0.298,0.524,0.524,0,0.576,0
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.199
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.148
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.297
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.211
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.293
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0
+0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.196
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0
+0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.186
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0
+0.667,0.227,0.227,0,0,0.483,0,0.391,0.509,0.509,0,0.246,0.0372
+1,0.183,0.183,0,0,0.533,0,0.457,0.513,0.513,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0.483,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0.75,0,0,0,0.331,0.494,0.494,0,0,0
+0.667,0.284,0.284,0.45,0,0,0,0.435,0.572,0.572,0,0,0.157
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.21
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0372
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0372
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.112
+0.333,0.149,0.149,0,0,0.25,0,0.276,0.534,0.534,0,0.404,0.0372
+0.667,0.249,0.249,0.25,0,0,0.7,0.316,0.592,0.592,0,0.505,0.0372
+0.667,0.249,0.249,0.217,0,0,0.0333,0.323,0.612,0.612,0,0.572,0.112
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.696,0.112
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.375,0.0372
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.141,0
+0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.112
+0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.26
+0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.112
+0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.89
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.348
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0
+0.667,0.252,0.252,0,0.65,0,0,0.375,0.632,0.632,0.547,0,0.223
+0.667,0.264,0.264,0,0.317,0,0,0.479,0.672,0.672,0,0,0.388
+0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.297
+0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.335
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.223
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.112
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.181
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0
+0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.112
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.306
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.278
+0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.438
+0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.112
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.26
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0743
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.0372
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.157
+1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.146
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.152
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.364
+0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.446
+0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.263
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.442
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0372
+0.667,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0
+0.667,0.264,0.264,0,0.4,0,0,0.479,0.672,0.672,0.64,0,0
+0.667,0.296,0.296,0,0.317,0,0,0.553,0.682,0.682,0.291,0,0.186
+0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.0743
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.101
+0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.136
+0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.28
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.253
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.148
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.2
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.215
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.377
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.388
+0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.297
+0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.149
+0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.111
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.126
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.308
+0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.343
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.172
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.242
+0.667,0.286,0.286,0.233,0,0,0,0.338,0.582,0.582,0,0,0.128
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.386
+0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.417
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.412
+0.667,0.251,0.251,0.233,0,0,0,0.264,0.602,0.602,0,0,0.149
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.297
+0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.0372
+0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0.0743
+0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.296,0.296,0.367,0,0,0,0.553,0.682,0.682,0,0,0.186
+0.667,0.365,0.365,0.233,0,0,0,0.583,0.652,0.652,0,0,0
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.112
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.149
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.153
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126
+1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.113
+0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0.128,0,0.168
+0.333,0.168,0.168,0,0.9,0,0,0.298,0.524,0.524,0.681,0,0
+0.333,0.164,0.164,0,0.0667,0,0,0.257,0.524,0.524,0,0,0.112
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.418
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.194
+0.333,0.15,0.15,0.233,0,0,0,0.261,0.534,0.534,0,0,0.16
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.149,0.149,0.233,0,0,0,0.29,0.539,0.539,0,0,0.0372
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0372
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.349
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.223
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.149
+0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.226
+0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.252
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.733,0,0.258,0.465,0.465,0,0.502,0
+0.667,0.0495,0.0495,0,0,0.0167,0.233,0.258,0.465,0.465,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.164
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0611
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.213,0,0.0372
+0.333,0.153,0.153,0,0.7,0,0,0.246,0.488,0.488,0.0965,0,0.112
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0743
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.223
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.112
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.147,0,0.223
+0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.432,0,0.0743
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.112
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0
+0.333,0.0495,0.0495,0,0.65,0,0,0.258,0.465,0.465,0.555,0,0.0743
+0.667,0.116,0.116,0,0.283,0,0,0.326,0.459,0.459,0,0,0.223
+0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.163,0.163,0.433,0,0,0,0.317,0.484,0.484,0,0,0
+1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.149
+0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.167
+0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.155
+0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.109
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.195
+0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.539
+1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.355
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.446
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372
+0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0372
+0.333,0.189,0.189,0.233,0,0,0,0.379,0.517,0.517,0,0,0
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.334
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.15
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.115
+1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.112
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.667,0.235,0.235,0.25,0,0,0,0.259,0.528,0.528,0,0,0.149
+0.667,0.235,0.235,0.45,0,0,0,0.277,0.519,0.519,0,0,0.112
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0743
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.112
+1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.459
+1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.132
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372
+0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.144
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.128
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0805
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.084
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.201
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.145
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.264
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.667,0.163,0.163,0.25,0,0,0,0.317,0.484,0.484,0,0,0.322
+0.667,0.274,0.274,0.45,0,0,0,0.296,0.511,0.511,0,0,0.319
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.209
+0,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0
+0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0743
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0372
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.168
+0.667,0.275,0.275,0,0.65,0,0,0.385,0.496,0.496,0.787,0,0.0743
+1,0.219,0.219,0,0.283,0,0,0.354,0.476,0.476,0.662,0,0.112
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.374
+1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0
+0.667,0.274,0.274,0,0.4,0,0,0.296,0.511,0.511,0.603,0,0
+0.667,0.263,0.263,0,0.533,0,0,0.228,0.511,0.511,0.108,0,0.213
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0372
+0.333,0.147,0.147,0.5,0,0,0,0.249,0.492,0.492,0,0,0.186
+0.333,0.143,0.143,0.2,0,0,0,0.246,0.496,0.496,0,0,0.186
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.112
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.149
+0.667,0.273,0.273,0.467,0,0,0,0.475,0.594,0.594,0,0,0.0743
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.186
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.383
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0.186
+1,0.136,0.136,0.883,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.256,0.256,0.5,0,0,0,0.234,0.511,0.511,0,0.106,0
+0.333,0.147,0.147,0.2,0,0.75,0,0.249,0.492,0.492,0,0.612,0
+0.333,0.143,0.143,0,0,0,0.7,0.246,0.496,0.496,0,0.384,0
+0.667,0.235,0.235,0,0,0,0.0167,0.259,0.528,0.528,0,0.373,0.0372
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.508,0.26
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.502,0
+1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0.823,0.186
+1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0.463,0.223
+1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.52,0.186
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.329,0.112
+0.667,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0,0,0.0743
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.335
+0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.319
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.106
+1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.339
+1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.214
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0743
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.149
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.186
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.118
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.112
+0.333,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0.325
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.186
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.199
+0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.331
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.125
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0
+1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.0372
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.112
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0743
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372
+0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.26
+0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372
+0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372
+0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.368
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.41
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.171
+0.667,0.413,0.413,0,0.65,0,0,0.525,0.544,0.544,0.649,0,0.0743
+0.667,0.501,0.501,0.75,0.283,0,0,0.512,0.528,0.528,0,0,0.0372
+0.667,0.219,0.219,0.183,0,0,0,0.354,0.476,0.476,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0694
+1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.112
+1,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.26
+0.333,0.144,0.144,0.467,0,0,0,0.292,0.509,0.509,0,0,0.372
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.112
+0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0.174,0,0.112
+0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.57,0,0.136
+0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0.779,0,0
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0.683,0,0.186
+0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.385
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.295
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.0875
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.127,0
+0,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.459,0.0743
+0.333,0.143,0.143,0.233,0,0,0.95,0.246,0.496,0.496,0,0.631,0
+0.333,0.142,0.142,0,0.15,0,0.25,0.258,0.496,0.496,0.443,0.323,0
+0.667,0.235,0.235,0,0.783,0,0,0.277,0.519,0.519,0.111,0,0.287
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.51
+0.667,0.144,0.144,0,0,0.233,0,0.292,0.509,0.509,0,0.237,0.483
+0.667,0.247,0.247,0,0,0.517,0,0.413,0.585,0.585,0,0.44,0.112
+0.667,0.273,0.273,0,0,0,0.95,0.475,0.594,0.594,0,0,0.282
+0.667,0.328,0.328,0,0,0,0.25,0.5,0.569,0.569,0,0,0.249
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.259
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.349
+1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.071
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165
+0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.501
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.18
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.139,0,0.0372
+0.333,0.153,0.153,0,0.7,0,0,0.246,0.488,0.488,0.685,0,0.0372
+0.333,0.147,0.147,0.7,0,0,0,0.249,0.492,0.492,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.149
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372
+0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0743
+0.333,0.161,0.161,0,0,0.233,0,0.366,0.53,0.53,0,0.263,0.112
+0.333,0.189,0.189,0,0,0.0167,0.45,0.379,0.517,0.517,0,0.771,0.409
+0.333,0.231,0.231,0,0,0,1,0.391,0.505,0.505,0,0.101,0.47
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.445
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.409
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.222,0.222,0,0,0.233,0,0.352,0.461,0.461,0,0.232,0.163
+0.667,0.277,0.277,0,0,0.517,0,0.376,0.503,0.503,0,0.255,0.274
+0.667,0.274,0.274,0,0.4,0,0.233,0.296,0.511,0.511,0.506,0,0.124
+0.333,0.156,0.156,0,0.533,0,0,0.243,0.488,0.488,0,0,0.0372
+0.333,0.153,0.153,0,0.4,0,0,0.246,0.488,0.488,0.777,0,0.0372
+0.667,0.245,0.245,0,0.3,0,0,0.24,0.519,0.519,0,0,0.0372
+0.667,0.237,0.237,0.5,0,0,0,0.234,0.528,0.528,0,0,0.0743
+0.667,0.235,0.235,0.2,0,0,0,0.259,0.528,0.528,0,0,0.124
+1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.205
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.223
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743
+0.333,0.148,0.148,0,0,0.233,0,0.336,0.525,0.525,0,0.136,0.409
+0.667,0.273,0.273,0,0,0.767,0,0.475,0.594,0.594,0,0.572,0.0372
+0.667,0.328,0.328,0,0,0,0.7,0.5,0.569,0.569,0,0,0
+0.667,0.413,0.413,0,0,0,0.267,0.525,0.544,0.544,0,0,0.346
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.149
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.19
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.458
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.0697
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.23
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.363
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0764
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0.467,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.365
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.301
+0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.149
+0.667,0.328,0.328,0,0.65,0,0,0.5,0.569,0.569,0.735,0,0.186
+0.667,0.413,0.413,0,0.283,0,0,0.525,0.544,0.544,0,0,0.111
+0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0372
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.112
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0372
+0.333,0.148,0.148,0.5,0,0,0,0.336,0.525,0.525,0,0,0.112
+0.667,0.273,0.273,0.683,0,0,0,0.475,0.594,0.594,0,0,0.112
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.135
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.231
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.411
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.147
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.135
+0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.201
+0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0372
+0.667,0.237,0.237,0.467,0,0,0,0.234,0.528,0.528,0,0,0.297
+0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.179
+0.667,0.235,0.235,0,0,0.25,0,0.277,0.519,0.519,0,0.269,0.481
+0.667,0.235,0.235,0,0,0.233,0.7,0.284,0.536,0.536,0,0.445,0.316
+0.333,0.144,0.144,0,0,0.0167,0.467,0.292,0.509,0.509,0,0.274,0
+0.333,0.148,0.148,0.233,0,0,1,0.336,0.525,0.525,0,0,0.197
+0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0
+0.667,0.328,0.328,0.7,0,0,0,0.5,0.569,0.569,0,0,0.149
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.112
+0.333,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.223
+0.333,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.253
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.274,0.274,0.233,0,0,0,0.296,0.511,0.511,0,0,0
+1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.23
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.193
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.141
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.112
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.26
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0743
+0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0743
+0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.0743
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0743
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372
+0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.233
+1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.463
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.199
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.182
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.47
+0.667,0.235,0.235,0,0,0.233,0,0.277,0.519,0.519,0,0.339,0.112
+0.667,0.235,0.235,0,0,0.517,0,0.284,0.536,0.536,0,0.0627,0.112
+0.667,0.238,0.238,0,0,0,0.95,0.327,0.552,0.552,0,0,0.0372
+0.333,0.148,0.148,0,0,0,0.25,0.336,0.525,0.525,0,0,0.0743
+0.667,0.273,0.273,0.25,0,0,0,0.475,0.594,0.594,0,0,0.186
+0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.231,0.231,1,0,0,0,0.391,0.505,0.505,0,0,0.0372
+0.333,0.275,0.275,0.117,0,0,0,0.385,0.496,0.496,0,0,0
+0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.121
+0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.116
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.114
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174
+0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0.0697
+0.667,0.162,0.162,0.183,0,0,0,0.277,0.488,0.488,0,0,0
+0.667,0.263,0.263,0,0,0.233,0,0.228,0.511,0.511,0,0.237,0.11
+0.667,0.256,0.256,0,0,1,0,0.234,0.511,0.511,0,0.335,0.387
+0.333,0.147,0.147,0,0,0.0333,0.433,0.249,0.492,0.492,0,0,0.149
+0.333,0.143,0.143,0,0,0,0.533,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.246
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.363
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.186
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0743
+0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0372
+0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.149
+0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372
+0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.136,0.136,0.25,0,0,0,0.305,0.463,0.463,0,0,0.189
+0.667,0.163,0.163,0.217,0,0,0,0.317,0.484,0.484,0,0,0.316
+0.667,0.274,0.274,0.233,0,0,0,0.296,0.511,0.511,0,0,0.432
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.254
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0905
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.112
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.335
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743
+1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.0743
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0743
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.23
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0983
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.163
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.126
+0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.112
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0372
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.543
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.552
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.223
+1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.13
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.168
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.0516
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0992
+0.667,0.162,0.162,0.467,0,0,0,0.277,0.488,0.488,0,0,0.163
+0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.106,0,0.0372
+0.667,0.256,0.256,0,0.7,0,0,0.234,0.511,0.511,0.349,0,0.155
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743
+0.667,0.235,0.235,0,0,0.25,0,0.277,0.519,0.519,0,0.453,0.178
+1,0.328,0.328,0,0,0,0.7,0.297,0.571,0.571,0,0,0
+0.667,0.238,0.238,0,0,0,0.0167,0.327,0.552,0.552,0,0,0.0372
+1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.186
+1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.348
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.395
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0372
+1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.112
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.483
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0372
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0.15,0,0,0.246,0.496,0.496,0.451,0,0.0372
+0.667,0.235,0.235,0,0.783,0,0,0.259,0.528,0.528,0.544,0,0.149
+0.333,0.142,0.142,0,0,0.25,0,0.268,0.492,0.492,0,0.55,0.0372
+0.333,0.142,0.142,0,0,0,0.95,0.271,0.501,0.501,0,0.659,0.149
+0.333,0.144,0.144,0,0,0,0.0167,0.292,0.509,0.509,0,0.489,0.335
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.167,0.447
+1,0.384,0.384,0.467,0,0,0,0.584,0.658,0.658,0,0,0.0727
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.413,0.413,0,0.4,0,0,0.525,0.544,0.544,0.61,0,0.297
+0.667,0.501,0.501,0,0.0667,0,0,0.512,0.528,0.528,0.722,0,0.0372
+0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0.579,0,0.3
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.104
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.124
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.116
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.425
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.241
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.223
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.297
+1,0.726,0.726,0.233,0,0,0,0.639,0.559,0.559,0,0,0.223
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.112
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.165
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.124
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.126
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.432
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.265
+0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372
+0.333,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.161,0,0.186
+0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.566,0,0.0743
+0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372
+0.333,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0743
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.119
+1,0.0768,0.0768,0.467,0,0,0,0.283,0.447,0.447,0,0,0.0881
+1,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.186
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0372
+0.333,0.142,0.142,0.933,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743
+0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.569
+0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.351
+0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.319
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.114
+1,0.277,0.277,0.467,0,0,0,0.376,0.503,0.503,0,0,0.228
+1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0.207
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.513
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.102
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.112
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.223
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149
+0.667,0.238,0.238,0.233,0,0,0,0.327,0.552,0.552,0,0,0
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0372
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.149
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0743
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.26
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.112
+0.667,0.116,0.116,0.5,0,0,0,0.326,0.459,0.459,0,0,0.0743
+1,0.0743,0.0743,0.2,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.264
+1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.208
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.153
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.25
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.129
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.223
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0372
+0.333,0.142,0.142,0.25,0,0,0,0.271,0.501,0.501,0,0,0.0372
+0.667,0.238,0.238,0.217,0,0,0,0.327,0.552,0.552,0,0,0
+1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.0372
+0.667,0.273,0.273,0.467,0,0,0,0.475,0.594,0.594,0,0,0.186
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.112
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.225
+1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.587
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.339
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.53
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.282
+0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0.134
+0.333,0.143,0.143,0.5,0,0,0,0.246,0.496,0.496,0,0,0.0671
+0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.206
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0.0743
+0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0
+0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.141
+0.667,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0,0,0.0372
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.137
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.108
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.329
+1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.35
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.71
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.52
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0773
+0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.405
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.118
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.149
+1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.149
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.185
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149
+0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16
+1,0.274,0.274,0.5,0,0,0,0.296,0.511,0.511,0,0,0.178
+0.667,0.263,0.263,0.2,0.15,0,0,0.228,0.511,0.511,0.37,0,0.0372
+0.667,0.256,0.256,0,0.783,0,0,0.234,0.511,0.511,0.476,0,0.0743
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.335
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743
+0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.149
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.26
+0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0372
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0743
+0.667,0.328,0.328,0.233,0,0,0,0.5,0.569,0.569,0,0,0.0372
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0743
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.141
+1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.102
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.112
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.229
+0.333,0.0495,0.0495,0,0,0.0667,0,0.258,0.465,0.465,0,0.242,0
+0.333,0.15,0.15,0,0,0.183,0.283,0.245,0.487,0.487,0,0.537,0.112
+0.333,0.145,0.145,0.233,0,0,0.867,0.248,0.491,0.491,0,0.489,0.112
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.379,0
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.379,0.0372
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0743
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0372
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.0743
+0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.186
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0743
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.175
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.339
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.339
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0,0,0.25,0,0.245,0.495,0.495,0,0.222,0.112
+0.333,0.14,0.14,0,0,0,0.917,0.258,0.495,0.495,0,0.529,0.0372
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.495,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.784,0.0372
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.789,0.0743
+0.667,0.242,0.242,0,0.15,0,0,0.411,0.582,0.582,0.433,0.431,0.387
+0.667,0.268,0.268,0,0.3,0,0,0.472,0.591,0.591,0.494,0.45,0.223
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.583,0.274,0.0743
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372
+0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.0972
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0721
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.336
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0708
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.234,0
+0.667,0.22,0.22,0.483,0,0.283,0.183,0.35,0.459,0.459,0,0.531,0.0589
+0.667,0.274,0.274,0.217,0,0,0.267,0.374,0.5,0.5,0.104,0.119,0.132
+0.667,0.27,0.27,0,0.9,0,0,0.294,0.508,0.508,0.712,0,0
+0.333,0.154,0.154,0,0.0167,0,0,0.242,0.487,0.487,0.818,0,0.0743
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0.792,0,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0.15,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112
+0.333,0.146,0.146,0,0.4,0,0,0.334,0.524,0.524,0.631,0,0.112
+0.667,0.268,0.268,0,0.283,0,0,0.472,0.591,0.591,0.635,0,0.0743
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.629,0,0.0743
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.788,0,0.232
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.62,0,0.149
+1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0.469,0,0.149
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.398
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0823
+0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.426
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.206,0
+0.333,0.154,0.154,0,0,0.517,0,0.242,0.487,0.487,0,0.266,0
+0.333,0.15,0.15,0,0,0,0.217,0.245,0.487,0.487,0,0.399,0.0743
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.385,0.0372
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.531,0
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.45,0.0372
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.535,0.219
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.726,0.288
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.474,0.0372
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.335
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0372
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0372
+0.667,0.41,0.41,0.233,0,0,0,0.521,0.541,0.541,0,0,0.0372
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.112
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.0762
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0942
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.435
+0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.371
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.255
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0.204,0,0.211
+0.333,0.141,0.141,0,0.45,0,0,0.245,0.495,0.495,0.777,0,0.0743
+0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.112
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.269
+0.333,0.14,0.14,0.233,0,0,0,0.27,0.499,0.499,0,0,0.0372
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743
+0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.297
+0.333,0.187,0.187,0.233,0,0,0,0.377,0.516,0.516,0,0,0
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.112
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0743
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.232
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.047
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0
+1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.182
+1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.224
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.217
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0372
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0743
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.149
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.149
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.186
+0.333,0.146,0.146,0.25,0,0,0,0.334,0.524,0.524,0,0,0.0372
+0.667,0.268,0.268,0.217,0,0,0,0.472,0.591,0.591,0,0,0.286
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.393
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0759
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.441
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.135,0.135,0,0,0.25,0.0333,0.304,0.462,0.462,0,0.795,0.324
+1,0.274,0.274,0,0,0,0.417,0.374,0.5,0.5,0,0,0.199
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.171
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.673
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.197
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0718
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.583,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.14,0.14,0.583,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.141,0.141,0,0,0.25,0,0.291,0.507,0.507,0,0.131,0
+0.667,0.146,0.146,0,0,0,0.217,0.334,0.524,0.524,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.187,0.187,0,0,0.317,0,0.377,0.516,0.516,0,0.265,0.0743
+0.667,0.41,0.41,0,0,0.2,0.267,0.521,0.541,0.541,0,0,0.149
+0.667,0.496,0.496,0,0,0,0.183,0.509,0.525,0.525,0,0,0
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.186
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.132
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.233
+1,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.135,0.135,0.15,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.193
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.123
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.141
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.137
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0
+0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.26
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.392
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.296
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.158
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.112
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.315
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+1,0.135,0.135,0.933,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.162,0.162,0,0,0.483,0,0.316,0.483,0.483,0,0.303,0
+0.667,0.16,0.16,0.233,0,0.0333,0.433,0.276,0.487,0.487,0,0,0.0372
+0.667,0.258,0.258,0,0,0,0.483,0.227,0.508,0.508,0,0,0.297
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0372
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0372
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.558
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.233,0.233,0.5,0,0,0,0.325,0.549,0.549,0,0,0.0372
+0.667,0.242,0.242,0.433,0,0,0,0.411,0.582,0.582,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.186
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.112
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.263
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.115
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.162
+0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.283
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.375
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.297
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.14,0.14,0.433,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0.165,0,0.112
+0.667,0.268,0.268,0,0.683,0,0,0.472,0.591,0.591,0.703,0,0.501
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.373,0,0.245
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.156,0,0.223
+1,0.554,0.554,0,0.683,0,0,0.543,0.493,0.493,0.434,0,0.129
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0499,0.0499,0.7,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.112
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.205
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.149
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.223
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.223
+0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.483
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0
+0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0372
+0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.112
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0887
+1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.119
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.121
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0743
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.112
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0.25,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0.45,0,0,0,0.27,0.499,0.499,0,0,0.52
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0372
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.223
+0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.274
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.108
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.268
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.2
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.22,0.22,0.5,0,0,0,0.35,0.459,0.459,0,0,0.142
+0.333,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0
+0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0.467,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.14,0.14,0,0,0.233,0,0.27,0.499,0.499,0,0.0795,0.265
+0.667,0.233,0.233,0,0,0.0167,0.45,0.325,0.549,0.549,0,0,0.1
+0.333,0.146,0.146,0.5,0,0,0.933,0.334,0.524,0.524,0,0,0.0743
+0.667,0.268,0.268,0.2,0.4,0,0,0.472,0.591,0.591,0.519,0,0.0372
+0.333,0.187,0.187,0,0.283,0,0,0.377,0.516,0.516,0.209,0,0.26
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372
+0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.335
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0
+1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.263
+1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.194
+0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.349
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0951
+0.333,0.145,0.145,0,0,0.317,0,0.248,0.491,0.491,0,0.11,0.363
+0.333,0.141,0.141,0,0,0.983,0,0.245,0.495,0.495,0,0.304,0
+0.667,0.23,0.23,0,0,0,0.483,0.258,0.525,0.525,0,0.463,0
+0.333,0.14,0.14,0.0833,0,0,0.9,0.267,0.491,0.491,0,0.489,0.186
+0.333,0.14,0.14,0.85,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.141,0.141,0.233,0,0,0,0.291,0.507,0.507,0,0,0.223
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.112
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0743
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.297
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0372
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0.317,0,0.258,0.465,0.465,0,0.297,0
+0.667,0.16,0.16,0,0,0.717,0,0.276,0.487,0.487,0,0.11,0
+0.333,0.154,0.154,0,0,0,0.75,0.242,0.487,0.487,0,0,0.0639
+0.667,0.25,0.25,0,0,0,0.633,0.233,0.508,0.508,0,0,0.277
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.123
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.186
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.297
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.112
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743
+0.333,0.146,0.146,0.0833,0,0,0,0.334,0.524,0.524,0,0,0.149
+0.667,0.268,0.268,0.15,0,0,0,0.472,0.591,0.591,0,0,0.0372
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0743
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.342
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.234
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.25
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.284
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0759
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.251
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.173
+1,0.386,0.386,0.467,0,0,0,0.432,0.518,0.518,0,0,0.434
+0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.441
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.184
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.176
+0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.149
+0.667,0.141,0.141,0,0.15,0,0,0.245,0.495,0.495,0.42,0,0
+0.667,0.14,0.14,0,0.533,0,0,0.258,0.495,0.495,0.628,0,0.0372
+0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0.592,0,0
+0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.811,0,0
+1,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.703,0,0.0743
+0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0
+1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.171
+0.667,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.19
+0.667,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.235
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0327
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.178
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.207
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.362
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.223
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.186
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.26
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.149
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.26
+1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0372
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.57
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.174
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0
+0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.17
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.422
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.503
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.34
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.142
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.129
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.186
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.149
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.149
+0.667,0.242,0.242,0.467,0,0,0,0.411,0.582,0.582,0,0,0.149
+0.667,0.268,0.268,0,0.4,0,0,0.472,0.591,0.591,0.707,0,0.409
+0.667,0.324,0.324,0,0.517,0,0,0.497,0.566,0.566,0.56,0,0.0372
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.403
+1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.232
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.163
+1,0.386,0.386,0,0,0.517,0,0.432,0.518,0.518,0,0.537,0.363
+0.667,0.27,0.27,0,0,0,0.683,0.294,0.508,0.508,0,0.309,0.116
+0.667,0.258,0.258,0.75,0,0,0.467,0.227,0.508,0.508,0,0.683,0.277
+0.667,0.25,0.25,0.183,0,0,0,0.233,0.508,0.508,0,0.404,0.0762
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.489,0.0743
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.443,0.0743
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.595,0.0372
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.783,0.372
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.641,0.0743
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.0979,0.213
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0372
+0.667,0.268,0.268,0.233,0,0,0,0.472,0.591,0.591,0,0,0.0743
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.149
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.186
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.254
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.31
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.163
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.175
+0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.228
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0.233,0,0,0,0.276,0.487,0.487,0,0,0.112
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.112
+0.667,0.25,0.25,0.933,0,0,0,0.233,0.508,0.508,0,0,0
+0.667,0.24,0.24,0.233,0,0,0,0.239,0.517,0.517,0,0,0.297
+0.667,0.232,0.232,0.5,0,0,0,0.233,0.525,0.525,0,0,0.112
+0.333,0.14,0.14,0.667,0,0,0,0.258,0.495,0.495,0,0,0.0372
+0.333,0.14,0.14,0,0,0.233,0,0.267,0.491,0.491,0,0.419,0
+0.667,0.23,0.23,0,0,0.283,0.183,0.282,0.533,0.533,0,0,0.0743
+0.667,0.233,0.233,0,0,0,0.0333,0.325,0.549,0.549,0,0,0.0372
+0.333,0.146,0.146,0.5,0,0,0,0.334,0.524,0.524,0,0,0.112
+0.667,0.268,0.268,0.9,0,0,0,0.472,0.591,0.591,0,0,0.0743
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0372
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743
+0.333,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.265
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.16,0.16,0.15,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0372
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.112
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.223
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.234
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.113
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.0743
+0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.149
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.29
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.106
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.196
+1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.345
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.08
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0881
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372
+0.667,0.23,0.23,0,0,0.317,0,0.258,0.525,0.525,0,0.229,0
+1,0.32,0.32,0,0,0.467,0,0.285,0.542,0.542,0,0.509,0
+1,0.321,0.321,0,0,0,0.917,0.294,0.567,0.567,0,0.758,0.0372
+1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.668,0.112
+1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.194,0.0743
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.297
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.403
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.112
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0743
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.211
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.181
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.229
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.141,0.141,0.233,0,0,0,0.291,0.507,0.507,0,0,0
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.112
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.26
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.372
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743
+0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.26
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0697
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0372
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.112
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.14,0.14,0.467,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.141,0.141,0,0.65,0,0,0.291,0.507,0.507,0.51,0,0.112
+0.333,0.146,0.146,0,0.0333,0,0,0.334,0.524,0.524,0,0,0
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.181
+0.667,0.324,0.324,0,0,0.517,0,0.497,0.566,0.566,0,0.206,0.335
+0.667,0.41,0.41,0,0,0,0.217,0.521,0.541,0.541,0,0.56,0.223
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.404,0
+1,0.386,0.386,0.233,0,0,0,0.448,0.484,0.484,0,0,0.111
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.136
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.135,0.135,0.25,0,0,0,0.304,0.462,0.462,0.113,0,0
+1,0.274,0.274,0.217,0.683,0,0,0.374,0.5,0.5,0.794,0,0.171
+1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0.497
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0549
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.223
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0,0.0495,0.0495,0,0,0.517,0,0.258,0.465,0.465,0,0.59,0
+0.333,0.14,0.14,0,0,0,0.45,0.27,0.499,0.499,0,0.731,0
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.523,0
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.563,0
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.186
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.149
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.22
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.284
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.391
+0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.371
+0.667,0.27,0.27,0,0.4,0,0,0.294,0.508,0.508,0.755,0,0.104
+0.667,0.258,0.258,0,0.283,0,0,0.227,0.508,0.508,0.547,0,0.0951
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.176,0,0.0743
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.372
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.223
+0.333,0.14,0.14,0.7,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0743
+0.333,0.141,0.141,0.7,0,0,0,0.291,0.507,0.507,0,0,0.0372
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0.124,0,0.24
+1,0.461,0.461,0,0.683,0,0,0.616,0.616,0.616,0.8,0,0.213
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.798,0,0.149
+0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0.13,0,0.0743
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.07
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.205
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372
+0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.112
+0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.146
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.264
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.186
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.513
+0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0837
+0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.0931
+0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.359
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.135
+0.667,0.258,0.258,0.85,0,0.0667,0,0.227,0.508,0.508,0,0.211,0.238
+0.667,0.25,0.25,0,0,0.183,0.283,0.233,0.508,0.508,0,0.732,0.249
+0.667,0.24,0.24,0,0,0,0.633,0.239,0.517,0.517,0,1,0.24
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.0505,0.324
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.444
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.228
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.223
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.149
+0.667,0.268,0.268,0.0833,0,0,0,0.472,0.591,0.591,0,0,0
+0.333,0.187,0.187,0.15,0,0,0,0.377,0.516,0.516,0,0,0.0743
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.358
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0743
+1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.467,0,0.25,0,0.258,0.465,0.465,0,0.419,0
+1,0.27,0.27,0.0833,0,0,0.533,0.294,0.508,0.508,0,0.486,0.26
+1,0.362,0.362,0.617,0,0,0.85,0.212,0.53,0.53,0,0,0.204
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0372
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372
+0,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.14,0.14,0.85,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.297
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.335
+0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0,0,0.112
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.186
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0978
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.355
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.119
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.147
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.486
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.266
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.193
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.296
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.339
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.112
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0372
+0.333,0.146,0.146,0,0,0.233,0,0.334,0.524,0.524,0,0.199,0
+0.667,0.268,0.268,0.233,0,0.283,0.183,0.472,0.591,0.591,0.0965,0.596,0.112
+0.667,0.324,0.324,0,0.9,0,0.733,0.497,0.566,0.566,0.716,0.291,0.168
+0.667,0.41,0.41,0,0.0167,0.25,0.2,0.521,0.541,0.541,0,0.682,0.257
+0.667,0.496,0.496,0,0,0,0.25,0.509,0.525,0.525,0,0.234,0.0743
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.277
+1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.102
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0743
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0.25,0,0,0,0.245,0.495,0.495,0,0,0
+0.667,0.23,0.23,0.45,0,0,0,0.258,0.525,0.525,0,0,0.112
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.149
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.0372
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0743
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0372
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0743
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0
+0.667,0.496,0.496,0,0.65,0,0,0.509,0.525,0.525,0.772,0,0.0372
+0.667,0.386,0.386,0,0.0333,0,0,0.448,0.484,0.484,0.117,0,0.34
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0.167
+0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0
+0.667,0.277,0.277,0.233,0.4,0,0,0.374,0.5,0.5,0.74,0,0.112
+0.667,0.274,0.274,0,0.517,0,0,0.294,0.508,0.508,0,0,0.449
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.327
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0743
+0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.143,0.143,0.95,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0.15,0,0,0.27,0.499,0.499,0.419,0,0.257
+0.667,0.239,0.239,0,0.3,0,0,0.325,0.549,0.549,0.737,0,0.361
+0.667,0.252,0.252,0,0,0.233,0,0.411,0.582,0.582,0.0603,0.382,0.224
+0.667,0.289,0.289,0,0,0.0167,0.45,0.472,0.591,0.591,0,0.0489,0.112
+0.667,0.362,0.362,0,0,0,0.45,0.497,0.566,0.566,0,0,0.149
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0
+0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.297
+0.333,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0
+0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0372
+0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.124
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0785
+1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.362
+1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0.198
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0372
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.156,0,0.0372
+0.667,0.252,0.252,0.75,0.683,0,0,0.411,0.582,0.582,0.755,0,0
+0.667,0.289,0.289,0.2,0,0,0,0.472,0.591,0.591,0.683,0,0.26
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.644,0,0.149
+0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.223
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.112
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0743
+1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0
+1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0.127
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0829
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.166
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0314
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0776
+0.667,0.252,0.252,0.233,0.4,0,0,0.411,0.582,0.582,0.701,0,0
+1,0.408,0.408,0,0.517,0,0,0.58,0.653,0.653,0,0,0.102
+0.667,0.362,0.362,0.467,0,0,0,0.497,0.566,0.566,0,0,0.149
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.295
+0.333,0.296,0.296,0,0.65,0,0,0.383,0.495,0.495,0.651,0,0.349
+1,0.397,0.397,0,0.267,0,0,0.448,0.484,0.484,0.202,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0372
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.112
+1,0.277,0.277,0.717,0,0.233,0,0.374,0.5,0.5,0,0.459,0.186
+1,0.274,0.274,0.5,0,1,0,0.294,0.508,0.508,0,0.538,0.218
+0.667,0.263,0.263,0.933,0,0.267,0.2,0.227,0.508,0.508,0,0.463,0.0743
+0.667,0.256,0.256,0,0,0,0.0167,0.233,0.508,0.508,0,0.599,0
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.379,0.413
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.665,0.26
+0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0.602,0
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.546,0
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.532,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.691,0
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0.651,0.0372
+0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372
+0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.543
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.141
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.286
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.277,0.277,0.467,0,0,0,0.374,0.5,0.5,0,0,0.177
+1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.269
+1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.0963
+0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.223
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0372
+1,0.353,0.353,0.5,0,0,0,0.488,0.641,0.641,0,0,0.26
+1,0.408,0.408,0.45,0.15,0,0,0.58,0.653,0.653,0.436,0,0.26
+1,0.518,0.518,0,0.767,0,0,0.616,0.616,0.616,0.596,0,0
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.573,0.255,0.207
+1,0.788,0.788,0,0,0.983,0,0.635,0.555,0.555,0.147,0.709,0.225
+1,0.571,0.571,0,0,0.267,0.2,0.543,0.493,0.493,0,0,0.102
+1,0.116,0.116,0,0,0,0.25,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0998
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.393
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.149
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.223
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.216
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.17
+0.333,0.142,0.142,0,0.15,0,0,0.267,0.491,0.491,0.403,0,0.0169
+0.333,0.143,0.143,0,0.767,0,0,0.27,0.499,0.499,0.204,0,0
+0.333,0.144,0.144,0.25,0,0,0,0.291,0.507,0.507,0,0,0
+0.667,0.252,0.252,0.217,0.4,0,0,0.411,0.582,0.582,0.622,0,0.223
+0.667,0.289,0.289,0,0.283,0,0,0.472,0.591,0.591,0.688,0,0.0743
+0.333,0.206,0.206,0.467,0,0,0,0.377,0.516,0.516,0,0,0.297
+0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.112
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0372
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.11
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.163,0.163,0.95,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0
+1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0
+1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.0372
+1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0372
+0.333,0.142,0.142,0,0,0.25,0,0.267,0.491,0.491,0,0.333,0.26
+0.333,0.143,0.143,0,0,0,0.45,0.27,0.499,0.499,0,0.428,0.0743
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.719,0.0743
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.528,0.0372
+0.667,0.289,0.289,0.95,0,0,0,0.472,0.591,0.591,0,0,0.0372
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.297
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.513
+1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.126
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.113
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.146
+0.333,0.0495,0.0495,0,0,0.733,0,0.258,0.465,0.465,0,0.971,0
+0.667,0.156,0.156,0,0,0.767,0,0.242,0.487,0.487,0,0.419,0
+0.667,0.153,0.153,0,0,0,0.667,0.245,0.487,0.487,0,0.317,0.0743
+0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.0557
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.112
+1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.0671
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.165,0,0
+1,0.408,0.408,0,0.9,0,0,0.58,0.653,0.653,0.635,0,0.223
+0.667,0.362,0.362,0,0.0167,0,0,0.497,0.566,0.566,0.38,0,0
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.26
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0.233,0,0,0,0.304,0.462,0.462,0,0,0.158
+1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.667,0.162,0.162,0.233,0,0,0,0.276,0.487,0.487,0,0,0.16
+0.333,0.156,0.156,0,0,0.483,0,0.242,0.487,0.487,0,0.165,0.174
+0.333,0.153,0.153,0,0,0.0167,0.45,0.245,0.487,0.487,0,0.717,0.335
+0.333,0.147,0.147,0,0,0,0.9,0.248,0.491,0.491,0,0.821,0.186
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.546,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.265,0.0372
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.841,0.112
+0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.149
+0.667,0.144,0.144,0.95,0,0,0,0.291,0.507,0.507,0,0,0.335
+0.667,0.252,0.252,0,0,0.25,0,0.411,0.582,0.582,0,0.538,0
+0.667,0.289,0.289,0,0,0,0.95,0.472,0.591,0.591,0,0.581,0.149
+0.667,0.362,0.362,0,0,0,0.633,0.497,0.566,0.566,0,0.538,0.0372
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0.381,0
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.573,0
+0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0.281,0
+0.667,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0
+0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0881
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.207
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.185
+0.667,0.274,0.274,0.717,0,0,0,0.294,0.508,0.508,0,0,0.118
+0.667,0.263,0.263,0.233,0,0,0,0.227,0.508,0.508,0,0,0.36
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0743
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.112
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.326
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0776
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.386
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.174
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.365
+0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.804
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.372
+1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.352
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.146
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.169
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.227
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.149
+0.667,0.235,0.235,1,0,0.233,0,0.276,0.517,0.517,0,0.339,0.149
+0.667,0.236,0.236,0.433,0,0.517,0,0.282,0.533,0.533,0,0.485,0
+0.667,0.144,0.144,0,0,0,0.95,0.291,0.507,0.507,0,0.45,0.0743
+0.667,0.252,0.252,0,0,0,0.167,0.411,0.582,0.582,0,0.459,0.0743
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.185,0.0372
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.149
+0.667,0.256,0.256,0,0.4,0,0,0.39,0.503,0.503,0.638,0,0.0743
+0.667,0.542,0.542,0,0.517,0,0,0.509,0.525,0.525,0.601,0,0.0372
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0.529,0,0.186
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.186
+0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372
+0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0
+1,0.163,0.163,0.233,0,0,0,0.316,0.483,0.483,0,0,0
+1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.112
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.0887,0
+0.333,0.143,0.143,0,0,0.25,0.2,0.245,0.495,0.495,0,0,0.112
+0.667,0.142,0.142,0,0,0,0.7,0.258,0.495,0.495,0,0,0
+0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.149
+0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0372
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0743
+0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372
+0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.0372
+0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.473
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.293
+1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.142
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0907
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.185
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.198
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.236
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.149
+0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0.446
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.149
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.504
+0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.0372
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.227
+0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743
+0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.667,0.147,0.147,0.233,0,0,0,0.248,0.491,0.491,0,0,0.149
+0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.149
+0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743
+0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0743
+0.667,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.0743
+0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372
+0.333,0.206,0.206,0.467,0,0,0,0.377,0.516,0.516,0,0,0
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.128
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.223
+0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.206
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.0604
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.142
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.268
+0.667,0.252,0.252,0.467,0,0,0,0.411,0.582,0.582,0,0,0.0441
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.286
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0372
+0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.149
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.337
+1,0.397,0.397,0.233,0,0,0,0.448,0.484,0.484,0,0,0.308
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.016
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.346
+0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.0794
+0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.161
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.121
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.149
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.555
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.281
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.149
+0.333,0.169,0.169,0.233,0,0,0,0.365,0.528,0.528,0,0,0.0372
+0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0
+0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.196
+1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.601
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0534
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.142,0.142,0.217,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0957
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.161,0,0.112
+0.667,0.289,0.289,0,0.683,0,0,0.472,0.591,0.591,0.614,0,0.112
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.118
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.198
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.105
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.297
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.164
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.23
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.147,0.147,0.233,0,0,0,0.248,0.491,0.491,0,0,0.141
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.121
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0743
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.186
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0743
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.409
+0.333,0.169,0.169,0,0.65,0,0,0.365,0.528,0.528,0.837,0,0.35
+0.667,0.362,0.362,0.717,0.267,0,0,0.497,0.566,0.566,0.111,0,0.458
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.171
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.404
+0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.26
+1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.0914
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.669
+1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.138
+0.667,0.256,0.256,0.467,0,0,0,0.233,0.508,0.508,0,0,0.315
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.26
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.186
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0743
+0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.107
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.186
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.18
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.102
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.405
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.299
+0.667,0.163,0.163,0.5,0.15,0,0,0.316,0.483,0.483,0.353,0,0.226
+0.333,0.162,0.162,0.217,0.533,0,0,0.276,0.487,0.487,0.506,0,0.0743
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0.675,0,0
+0.333,0.153,0.153,0,0,0.25,0,0.245,0.487,0.487,0.733,0.566,0.0743
+0.333,0.147,0.147,0,0,0,0.45,0.248,0.491,0.491,0,0.472,0.0372
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.343,0
+0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.187
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.149
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0372
+0.333,0.151,0.151,0.233,0,0,0,0.334,0.524,0.524,0,0,0
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0372
+1,0.518,0.518,0,0.4,0,0,0.616,0.616,0.616,0.59,0,0.186
+0.667,0.256,0.256,0,0.517,0,0,0.39,0.503,0.503,0.124,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.167,0,0
+1,0.05,0.05,0,0.9,0,0,0.273,0.442,0.442,0.536,0,0.0881
+1,0.104,0.104,0,0.0167,0.233,0,0.307,0.426,0.426,0.351,0.304,0.499
+0.667,0.136,0.136,0,0,0.517,0,0.304,0.462,0.462,0,0.78,0
+1,0.39,0.39,0,0,0,0.95,0.432,0.518,0.518,0,0.697,0.222
+1,0.387,0.387,0,0,0,0.4,0.313,0.53,0.53,0,0.43,0.0906
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.414,0.0776
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.396,0.223
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.497,0.0372
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.558,0.0372
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.375,0.0743
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.318,0.236
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.7,0.149
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.41,0.0372
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0.709,0.223
+0.667,0.289,0.289,0.467,0,0,0,0.472,0.591,0.591,0,0.687,0.149
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0.19,0.142
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.153
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0743
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.132
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.15
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0372
+0.667,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.26
+0.667,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.372
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.2
+0.667,0.462,0.462,0,0,0.733,0,0.521,0.541,0.541,0,0.128,0.159
+0.667,0.296,0.296,0,0,0.0167,0.45,0.383,0.495,0.495,0,0,0.335
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.223
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.149
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116
+1,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0
+0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0743
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.223
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149
+0.667,0.289,0.289,0,0.45,0.483,0,0.472,0.591,0.591,0.77,0.407,0.223
+0.333,0.206,0.206,0,0,0.267,0.2,0.377,0.516,0.516,0.113,0.596,0
+0.333,0.256,0.256,0,0,0,0.467,0.39,0.503,0.503,0,0.324,0.0372
+0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0.847,0.223
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0.343,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.156,0.156,0.467,0,0,0,0.242,0.487,0.487,0,0,0
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.112
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0743
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.409
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0.467,0,0,0,0.325,0.549,0.549,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.141,0,0.159
+0.667,0.289,0.289,0,0.683,0,0,0.472,0.591,0.591,0.675,0,0.0699
+0.667,0.362,0.362,0,0,0.233,0,0.497,0.566,0.566,0,0.242,0.0743
+0.667,0.462,0.462,0,0,0.0167,0.45,0.521,0.541,0.541,0,0.396,0
+0.667,0.542,0.542,0,0,0,0.667,0.509,0.525,0.525,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.185
+0.667,0.245,0.245,0.233,0,0,0,0.239,0.517,0.517,0,0,0.17
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.667,0.235,0.235,0.75,0,0,0,0.276,0.517,0.517,0,0,0.223
+0.667,0.236,0.236,0.45,0,0,0,0.282,0.533,0.533,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.41
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.38
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0743
+0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.202
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.272
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.206,0
+1,0.277,0.277,0,0,0.267,0.2,0.374,0.5,0.5,0,0.794,0.0712
+0.667,0.162,0.162,0,0,0,0.917,0.276,0.487,0.487,0,0.00459,0.104
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125
+0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.258
+0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.29
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.282
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.223
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.116
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.186
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.242
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0715
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0919
+0.667,0.277,0.277,0.467,0,0,0,0.374,0.5,0.5,0,0,0.209
+0.667,0.274,0.274,0,0.45,0,0,0.294,0.508,0.508,0.558,0,0.219
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0.672,0,0
+0.667,0.256,0.256,0.5,0,0,0,0.233,0.508,0.508,0,0,0
+0.667,0.245,0.245,1,0,0,0,0.239,0.517,0.517,0,0,0.0743
+0.333,0.143,0.143,0.417,0,0,0,0.245,0.495,0.495,0,0,0.149
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.186
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0743
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0
+0.667,0.397,0.397,0.233,0,0,0,0.448,0.484,0.484,0,0,0.149
+1,0.183,0.183,0,0.45,0,0,0.393,0.451,0.451,0.404,0,0.186
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.17
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.153
+1,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0.201
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.119
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.37
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.151
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0.25,0,0,0,0.325,0.549,0.549,0,0,0.52
+1,0.353,0.353,0.217,0,0,0,0.488,0.641,0.641,0,0,0.149
+0.667,0.289,0.289,0.467,0,0,0,0.472,0.591,0.591,0,0,0.112
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.372
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.149
+0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.375
+1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.508
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0992
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0814
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.222,0.222,0.217,0,0,0,0.35,0.459,0.459,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743
+0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0372
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.186
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.144,0.144,0.717,0,0,0,0.291,0.507,0.507,0,0,0.112
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.186
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0743
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.472
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.496
+0.667,0.136,0.136,0.467,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0372
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.303,0
+0.333,0.143,0.143,0,0,0.0167,0.45,0.245,0.495,0.495,0,0.576,0.186
+0.333,0.142,0.142,0.467,0,0,0.667,0.258,0.495,0.495,0,0.72,0
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.202,0.207
+0.667,0.236,0.236,0,0,0.25,0,0.282,0.533,0.533,0,0.569,0
+0.667,0.239,0.239,0,0,0,0.45,0.325,0.549,0.549,0,0.416,0
+1,0.353,0.353,0.467,0.4,0,0,0.488,0.641,0.641,0.69,0,0.112
+0.667,0.289,0.289,0,0.517,0,0,0.472,0.591,0.591,0.148,0,0.0372
+0.667,0.362,0.362,0,0.217,0,0,0.497,0.566,0.566,0.583,0,0.223
+0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.223,0.223,0.233,0,0,0,0.353,0.475,0.475,0,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.257
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.409
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.252,0.252,0,0.65,0,0,0.411,0.582,0.582,0.536,0,0.149
+1,0.408,0.408,0,0.267,0,0,0.58,0.653,0.653,0.666,0,0.599
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.138
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.239
+0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0721
+0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.398
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.325
+0.667,0.27,0.27,0.417,0,0,0,0.234,0.511,0.511,0,0,0.485
+0.667,0.259,0.259,0.3,0,0,0,0.24,0.519,0.519,0,0,0.112
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.314
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.175
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.222
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.113
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.372
+0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.112
+0.667,0.454,0.454,0,0.567,0,0,0.5,0.569,0.569,0.631,0,0.582
+1,0.806,0.806,0,0.367,0,0,0.658,0.583,0.583,0,0,0.199
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.299
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0675
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0.0667,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.182
+1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.117
+0.667,0.168,0.168,0.233,0,0,0,0.277,0.488,0.488,0,0.0138,0
+0.667,0.278,0.278,0,0,0.75,0,0.228,0.511,0.511,0,0.748,0.149
+0.667,0.27,0.27,0,0,0,0.45,0.234,0.511,0.511,0,0.425,0.26
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0.687,0.186
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.416,0.0743
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.436,0.0743
+0.667,0.249,0.249,0.167,0,0,0,0.277,0.519,0.519,0,0.257,0
+0.667,0.251,0.251,0.317,0,0,0,0.284,0.536,0.536,0,0.492,0.26
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.514,0.223
+0.667,0.286,0.286,0.717,0,0,0,0.413,0.585,0.585,0,0.0749,0.0372
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.135
+1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.214
+1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.208
+1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.169
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.262
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.296
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0372
+1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.0864
+1,0.228,0.228,0.483,0,0,0,0.352,0.461,0.461,0,0,0.0896
+0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.177
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.413
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.355
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0372
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0372
+0.667,0.249,0.249,0,0,0.233,0,0.259,0.528,0.528,0,0.318,0.0743
+0.333,0.149,0.149,0,0,0.267,0.2,0.268,0.492,0.492,0,0.171,0
+0.667,0.251,0.251,0,0,0.233,0.0167,0.284,0.536,0.536,0,0.234,0.112
+0.667,0.259,0.259,0,0,0.0167,0.45,0.327,0.552,0.552,0,0.696,0.149
+0.667,0.286,0.286,0,0,0,0.467,0.413,0.585,0.585,0,0,0.0743
+0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.448
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.308
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.283
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.223
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.314,0.42,0.42,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.107,0.107,0.467,0,0,0,0.308,0.428,0.428,0,0,0.308
+0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.269
+1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.0697
+1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.241
+0.667,0.278,0.278,0.483,0,0,0,0.228,0.511,0.511,0,0,0.104
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.186
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.112
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0743
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0372
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.186
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0743
+1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.186
+1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.126
+0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.147
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221
+0.667,0.164,0.164,0.233,0,0,0,0.243,0.488,0.488,0,0,0.405
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.196
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.27
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.223
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.545
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0587
+0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.149
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206
+1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.421
+0.667,0.284,0.284,0,0,0.233,0,0.376,0.503,0.503,0,0.193,0.0511
+0.333,0.168,0.168,0,0,0.517,0,0.277,0.488,0.488,0,0.349,0
+0.333,0.164,0.164,0,0,0,0.917,0.243,0.488,0.488,0,0.379,0.112
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0.642,0.297
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0.541,0.112
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0.497,0.335
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.781,0.0372
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.216,0.0743
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.642,0
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.485,0.0372
+0.667,0.286,0.286,0.967,0,0,0,0.413,0.585,0.585,0,0,0
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0372
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0
+0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0
+0.333,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0743
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.143
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.38
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.295
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0689
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.156
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0619
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.271
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.258
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.415
+0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.26
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.112
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0743
+0.333,0.168,0.168,0.967,0.4,0,0,0.336,0.525,0.525,0.558,0,0.26
+0.667,0.351,0.351,0,0.0667,0,0,0.475,0.594,0.594,0.436,0,0.0743
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.149
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.112
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.14
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.087
+1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.255
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154
+0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.282
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.667,0.149,0.149,0.417,0,0,0,0.258,0.496,0.496,0,0,0
+0.667,0.149,0.149,0.0667,0,0,0,0.268,0.492,0.492,0,0,0.112
+0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0743
+0.667,0.154,0.154,0.417,0,0,0,0.292,0.509,0.509,0,0,0.0743
+1,0.404,0.404,0.0667,0,0,0,0.491,0.646,0.646,0,0,0.112
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.372
+1,0.656,0.656,0,0.0667,0,0,0.621,0.621,0.621,0.26,0,0.141
+0.667,0.554,0.554,0,0.867,0,0,0.525,0.544,0.544,0.495,0,0.0372
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0743
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.112
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0863
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.0173
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.113
+1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.749
+1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.261
+1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.192
+1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.185
+1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.461
+1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0.249
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.321
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.274
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.421
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0776
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.104
+0.333,0.2,0.2,0.233,0,0,0,0.366,0.53,0.53,0,0,0.186
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.213
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0.467,0,0,0,0.283,0.447,0.447,0,0,0
+0.667,0.139,0.139,0.5,0,0,0,0.305,0.463,0.463,0,0,0.149
+0.667,0.167,0.167,0.217,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.104
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.328
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.112
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.186
+0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.364
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.223
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372
+0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.421
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.155
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.228,0.228,1,0,0,0,0.352,0.461,0.461,0,0,0.137
+1,0.284,0.284,0.65,0,0,0,0.376,0.503,0.503,0,0,0.206
+1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.245
+0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.295
+0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.259
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.415
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0,0.0495,0.0495,0.233,0,0.233,0,0.258,0.465,0.465,0,0.42,0.0372
+0.333,0.154,0.154,0.717,0,0.783,0,0.292,0.509,0.509,0,0.517,0
+0.667,0.286,0.286,0,0,0,0.683,0.413,0.585,0.585,0,0.466,0
+0.667,0.351,0.351,0,0,0,0.233,0.475,0.594,0.594,0,0.638,0
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372
+0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0372
+0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0372
+0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0429
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.224
+0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0743
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.178,0,0.0743
+0.667,0.351,0.351,0,0.7,0,0,0.475,0.594,0.594,0.403,0,0.0372
+0.333,0.252,0.252,0,0.4,0,0,0.379,0.517,0.517,0.746,0,0.186
+0.667,0.554,0.554,0,0.3,0,0,0.525,0.544,0.544,0.106,0,0.112
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.149
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.204
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.231
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.26
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.533
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.368
+0.333,0.164,0.164,0,0.4,0,0,0.243,0.488,0.488,0.692,0,0.141
+0.333,0.16,0.16,0,0.533,0,0,0.246,0.488,0.488,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.205
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.273
+0.333,0.149,0.149,0,0,0.233,0,0.258,0.496,0.496,0,0.272,0.53
+0,0.0495,0.0495,0,0,0.783,0,0.258,0.465,0.465,0,0.414,0.0372
+0.333,0.15,0.15,0,0,0,0.683,0.271,0.501,0.501,0,0.436,0
+0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0372
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0372
+0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0372
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0
+0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.372
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.192
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0527
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.106
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0.279
+1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.168,0.168,0.25,0,0,0,0.277,0.488,0.488,0,0,0.183
+0.667,0.278,0.278,0.233,0,0,0,0.228,0.511,0.511,0,0,0.0881
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.175
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.228
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.341
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.372
+0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0743
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0
+0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.149
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.234
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.168,0.168,0,0,0.65,0,0.277,0.488,0.488,0,0.67,0
+1,0.164,0.164,0,0,0.617,0,0.243,0.488,0.488,0,0.544,0
+1,0.16,0.16,0,0,0,0.683,0.246,0.488,0.488,0,0.317,0.0372
+1,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0.164,0.0743
+1,0.251,0.251,0,0,0.25,0,0.234,0.528,0.528,0,0.323,0.223
+0.667,0.149,0.149,0,0,0,0.617,0.258,0.496,0.496,0,0.774,0.378
+1,0.349,0.349,0,0,0,0.767,0.287,0.546,0.546,0,0.361,0.295
+1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.451
+1,0.363,0.363,0.233,0,0,0,0.361,0.596,0.596,0,0,0.454
+1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.179
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0.128,0.0743
+0.667,0.554,0.554,0,0,0.25,0.117,0.525,0.544,0.544,0,0.549,0.0372
+0.667,0.584,0.584,0,0,0,0.8,0.512,0.528,0.528,0,0.722,0.186
+0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.661,0.0372
+0.667,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.229,0
+0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258
+1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.112
+1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.64
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.479
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0743
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743
+0.333,0.149,0.149,0.167,0,0,0,0.268,0.492,0.492,0,0,0.0743
+0.667,0.251,0.251,0.317,0,0,0,0.284,0.536,0.536,0,0,0.0372
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.186
+0.333,0.2,0.2,0.483,0,0,0,0.366,0.53,0.53,0,0,0.112
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.297
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.12
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.344,0.25
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.257
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0741
+1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0887
+1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.144
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.101,0
+0.667,0.16,0.16,0,0,0.983,0,0.246,0.488,0.488,0,0.44,0.262
+0.667,0.154,0.154,0.483,0,0.0333,0.433,0.249,0.492,0.492,0,0,0.172
+0.667,0.15,0.15,0,0,0,0.0167,0.246,0.496,0.496,0,0,0
+0.667,0.149,0.149,0,0.15,0,0,0.258,0.496,0.496,0.417,0,0
+0.667,0.149,0.149,0,0.783,0,0,0.268,0.492,0.492,0.393,0.295,0.0372
+0.667,0.251,0.251,0,0,0.5,0,0.284,0.536,0.536,0,0.555,0.335
+0.667,0.259,0.259,0,0,0,0.95,0.327,0.552,0.552,0,0.414,0.186
+0.667,0.286,0.286,0,0,0,0.2,0.413,0.585,0.585,0.182,0.509,0.0743
+0.667,0.351,0.351,0,0.7,0,0,0.475,0.594,0.594,0.391,0.361,0.223
+0.667,0.454,0.454,0,0.65,0,0,0.5,0.569,0.569,0.677,0,0
+0.667,0.554,0.554,0.483,0.05,0,0,0.525,0.544,0.544,0,0,0.335
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0743
+1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.331
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.223
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.287,0
+0.667,0.15,0.15,0,0,0.75,0,0.271,0.501,0.501,0,0.0612,0.223
+0.667,0.154,0.154,0,0,0,0.217,0.292,0.509,0.509,0,0,0.149
+0.667,0.168,0.168,0.233,0,0,0,0.336,0.525,0.525,0,0,0.149
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.324
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.102
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0743
+0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0372
+0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743
+0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0743
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.149
+1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0743
+0.333,0.2,0.2,0.483,0,0,0,0.366,0.53,0.53,0,0,0.128
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.229
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.206
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0372
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0934
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0808
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.173
+1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.109
+0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.296
+0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.244
+0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.286
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.313
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.274
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.437
+0.667,0.15,0.15,0.233,0,0,0,0.271,0.501,0.501,0,0,0.296
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0372
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.319
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.317
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.318
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.112
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.08
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.262
+0.667,0.0781,0.0781,0.25,0,0,0,0.283,0.447,0.447,0,0,0
+0.333,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0
+0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.14
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0372
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.152
+0.333,0.15,0.15,0.233,0,0,0,0.271,0.501,0.501,0,0,0.235
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0372
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.112
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.112
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0817
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.119
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.186
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.149
+0.333,0.15,0.15,0.417,0,0,0,0.271,0.501,0.501,0,0,0.0743
+0.333,0.154,0.154,0.55,0,0,0,0.292,0.509,0.509,0,0,0.297
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0743
+0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0743
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.413
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.372
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.153
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0835
+1,0.139,0.139,0.417,0,0,0,0.305,0.463,0.463,0,0,0.138
+0.667,0.167,0.167,0.3,0,0,0,0.317,0.484,0.484,0,0,0.472
+0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.112
+0.667,0.16,0.16,0.233,0,0,0,0.246,0.488,0.488,0,0,0.112
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.186
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0372
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0372
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0648
+0.667,0.286,0.286,0.167,0,0,0,0.413,0.585,0.585,0,0,0
+0.667,0.351,0.351,0.55,0.317,0,0,0.475,0.594,0.594,0.407,0,0.0372
+1,0.454,0.454,0,0.383,0,0,0.5,0.569,0.569,0.231,0,0.149
+1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.232
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.321
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.152
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0465
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.132
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.297
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.149
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.0352,0.26
+0.333,0.149,0.149,0,0,0.75,0,0.268,0.492,0.492,0,0.503,0
+0.333,0.15,0.15,0,0,0,0.7,0.271,0.501,0.501,0,0.572,0.186
+0.333,0.154,0.154,0,0,0,0.45,0.292,0.509,0.509,0.113,0.0703,0.0372
+0.333,0.168,0.168,0,0.467,0,0,0.336,0.525,0.525,0.59,0,0.122
+0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.332
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0372
+0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.163
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.214
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.0762
+1,0.0503,0.0503,0.233,0,0,0,0.274,0.443,0.443,0,0,0.096
+1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.532
+1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.253
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.235
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0743
+0.333,0.164,0.164,0,0.15,0,0,0.243,0.488,0.488,0.363,0,0.409
+0.333,0.16,0.16,0,0.55,0,0,0.246,0.488,0.488,0.268,0,0.112
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0743
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.236
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0775
+0.667,0.286,0.286,0.25,0,0,0,0.413,0.585,0.585,0,0,0.0743
+0.667,0.351,0.351,0.95,0,0,0,0.475,0.594,0.594,0,0,0
+0.667,0.454,0.454,0.233,0,0,0,0.5,0.569,0.569,0,0,0.0743
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0372
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.322
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0942
+1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.0837
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.168
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.26
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.154,0.154,0.25,0,0,0,0.292,0.509,0.509,0,0,0.112
+0.667,0.286,0.286,0.233,0,0,0,0.413,0.585,0.585,0.171,0,0.112
+1,0.501,0.501,0,0.9,0,0,0.584,0.658,0.658,0.811,0,0.203
+0.667,0.454,0.454,0,0.0333,0,0,0.5,0.569,0.569,0.664,0,0.0743
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0.731,0,0.0743
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.247
+0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.125
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.128
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.167,0.167,0.483,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.149
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.372
+0.333,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0.149
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0743
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0372
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0372
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0372
+1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.166
+0.667,0.286,0.286,0,0.65,0,0,0.413,0.585,0.585,0.414,0,0
+0.667,0.351,0.351,0,0.433,0,0,0.475,0.594,0.594,0.423,0,0
+0.667,0.454,0.454,0,0.783,0,0,0.5,0.569,0.569,0.258,0,0.186
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372
+0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0372
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0604
+1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0
+0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.191
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0372
+0.333,0.154,0.154,0,0.65,0.25,0,0.249,0.492,0.492,0.972,0.317,0.0743
+0.333,0.15,0.15,0,0.283,0,0.683,0.246,0.496,0.496,0,0.274,0.0372
+0.333,0.149,0.149,0.967,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0
+1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.0743
+1,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.43
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.26
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.444
+0.333,0.302,0.302,0,0.15,0,0,0.391,0.505,0.505,0.419,0,0.0814
+0.667,0.584,0.584,0,0.55,0,0,0.512,0.528,0.528,0.124,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0802
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.196
+1,0.284,0.284,0.667,0,0,0,0.376,0.503,0.503,0,0,0.127
+1,0.286,0.286,0.05,0,0.25,0,0.296,0.511,0.511,0,0.479,0
+0.667,0.278,0.278,0,0,0,0.45,0.228,0.511,0.511,0,0.543,0.112
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.625,0.0743
+0.667,0.259,0.259,0,0.567,0,0,0.24,0.519,0.519,0.738,0,0.112
+0.667,0.251,0.251,0,0.133,0,0,0.234,0.528,0.528,0.145,0,0.0372
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.186
+1,0.349,0.349,0.233,0,0,0,0.287,0.546,0.546,0,0,0.0743
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.615
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.454,0.454,1,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.554,0.554,0.267,0,0,0,0.525,0.544,0.544,0,0,0
+0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0
+0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.239
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0508
+1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0825
+1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.444
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.217
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.553
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.196
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.379
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.149
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0832
+0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.124
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0657,0
+1,0.236,0.236,0.75,0,0.233,0.217,0.404,0.522,0.522,0,0.709,0.0729
+1,0.295,0.295,0,0,0,0.0167,0.433,0.571,0.571,0,0.372,0.181
+1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0.281,0.257
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.0917,0
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.186
+0.333,0.159,0.159,0,0.65,0,0,0.275,0.533,0.533,0.694,0,0
+0.333,0.159,0.159,0,0.333,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.325
+1,0.417,0.417,0,0,0.7,0,0.433,0.713,0.713,0,0.269,0.384
+1,0.501,0.501,0.25,0,0,0.5,0.588,0.773,0.773,0,0,0.112
+0.667,0.453,0.453,0,0,0,0.45,0.552,0.68,0.68,0,0,0.186
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.149
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0743
+0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.123
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0958
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0496
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.115
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.0743
+0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0743
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0372
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0
+0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.424
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.117
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.158
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.259
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.191
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.283
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.596
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.261
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.176
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.293
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0372
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.112
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.149
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0372
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.246
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.133
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.157
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.047
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.509
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.355
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.054
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.326
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.226
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.149
+0.333,0.159,0.159,0.75,0,0,0,0.275,0.533,0.533,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.0372
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.26
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0372
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.18
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.367
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168
+0.667,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.12
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.171
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.112
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.16
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.381
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.303
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.335
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.0372
+0.667,0.335,0.335,0.25,0,0,0,0.434,0.543,0.543,0,0,0
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0984
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.223
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.17
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0.733,0,0.309,0.469,0.469,0,0.344,0
+1,0.0495,0.0495,0,0,0.2,0.267,0.305,0.464,0.464,0,0.344,0
+1,0.0495,0.0495,0,0,0,0.917,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.22
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.376
+1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.186
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.351
+0.667,0.291,0.291,0.25,0,0.483,0,0.263,0.581,0.581,0,0.344,0.0938
+0.667,0.279,0.279,0,0,0.7,0,0.271,0.591,0.591,0,0.454,0
+0.333,0.16,0.16,0,0,0,0.767,0.261,0.533,0.533,0,0.466,0.0743
+0.333,0.159,0.159,0,0,0,0.183,0.275,0.533,0.533,0,0.763,0.112
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.431,0.186
+0.667,0.162,0.162,0.75,0,0,0,0.29,0.538,0.538,0,0.827,0
+1,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.149
+0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0,0,0.52
+0.667,0.569,0.569,0.75,0,0,0,0.581,0.65,0.65,0,0,0
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.149
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112
+0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0743
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.167
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.363
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.128
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0496
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.16
+1,0.301,0.301,0.5,0,0,0,0.337,0.581,0.581,0,0,0.385
+1,0.424,0.424,0.25,0,0,0,0.255,0.639,0.639,0,0,0.346
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.146
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.186
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.149
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0372
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0
+1,0.905,0.905,0.5,0,0,0,0.788,0.698,0.698,0,0,0.335
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.245
+1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.187
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0797
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0983
+1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.234
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.26
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0372
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.112
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.297
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0
+0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.207
+0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.38
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112
+0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.217
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163
+0.667,0.143,0.143,0.25,0,0,0,0.331,0.493,0.493,0,0,0.29
+1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0907
+1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.499
+1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0.426
+0.667,0.291,0.291,0.75,0,0,0,0.263,0.581,0.581,0,0,0.47
+0.333,0.164,0.164,0.75,0,0,0,0.264,0.528,0.528,0,0,0.249
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.112
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.186
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0926
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.293
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.403
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.26
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.236
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.286
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0.25,0,0,0,0.331,0.493,0.493,0,0,0
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0.111,0,0.137
+0.333,0.175,0.175,0,0.733,0,0,0.298,0.523,0.523,0.698,0,0.151
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0.857,0,0.0743
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.116
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.388
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0
+0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0406
+0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.439
+0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.382
+0.333,0.172,0.172,0.5,0,0,0,0.316,0.548,0.548,0,0,0.136
+0.667,0.35,0.35,0.75,0,0,0,0.478,0.67,0.67,0,0,0.186
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0743
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.298
+0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.423
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0907
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.245
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.149
+0.333,0.172,0.172,0,0,0.233,0,0.316,0.548,0.548,0,0.0917,0
+0.333,0.2,0.2,0,0,0.467,0,0.368,0.568,0.568,0,0,0.135
+0.333,0.251,0.251,0,0,0,1,0.405,0.573,0.573,0,0,0.212
+0.333,0.309,0.309,0,0,0,0.183,0.42,0.558,0.558,0,0,0.409
+0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.149
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.112
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.145
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.124
+0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0372
+0.333,0.164,0.164,0,0,0.233,0,0.264,0.528,0.528,0,0.339,0
+0.333,0.16,0.16,0,0,0.7,0,0.261,0.533,0.533,0,0.63,0
+0.333,0.159,0.159,0,0,0,0.767,0.275,0.533,0.533,0,0.583,0.186
+0.333,0.159,0.159,0,0,0,0.417,0.286,0.528,0.528,0,0.693,0.0372
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.44,0.26
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.349,0.26
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.229,0.112
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.26
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0411
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.169,0,0
+1,0.175,0.175,0.5,0.733,0,0,0.298,0.523,0.523,0.744,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.192
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.136
+0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0,0.143
+0.333,0.16,0.16,1,0,0,0,0.261,0.533,0.533,0,0,0.112
+0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.101
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.084
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.186
+0.333,0.309,0.309,0.75,0,0,0,0.42,0.558,0.558,0,0,0.112
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.18
+0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.264
+0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.105
+1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.361
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.121
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.347
+0.333,0.17,0.17,0.5,0,0,0,0.261,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.269,0.269,0.25,0,0,0,0.293,0.601,0.601,0,0,0.112
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0743
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.149
+1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.223
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0743
+0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.246
+1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.389
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.488
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.687
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.197
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0.5,0,0,0,0.305,0.474,0.474,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.459
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.318
+0.667,0.175,0.175,0,0.4,0,0,0.298,0.523,0.523,0.635,0,0.0372
+0.667,0.299,0.299,0,0.583,0,0,0.256,0.581,0.581,0.408,0,0
+0.667,0.291,0.291,0,0.65,0.233,0,0.263,0.581,0.581,0.635,0.627,0.0743
+1,0.394,0.394,0.75,0.333,0,0.95,0.277,0.654,0.654,0.221,0.534,0
+1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0.353,0
+1,0.269,0.269,0,0.15,0,0,0.293,0.601,0.601,0.458,0.246,0
+1,0.269,0.269,0,0.583,0,0,0.315,0.591,0.591,0.124,0,0.105
+0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.26
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0372
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0743
+0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.149
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0743
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.397
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.158
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.265
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.135
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.19
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.42
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0624
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.207
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.283
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0
+0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0743
+0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.43
+0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.213
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.667,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.26
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.223
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.297
+0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0954
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0372
+0.333,0.2,0.2,0,0,0.233,0,0.368,0.568,0.568,0,0.563,0.0372
+0.667,0.453,0.453,0,0,0,0.7,0.552,0.68,0.68,0,0.0841,0.149
+0.667,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.0372
+0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.384
+0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.216
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.424
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743
+0.333,0.172,0.172,0.25,0,0,0,0.316,0.548,0.548,0,0,0.0372
+0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.0743
+1,0.655,0.655,0.5,0.4,0,0,0.699,0.788,0.788,0.718,0.133,0.0743
+1,0.829,0.829,0,0.583,0.467,0,0.743,0.743,0.743,0.605,0.459,0.436
+1,0.905,0.905,0,0,0,0.7,0.788,0.698,0.698,0.178,0.401,0.201
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.717,0.229
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.596,0.0743
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.572,0.149
+1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0.494,0.0372
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0.349,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.084
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0372
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+0.667,0.172,0.172,0.5,0,0.467,0,0.346,0.518,0.518,0,0.639,0.26
+1,0.301,0.301,0,0,0,0.467,0.337,0.581,0.581,0,0.844,0.0743
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0.543,0
+0.333,0.17,0.17,0.25,0,0,0,0.261,0.523,0.523,0,0.774,0.186
+0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0.493,0.0372
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0.365,0.409
+0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0743
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0.7,0,0.258,0.465,0.465,0,0.534,0
+0.333,0.309,0.309,0,0,0,0.233,0.42,0.558,0.558,0,0.361,0
+0.333,0.335,0.335,0.25,0,0,0,0.434,0.543,0.543,0,0,0
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0
+0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.2
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.352
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.162
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.268
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.223
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.122,0,0.252
+1,0.829,0.829,0,0.733,0,0,0.743,0.743,0.743,0.557,0,0.307
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.447
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0743
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.318
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.289
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0
+0.333,0.159,0.159,0.75,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.149
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0372
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.372
+0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0,0,0.26
+0.667,0.569,0.569,0.5,0,0,0,0.581,0.65,0.65,0,0,0.186
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.203,0.0372
+1,0.116,0.116,0,0,0.233,0.233,0.357,0.489,0.489,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0.95,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0966
+0.667,0.279,0.279,0.25,0,0,0,0.271,0.591,0.591,0,0,0.254
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.223
+0.333,0.172,0.172,0,0.65,0,0,0.316,0.548,0.548,0.742,0,0
+0.667,0.35,0.35,0,0.0833,0,0,0.478,0.67,0.67,0.738,0,0.269
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.677,0,0.418
+0.667,0.569,0.569,0.5,0,0,0,0.581,0.65,0.65,0.72,0,0.149
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.705,0,0
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.101,0.105
+1,0.301,0.301,0.5,0,0.233,0.217,0.337,0.581,0.581,0,0,0.258
+1,0.299,0.299,0,0,0,0.0167,0.256,0.581,0.581,0,0,0.385
+0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.194
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0.75,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.172,0.172,0.75,0,0,0,0.316,0.548,0.548,0,0,0
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112
+0.667,0.569,0.569,0,0.15,0,0,0.581,0.65,0.65,0.38,0,0.149
+0.667,0.62,0.62,0,0.733,0,0,0.611,0.621,0.621,0.573,0,0.166
+0.667,0.564,0.564,0,0.0833,0,0,0.596,0.601,0.601,0.28,0,0.518
+0.667,0.356,0.356,0.25,0,0,0,0.522,0.551,0.551,0,0,0.24
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.119
+0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.173
+0.333,0.0495,0.0495,0,0.15,0,0,0.258,0.465,0.465,0.375,0,0
+0.333,0.174,0.174,0,0.833,0,0,0.257,0.523,0.523,0.562,0,0.112
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0.679,0,0.297
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.584,0,0.0743
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0.703,0,0.112
+0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0.733,0,0.0372
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0.434,0,0
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0.635,0,0
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0.67,0,0.186
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.186
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.112
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0372
+0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.26
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.162
+1,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.0837
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743
+0.667,0.17,0.17,0.5,0,0,0,0.261,0.523,0.523,0,0,0.26
+0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0,0.149
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.112
+1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0.112
+1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0
+1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0.149
+1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.186
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.186
+0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0
+0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+0.667,0.0743,0.0743,0.5,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.066,0.066,0,0,0,0,0.36,0.482,0.482,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.175,0.175,0.25,0,0,0,0.298,0.523,0.523,0,0,0
+1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.246
+1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.118
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.269
+0.333,0.16,0.16,0.25,0,0,0,0.261,0.533,0.533,0,0,0.211
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.155
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.227
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.442
+0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.146
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.149
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.149
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.144
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.114
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0905
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.379
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.137
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.164,0.164,0.75,0,0,0,0.264,0.528,0.528,0,0,0.112
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.149
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0.75,0,0,0,0.286,0.528,0.528,0,0,0.149
+0.667,0.274,0.274,0.5,0,0.233,0,0.323,0.611,0.611,0,0.225,0.112
+0.667,0.294,0.294,0,0,0,0.467,0.374,0.631,0.631,0,0.55,0
+0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.0372
+0.667,0.453,0.453,0.5,0,0,0,0.552,0.68,0.68,0.147,0,0.0372
+0.667,0.569,0.569,0,0.733,0,0,0.581,0.65,0.65,0.794,0,0.0743
+0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.0743
+0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.0372
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129
+1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.546
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.103
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0986
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.186
+0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.349
+0.667,0.279,0.279,0.25,0,0,0,0.271,0.591,0.591,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0372
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149
+0.667,0.274,0.274,0,0,0.233,0,0.323,0.611,0.611,0,0.469,0.0743
+1,0.294,0.294,0,0,0,0.7,0.374,0.631,0.631,0,0.378,0.181
+1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.502,0.0743
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.106,0.0372
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186
+0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.0372
+0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.261
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.087
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.383
+0.667,0.279,0.279,0,0.4,0,0,0.271,0.591,0.591,0.503,0,0.23
+0.333,0.16,0.16,0,0.583,0,0,0.261,0.533,0.533,0.282,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0372
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.223
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372
+0.667,0.564,0.564,0,0.4,0,0,0.596,0.601,0.601,0.698,0,0.446
+0.667,0.356,0.356,0,0.583,0,0,0.522,0.551,0.551,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.075
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0743
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.196
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.284
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.233
+0.667,0.271,0.271,0,0,0.233,0,0.263,0.601,0.601,0,0.291,0.451
+0.667,0.269,0.269,0,0,0.7,0,0.293,0.601,0.601,0,0.242,0.376
+0.667,0.269,0.269,0.5,0,0,0.767,0.315,0.591,0.591,0,0,0.0788
+0.333,0.162,0.162,0,0,0,0.183,0.29,0.538,0.538,0,0,0
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.372
+1,0.501,0.501,0.25,0,0,0,0.588,0.773,0.773,0,0,0.0743
+1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.26
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743
+1,0.821,0.821,0,0.4,0,0,0.765,0.669,0.669,0.623,0,0.149
+1,0.356,0.356,0,0.0833,0,0,0.522,0.551,0.551,0.497,0,0
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0.818,0,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0.271,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0
+1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0
+1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0743
+1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.26
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+0.333,0.237,0.237,0.617,0,0,0,0.316,0.547,0.547,0,0,0
+0.333,0.301,0.301,0.75,0,0,0,0.367,0.567,0.567,0,0,0.373
+1,0.946,0.946,0,0.267,0,0,0.697,0.785,0.785,0.484,0,0.0372
+0.667,0.339,0.339,0,0.517,0,0,0.419,0.557,0.557,0.135,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126
+1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.263
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.21
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.175,0.175,0.617,0,0,0,0.264,0.528,0.528,0,0,0
+0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0
+0.667,0.647,0.647,0,0.517,0,0,0.55,0.679,0.679,0.594,0,0
+0.667,0.629,0.629,0,0.533,0,0,0.58,0.649,0.649,0.302,0,0.0372
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.186
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0
+0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0888
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.532
+1,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0.0963
+0.667,0.184,0.184,0.133,0,0,0,0.297,0.523,0.523,0,0,0.163
+0.667,0.185,0.185,0.5,0,0,0,0.257,0.523,0.523,0,0,0.316
+0.333,0.181,0.181,0.0333,0,0,0,0.26,0.523,0.523,0,0,0.347
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.147
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.165
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.276
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.112
+1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.223
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.587,0
+1,0.051,0.051,0,0,0,0.967,0.293,0.468,0.468,0,0.644,0
+1,0.0816,0.0816,0,0,0,0.0667,0.305,0.473,0.473,0,0.569,0
+1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0.434,0.137
+1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0.584,0.107
+1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0.437,0.233
+1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0.72,0.235
+1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.218
+1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0372
+0.667,0.171,0.171,0.267,0,0,0,0.26,0.532,0.532,0,0,0
+1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.251
+1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.112
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.168
+1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.592
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.179
+0.333,0.348,0.348,0.267,0,0,0,0.404,0.572,0.572,0,0,0.186
+0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0
+0.333,0.282,0.282,0,0.25,0,0,0.434,0.542,0.542,0.844,0,0
+0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0.301,0,0.297
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.225
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0663
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.184,0.184,0,0,0.35,0,0.297,0.523,0.523,0,0.303,0.112
+1,0.321,0.321,0,0,0.583,0,0.255,0.58,0.58,0,0.887,0
+1,0.312,0.312,0,0,0,0.883,0.263,0.58,0.58,0,0.644,0
+0.667,0.175,0.175,0,0,0,0.15,0.264,0.528,0.528,0,0.528,0.112
+0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.624,0.223
+0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.402,0
+0.667,0.173,0.173,0,0.267,0,0,0.286,0.528,0.528,0.44,0,0.15
+0.667,0.338,0.338,0,0.517,0,0,0.322,0.609,0.609,0.527,0,0.0747
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0
+0.667,0.553,0.553,0.267,0,0,0,0.477,0.669,0.669,0,0,0.112
+0.667,0.647,0.647,0.367,0.25,0,0,0.55,0.679,0.679,0.649,0.0489,0.0743
+0.667,0.629,0.629,0.167,0,0.467,0,0.58,0.649,0.649,0,0.234,0
+0.667,0.515,0.515,0,0,0,0.85,0.609,0.619,0.619,0,0,0.149
+0.667,0.394,0.394,0,0,0,0.7,0.595,0.6,0.6,0,0,0.0743
+0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0785
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0138,0
+0.333,0.0495,0.0495,0,0,0.233,0.0833,0.258,0.465,0.465,0,0.454,0
+0.333,0.185,0.185,0,0,0,0.95,0.257,0.523,0.523,0,0.434,0
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.401,0
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.446,0
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.289,0.191
+0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0743
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372
+0.333,0.237,0.237,0,0.0167,0,0,0.316,0.547,0.547,0.263,0,0.297
+0.333,0.301,0.301,0,0.767,0,0,0.367,0.567,0.567,0.579,0,0.0743
+0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.0743
+0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.483
+0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.112
+0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.105
+0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.229
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.163
+1,0.0816,0.0816,0,0,0.233,0,0.305,0.473,0.473,0,0.445,0.0814
+1,0.245,0.245,0,0,0,0.583,0.403,0.521,0.521,0,0,0.108
+1,0.177,0.177,0,0,0,0.7,0.345,0.518,0.518,0,0,0.118
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0743
+0.333,0.185,0.185,0.117,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.181,0.181,0.7,0,0,0,0.26,0.523,0.523,0,0,0.223
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0743
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0743
+0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.139
+1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.341
+1,0.804,0.804,0.267,0.0167,0,0,0.586,0.77,0.77,0.243,0,0.248
+0.333,0.348,0.348,0,0.233,0,0,0.404,0.572,0.572,0.291,0,0.112
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.223
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0372
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.281
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0323
+1,0.0816,0.0816,0.367,0,0,0,0.305,0.473,0.473,0,0,0.147
+1,0.245,0.245,0.167,0,0,0,0.403,0.521,0.521,0,0,0.0712
+0.667,0.177,0.177,0.117,0,0,0,0.345,0.518,0.518,0,0,0.131
+0.333,0.184,0.184,0.7,0.267,0.233,0,0.297,0.523,0.523,0.447,0.316,0.153
+0.333,0.185,0.185,0,0.783,0,0.583,0.257,0.523,0.523,0.236,0.18,0.0372
+0.333,0.181,0.181,0,0,0,0.967,0.26,0.523,0.523,0,0,0.186
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372
+0.333,0.171,0.171,0,0.0167,0,0,0.26,0.532,0.532,0.36,0,0.223
+0.333,0.169,0.169,0,0.5,0,0,0.275,0.532,0.532,0.892,0,0.0743
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.27
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.147
+0.667,0.647,0.647,0.533,0,0,0,0.55,0.679,0.679,0,0,1
+0.667,0.629,0.629,0,0.517,0,0,0.58,0.649,0.649,0.718,0,0.236
+0.667,0.515,0.515,0,0.533,0,0,0.609,0.619,0.619,0.171,0,0.166
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.137
+1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.17
+1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.109
+1,0.177,0.177,0,0,0.233,0,0.345,0.518,0.518,0,0.291,0
+1,0.184,0.184,0,0,0,0.25,0.297,0.523,0.523,0,0,0.0743
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0743
+0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.112
+0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.055,0
+0.333,0.348,0.348,0,0,0.467,0,0.404,0.572,0.572,0,0.332,0.149
+0.333,0.339,0.339,0,0,0,0.85,0.419,0.557,0.557,0,0,0.186
+0.333,0.282,0.282,0,0,0,0.433,0.434,0.542,0.542,0,0,0.149
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743
+0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0619
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.177,0.177,0.583,0,0,0,0.345,0.518,0.518,0,0,0
+1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.174
+1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.179
+1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.429
+1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.264
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0.4,0,0,0.258,0.465,0.465,0.584,0,0.0743
+0.333,0.194,0.194,0,0.383,0,0,0.29,0.537,0.537,0.113,0,0
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0372
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.186
+0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.129
+0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.149
+0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.169
+0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0539
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.161
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119
+1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0864
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.263
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.262
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.112
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0887
+0.667,0.647,0.647,0.25,0,0,0,0.55,0.679,0.679,0,0,0.169
+0.667,0.629,0.629,0.567,0,0,0,0.58,0.649,0.649,0,0,0.174
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.279
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0743
+1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.0743
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.335
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0
+0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.163
+0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0922
+0.667,0.184,0.184,0.117,0,0,0,0.297,0.523,0.523,0,0,0.184
+0.667,0.321,0.321,0.15,0,0,0,0.255,0.58,0.58,0,0,0.0743
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0372
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.558
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0
+0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0372
+0.667,0.173,0.173,0,0,0.233,0,0.286,0.528,0.528,0,0.00917,0.0372
+0.667,0.194,0.194,0,0,0,0.583,0.29,0.537,0.537,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0.183,0.258,0.465,0.465,0,0,0.0743
+0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.112
+1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.446
+0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.305,0.305,0,0.267,0,0,0.432,0.57,0.57,0.343,0,0.18
+1,0.452,0.452,0,0.517,0,0,0.376,0.637,0.637,0.26,0,0.0662
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.149
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0829
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0743
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.335
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.223
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.222
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.173
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.134
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0743
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.244
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.253
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.223
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.186
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0.117,0,0,0,0.29,0.537,0.537,0,0,0
+0.333,0.237,0.237,0.417,0,0,0,0.316,0.547,0.547,0,0,0.0372
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.297
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.23
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.489
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.257
+1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.468
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896
+1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.189
+1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0691
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.494
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.492
+0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.112
+1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.186
+0.667,0.338,0.338,0.267,0,0,0,0.322,0.609,0.609,0,0,0.112
+0.667,0.425,0.425,0,0,0.233,0,0.373,0.629,0.629,0,0.44,0.112
+0.667,0.553,0.553,0,0,0,0.833,0.477,0.669,0.669,0,0.599,0.112
+0.667,0.647,0.647,0,0,0,0.717,0.55,0.679,0.679,0,0.466,0.112
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0.43,0.333
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0.407,0
+0.667,0.394,0.394,0,0,0.233,0,0.595,0.6,0.6,0,0.356,0.244
+1,0.493,0.493,0,0,0,0.833,0.652,0.593,0.593,0,0.563,0.08
+1,0.249,0.249,0,0,0,0.2,0.553,0.533,0.533,0,0.538,0.0978
+1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.227
+1,0.066,0.066,0,0,0,0,0.359,0.481,0.481,0,0,0.118
+1,0.0495,0.0495,0,0,0,0,0.359,0.471,0.471,0,0,0.121
+1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.204
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.21
+1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.172
+1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.16
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.258
+0.667,0.3,0.3,0.967,0.0167,0,0,0.27,0.59,0.59,0.321,0,0.104
+0.667,0.292,0.292,0,0.767,0,0,0.263,0.6,0.6,0.612,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.186
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.149
+0.333,0.237,0.237,0.117,0,0,0,0.316,0.547,0.547,0,0,0.149
+0.333,0.301,0.301,0.7,0,0,0,0.367,0.567,0.567,0,0,0.149
+0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.0743
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.104
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.207
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.372
+0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.314
+1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0986
+1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.253
+1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.203
+0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.195
+0.667,0.171,0.171,0.267,0,0,0,0.26,0.532,0.532,0,0,0.119
+1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.225
+1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.195
+1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.149
+0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.186
+1,0.553,0.553,0,0.4,0.233,0,0.477,0.669,0.669,0.577,0.462,0.394
+0.667,0.647,0.647,0,0.383,0.467,0,0.55,0.679,0.679,0.338,0.206,0.0743
+0.667,0.629,0.629,0,0,0,0.25,0.58,0.649,0.649,0,0,0.0372
+0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.201
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.147
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.427
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0817
+0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0743
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0.372
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.335
+0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0
+0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0743
+0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.223
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.13
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0344
+1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.12
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.186
+0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372
+0.667,0.171,0.171,0.617,0,0,0,0.26,0.532,0.532,0,0,0.384
+0.333,0.169,0.169,0.2,0,0,0,0.275,0.532,0.532,0,0,0.127
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.338,0.338,0.117,0,0,0,0.322,0.609,0.609,0,0,0.0743
+0.667,0.425,0.425,0.417,0,0,0,0.373,0.629,0.629,0,0,0.0743
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0
+0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.223
+0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.188
+0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.218
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.106
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.175,0.175,0.167,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.186
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.26
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0684
+0.667,0.553,0.553,0.117,0,0,0,0.477,0.669,0.669,0,0,0.18
+0.667,0.647,0.647,0.15,0.267,0,0,0.55,0.679,0.679,0.479,0,0.112
+0.667,0.629,0.629,0,0.783,0,0,0.58,0.649,0.649,0.623,0,0.149
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0.44,0,0
+0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0.751,0,0.112
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0.712,0,0.0743
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0.315,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0
+1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.181,0.181,0,0.517,0,0,0.26,0.523,0.523,0.571,0,0.0743
+0.333,0.175,0.175,0,0.267,0,0,0.264,0.528,0.528,0.0983,0,0.26
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.335
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372
+0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.186
+0.333,0.301,0.301,0.617,0,0.6,0,0.367,0.567,0.567,0,0.616,0.0372
+0.667,0.647,0.647,1,0,0.567,0,0.55,0.679,0.679,0,0.274,0.149
+0.667,0.629,0.629,1,0,0,0.9,0.58,0.649,0.649,0,0,0
+0.333,0.282,0.282,0.4,0,0,0.383,0.434,0.542,0.542,0,0,0.186
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0
+0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0
+0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.177,0.177,0.15,0,0,0,0.345,0.518,0.518,0,0,0.0372
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.0528,0.0372
+0.333,0.185,0.185,0,0,0.467,0,0.257,0.523,0.523,0,0.565,0.142
+0.333,0.181,0.181,0,0,0,0.85,0.26,0.523,0.523,0,0.636,0
+0.333,0.175,0.175,0,0,0,0.95,0.264,0.528,0.528,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.239
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0
+0.333,0.301,0.301,0.367,0,0,0,0.367,0.567,0.567,0,0,0.0372
+0.333,0.348,0.348,0.167,0,0,0,0.404,0.572,0.572,0,0,0
+0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.372
+1,0.566,0.566,0,0,0.233,0,0.763,0.667,0.667,0,0.286,0.112
+1,0.345,0.345,0,0.0167,0,0.583,0.521,0.55,0.55,0.223,0.63,0.0372
+1,0.116,0.116,0,0.767,0,0.883,0.356,0.488,0.488,0.456,0,0.0743
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+1,0.0495,0.0495,0.533,0,0,0,0.308,0.468,0.468,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.667,0.184,0.184,0.117,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.185,0.185,0.15,0,0,0,0.257,0.523,0.523,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.171
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.322
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.409
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.149
+0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.26
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.242
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.551
+0.667,0.629,0.629,0.117,0,0,0,0.58,0.649,0.649,0,0,0.112
+0.667,0.515,0.515,0.417,0,0,0,0.609,0.619,0.619,0,0,0.0372
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.112
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372
+1,0.116,0.116,0,0,0,0.0833,0.356,0.488,0.488,0,0,0.266
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0.0983,0,0
+1,0.177,0.177,1,0.9,0,0,0.345,0.518,0.518,0.66,0,0
+0.667,0.184,0.184,0.133,0.15,0,0,0.297,0.523,0.523,0.575,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.731,0,0.0928
+0.667,0.181,0.181,0.5,0,0,0,0.26,0.523,0.523,0,0,0.283
+0.667,0.3,0.3,0.0333,0,0,0,0.27,0.59,0.59,0,0,0
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0
+0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0372
+0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0743
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0743
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.372
+0.667,0.553,0.553,0,0,0.233,0,0.477,0.669,0.669,0,0.138,0.112
+0.667,0.647,0.647,0,0,0,0.467,0.55,0.679,0.679,0,0.411,0.149
+0.667,0.629,0.629,0,0,0,0.817,0.58,0.649,0.649,0,0.63,0.149
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0.131,0.256
+0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0
+0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0746
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.149
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.488
+0.667,0.301,0.301,0.25,0,0,0,0.367,0.567,0.567,0,0,0.532
+1,0.647,0.647,0.0167,0,0,0,0.55,0.679,0.679,0,0,0.267
+1,0.919,0.919,0,0,0.483,0,0.741,0.741,0.741,0,0.479,0
+1,0.747,0.747,0,0,0.217,0.25,0.785,0.696,0.696,0,0,0.112
+1,0.566,0.566,0,0,0,0.267,0.763,0.667,0.667,0,0,0.26
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0.617,0,0,0,0.305,0.473,0.473,0,0,0.147
+1,0.245,0.245,0.2,0,0,0,0.403,0.521,0.521,0,0,0.0601
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0743
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0743
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.352
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0
+0.667,0.289,0.289,0.117,0,0,0,0.292,0.6,0.6,0,0,0.0743
+1,0.297,0.297,0.15,0,0,0,0.314,0.59,0.59,0,0,0.0372
+1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0
+0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.26
+0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0743
+0.667,0.348,0.348,0,0.0167,0,0,0.404,0.572,0.572,0.321,0,0.112
+0.667,0.339,0.339,0,1,0,0,0.419,0.557,0.557,0.516,0,0.0372
+0.333,0.0495,0.0495,0,0.0333,0,0,0.258,0.465,0.465,0,0,0.451
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.203
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.245,0.245,0.117,0,0,0,0.403,0.521,0.521,0,0,0.225
+1,0.433,0.433,0.267,0,0,0,0.52,0.622,0.622,0,0,0.286
+0.333,0.184,0.184,0.15,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.185,0.185,0,0,0.35,0,0.257,0.523,0.523,0,0.396,0.0372
+0.333,0.181,0.181,0,0,0.583,0,0.26,0.523,0.523,0,0.474,0.149
+0.333,0.175,0.175,0,0,0,0.25,0.264,0.528,0.528,0,0.677,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.543,0.372
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.568,0
+0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.508,0
+0.667,0.338,0.338,0.267,0,0,0,0.322,0.609,0.609,0,0.213,0.0372
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.551,0.186
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.542,0.149
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0.581,0.186
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0.537,0
+0.333,0.282,0.282,0.617,0,0,0,0.434,0.542,0.542,0,0.673,0.0372
+0.333,0.222,0.222,1,0,0,0,0.426,0.532,0.532,0,0.365,0.152
+0.667,0.197,0.197,0.3,0,0,0,0.389,0.508,0.508,0,0.11,0.0372
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189
+1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0893
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0372
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0372
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.397
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.251
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.223
+0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.223
+1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.112
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.112
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0372
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.112
+0.667,0.629,0.629,0,0,0.1,0,0.58,0.649,0.649,0,0.171,0
+0.667,0.515,0.515,0,0,0.367,0.1,0.609,0.619,0.619,0,0.22,0.0372
+0.667,0.394,0.394,0,0,0,1,0.595,0.6,0.6,0,0,0
+0.667,0.0495,0.0495,0,0,0,0.45,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.318,0.318,0.417,0,0,0,0.337,0.58,0.58,0,0,0.109
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.112
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.149
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0372
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.142
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.374
+0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.305,0.305,0.7,0.517,0,0,0.432,0.57,0.57,0.646,0,0.143
+0.667,0.318,0.318,0,0.533,0,0,0.337,0.58,0.58,0,0,0.293
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.186
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.26
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.194,0.194,0.267,0,0,0,0.29,0.537,0.537,0,0,0
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0
+0.333,0.301,0.301,0.267,0,0,0,0.367,0.567,0.567,0,0,0
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.186
+0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0
+0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.201
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.177
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.363
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.2
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.0372
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.297
+0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.149
+0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.402
+0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0372
+0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.188
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.137
+0.333,0.253,0.253,0,0,0.483,0,0.354,0.61,0.61,0,0.335,0
+0.333,0.323,0.323,0,0,0,0.467,0.419,0.635,0.635,0,0.572,0.0372
+0.333,0.366,0.366,0,0,0,1,0.465,0.641,0.641,0,0.94,0.112
+0.333,0.344,0.344,0,0,0,1,0.484,0.622,0.622,0,0.534,0
+0.333,0.277,0.277,0,0,0,0.567,0.503,0.604,0.604,0,0.26,0.112
+0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.089
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0907
+1,0.313,0.313,0,0.4,0,0,0.524,0.68,0.68,0.523,0,0.18
+0.667,0.33,0.33,0,0.683,0,0,0.403,0.692,0.692,0,0,0.346
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.0616
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.288
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.3
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.269
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0455
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.355
+0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.346
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.213
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.335
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0.135
+1,0.869,0.869,0.583,0,0,0,0.741,0.974,0.974,0,0,0.183
+1,1,1,0.3,0,0,0,0.881,0.993,0.993,0,0,0.112
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.372
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.149
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.186
+0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.149
+0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0414
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.248
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.125
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.112
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.186
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0
+0.667,0.683,0.683,0.4,0,0,0,0.673,0.817,0.817,0,0,0
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.207
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.186
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.112
+0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.181
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0823
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.253
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.105
+0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.182,0.182,0.5,0,0,0,0.316,0.585,0.585,0,0,0.0743
+0.333,0.204,0.204,0.05,0,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.253,0.253,1,0,0,0,0.354,0.61,0.61,0,0,0
+0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.112
+0.667,0.683,0.683,0.817,0,0,0,0.673,0.817,0.817,0,0,0.298
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.111
+0.667,0.504,0.504,0,0.4,0,0,0.748,0.742,0.742,0.43,0,0.623
+1,0.218,0.218,0,0.417,0,0,0.493,0.591,0.591,0.258,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.156
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.289
+0.667,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.185
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.235
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0.15,0,0.35
+0.333,0.183,0.183,0,0.9,0,0,0.288,0.585,0.585,0.562,0,0.149
+0.333,0.178,0.178,0,0.183,0.733,0,0.284,0.591,0.591,0.839,0.394,0
+0.333,0.177,0.177,0,0,0,0.467,0.302,0.591,0.591,0,0.794,0.112
+0.333,0.182,0.182,0,0,0,1,0.316,0.585,0.585,0,0.22,0.112
+0.667,0.359,0.359,0,0,0,0.183,0.384,0.73,0.73,0,0.471,0.0372
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.375,0.0372
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.471,0.0743
+0.667,0.683,0.683,0.267,0,0,0,0.673,0.817,0.817,0,0.564,0.0372
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0743
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.161
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0937
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.355
+1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.166
+1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.6
+1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.233
+1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.366
+0.667,0.307,0.307,0.267,0,0,0,0.31,0.717,0.717,0,0,0.0759
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.149
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.149
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372
+0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149
+0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0743
+0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.112
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0
+0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.112
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.18
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.258
+1,0.116,0.116,0.5,0,0,0,0.422,0.567,0.567,0,0,0.429
+0.667,0.251,0.251,0.617,0,0,0,0.487,0.617,0.617,0,0,0.0811
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.0372
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.355
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.167
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0743
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.112
+0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0
+0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0372
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.112
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0743
+0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.24
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.19,0.19,0.55,0,0,0,0.33,0.579,0.579,0,0,0.0743
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0743
+0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.223
+0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0372
+0.667,0.307,0.307,0.55,0,0,0,0.31,0.717,0.717,0,0,0.0372
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0
+1,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.223
+1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0743
+1,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0
+1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.112
+1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.112
+0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0372
+0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.444,0.444,0.25,0,0,0,0.657,0.787,0.787,0,0,0.249
+0.667,0.33,0.33,0.0167,0,0,0,0.403,0.692,0.692,0,0,0.118
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0743
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.112
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.252
+0.333,0.204,0.204,0.75,0,0,0,0.321,0.597,0.597,0,0,0.177
+0.667,0.457,0.457,0.0833,0,0,0,0.449,0.755,0.755,0,0,0.208
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.223
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.399
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.295
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.26
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0
+0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.161
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.256
+1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0.126
+0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.162
+0.333,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.168
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.299
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.178,0.178,0,0.4,0,0,0.284,0.591,0.591,0.551,0,0
+0.333,0.177,0.177,0,0.417,0,0,0.302,0.591,0.591,0.549,0,0.0372
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.653,0,0.0743
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.555,0,0.129
+0.667,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.297
+0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.112
+1,1,1,0,0.15,0,0,0.881,0.993,0.993,0.415,0,0.223
+1,0.933,0.933,0,0.667,0,0,0.937,0.937,0.937,0.5,0,0
+1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.297
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.172
+0.667,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.231
+0.667,0.313,0.313,0.267,0,0,0,0.524,0.68,0.68,0,0,0.0546
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.139
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.357
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0743
+0.667,0.316,0.316,0,0.4,0,0,0.319,0.705,0.705,0.686,0,0
+0.667,0.307,0.307,0.5,0.417,0,0,0.31,0.717,0.717,0.224,0,0.0372
+0.667,0.305,0.305,0.617,0,0,0,0.347,0.717,0.717,0,0,0
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0372
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.149
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0743
+1,0.869,0.869,0.75,0,0,0,0.741,0.974,0.974,0,0,0.0372
+1,1,1,0.367,0,0,0,0.881,0.993,0.993,0,0,0.112
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.158,0,0.0372
+0.667,0.504,0.504,0,0.533,0,0,0.748,0.742,0.742,0.807,0,0
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.33
+0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.294
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.142
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0743
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.178,0.178,0.5,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.177,0.177,0.05,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0372
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0743
+0.667,0.596,0.596,0,0.4,0,0,0.58,0.805,0.805,0.668,0,0.149
+0.667,0.683,0.683,0,0.417,0,0,0.673,0.817,0.817,0,0,0.297
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.0891,0,0.372
+0.667,0.504,0.504,0,0.817,0,0,0.748,0.742,0.742,0.814,0,0.112
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.288,0,0.112
+0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0743
+1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.307
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0832
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.147
+1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.139
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.325
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.272
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.298
+0.667,0.328,0.328,0,0.65,0,0,0.31,0.692,0.692,0.675,0,0.35
+0.667,0.316,0.316,0,0.167,0,0,0.319,0.705,0.705,0.636,0,0.14
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.226
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.102
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.13,0,0
+0.667,0.359,0.359,0,0.9,0,0,0.384,0.73,0.73,0.475,0,0.112
+0.333,0.253,0.253,0.5,0.717,0,0,0.354,0.61,0.61,0.67,0,0.244
+1,0.869,0.869,0.05,0,0,0,0.741,0.974,0.974,0.536,0,0.223
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.822,0,0.372
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.158,0,0.112
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.149
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0931
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.203
+0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.199
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.138
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.316
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.382
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.151
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0372
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0372
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.212,0,0.0372
+0.667,0.253,0.253,0,0.817,0,0,0.354,0.61,0.61,0.609,0,0
+1,0.596,0.596,0.833,0,0,0,0.58,0.805,0.805,0,0,0.339
+0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0
+0.333,0.344,0.344,0.25,0,0,0,0.484,0.622,0.622,0,0.0657,0.335
+0.333,0.277,0.277,0.3,0,0.733,0,0.503,0.604,0.604,0,0.731,0.258
+0.667,0.386,0.386,0,0,0,0.717,0.729,0.717,0.717,0,0.0917,0
+0.667,0.342,0.342,0,0,0,0.933,0.636,0.655,0.655,0,0,0.0743
+0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.279
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.154
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0967
+0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.213
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.286
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.195
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.351
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.429
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.177,0.177,0.267,0.65,0,0,0.302,0.591,0.591,0.744,0,0.0743
+0.333,0.182,0.182,0,0.433,0,0,0.316,0.585,0.585,0.792,0,0.0743
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372
+0.667,0.596,0.596,0.55,0,0,0,0.58,0.805,0.805,0,0,0.0372
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.149
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.149
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0743
+0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0743
+0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372
+0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0836
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.367
+1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.455
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.273
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.375
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0743
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0743
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.112
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.223
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.112
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0
+0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0513,0.0513,0.25,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0829,0.0829,0.0167,0,0,0,0.34,0.516,0.516,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.288
+1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.196
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.439
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.263
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0.132,0,0.344
+0.667,0.305,0.305,0,0.9,0,0,0.347,0.717,0.717,0.707,0.102,0.371
+0.667,0.314,0.314,0,0.183,0.233,0.217,0.375,0.705,0.705,0.479,0.635,0.198
+0.667,0.359,0.359,0,0,0,0.883,0.384,0.73,0.73,0,0.37,0.0743
+0.667,0.457,0.457,0.267,0,0,0,0.449,0.755,0.755,0,0.823,0
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.0917,0.569
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.532
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.115
+0.667,0.504,0.504,0.267,0,0,0,0.748,0.742,0.742,0,0,0
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.173
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.167
+1,0.15,0.15,0.5,0,0,0,0.372,0.541,0.541,0,0,0.78
+1,0.444,0.444,0.05,0,0,0,0.657,0.787,0.787,0,0,0.264
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.435
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.112
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.223
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372
+0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.283
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.405
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.234
+0.667,0.638,0.638,0,0.65,0,0,0.711,0.78,0.78,0.707,0,0.112
+0.667,0.504,0.504,0,0.433,0,0,0.748,0.742,0.742,0,0,0.149
+0.667,0.386,0.386,0,0,0.233,0,0.729,0.717,0.717,0,0.22,0.0372
+1,0.342,0.342,0,0.4,0,0.467,0.636,0.655,0.655,0.646,0.128,0.232
+1,0.183,0.183,0,0.683,0,1,0.552,0.605,0.605,0.503,0,0.0372
+1,0.099,0.099,0,0,0,0.183,0.459,0.592,0.592,0.412,0,0
+1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0.163
+1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0,0.153
+1,0.0495,0.0495,0,0,0,0,0.422,0.542,0.542,0,0,0.0811
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.193,0.193,0.833,0,0,0,0.279,0.579,0.579,0,0,0
+0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.136
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.265
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.253
+0.667,0.359,0.359,0,0.4,0,0,0.384,0.73,0.73,0.555,0,0.335
+0.667,0.457,0.457,0,0.683,0,0,0.449,0.755,0.755,0.288,0,0
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.335
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0743
+0.667,0.638,0.638,0,0,0.483,0,0.711,0.78,0.78,0,0.399,0.0372
+0.667,0.504,0.504,0,0,0,0.717,0.748,0.742,0.742,0,0,0.194
+0.667,0.218,0.218,0,0,0,0.667,0.493,0.591,0.591,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0899
+0.667,0.328,0.328,0.55,0,0,0,0.31,0.692,0.692,0,0,0.0829
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.329
+1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.205
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.258
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.318
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.149
+0.333,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.186
+0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149
+0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.0372
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0372
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0732
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.302
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.128
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+1,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.117
+1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.412
+1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.276
+1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.112
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.162
+0.667,0.305,0.305,0.55,0,0,0,0.347,0.717,0.717,0,0,0.153
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149
+0.333,0.204,0.204,0.5,0,0,0,0.321,0.597,0.597,0,0,0.26
+0.333,0.253,0.253,0.05,0,0,0,0.354,0.61,0.61,0,0,0.112
+0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.112
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.16,0,0.186
+0.667,0.638,0.638,0,0.9,0,0,0.711,0.78,0.78,0.187,0,0.0372
+0.667,0.504,0.504,0,0.183,0,0,0.748,0.742,0.742,0,0,0.223
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0372
+1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0937
+1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.174
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.357
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0743
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.335
+1,0.359,0.359,0.267,0,0,0,0.384,0.73,0.73,0,0,0
+0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.186
+0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.0372
+0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.26
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.223
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.186
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0
+0.333,0.15,0.15,0,0,0.233,0,0.372,0.541,0.541,0,0.225,0.532
+0.333,0.181,0.181,0,0,0.25,0.217,0.391,0.572,0.572,0,0.332,0
+0.667,0.19,0.19,0,0,0,1,0.33,0.579,0.579,0,0.463,0.0797
+0.667,0.337,0.337,0,0,0,0.167,0.3,0.692,0.692,0,0.524,0.117
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.524,0.328
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0.766,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0.635,0.149
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.223
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372
+0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149
+0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0
+0.667,0.638,0.638,0,0.4,0,0,0.711,0.78,0.78,0.494,0,0.112
+0.667,0.504,0.504,0,0.417,0,0,0.748,0.742,0.742,0.757,0,0
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.2,0,0.0743
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.144
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.229
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.204,0.204,0.0167,0,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.22
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.373
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.336
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.25
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.543
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.173
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.301
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.132
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.595
+0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.667,0.183,0.183,0.25,0,0,0,0.288,0.585,0.585,0,0,0
+0.667,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0.186
+0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.112
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.667,0.204,0.204,0.25,0,0.233,0,0.321,0.597,0.597,0,0.122,0.149
+0.667,0.457,0.457,1,0,0.25,0.217,0.449,0.755,0.755,0,0.524,0.0372
+0.667,0.596,0.596,0.433,0,0,0.05,0.58,0.805,0.805,0,0.564,0
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.149
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.112
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372
+0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.186
+0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.229
+1,0.444,0.444,0.267,0,0,0,0.657,0.787,0.787,0,0,0.469
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.342
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.516
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.214
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0
+0.333,0.178,0.178,0.267,0,0,0,0.284,0.591,0.591,0,0,0.112
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743
+0.667,0.359,0.359,0,0,0.483,0,0.384,0.73,0.73,0,0.258,0.0372
+0.667,0.457,0.457,0,0,0,0.467,0.449,0.755,0.755,0,0.295,0.149
+0.667,0.596,0.596,0,0,0,0.35,0.58,0.805,0.805,0,0,0.112
+0.667,0.683,0.683,0,0.4,0,0,0.673,0.817,0.817,0.562,0,0
+0.667,0.638,0.638,0,0.683,0,0,0.711,0.78,0.78,0.603,0,0.0372
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0.724,0,0.223
+0.667,0.386,0.386,0.75,0,0,0,0.729,0.717,0.717,0,0,0.278
+1,0.342,0.342,0.367,0,0,0,0.636,0.655,0.655,0,0,0.136
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.214
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.131
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.27
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0337
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0372
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743
+0.667,0.204,0.204,0.5,0,0,0,0.321,0.597,0.597,0,0,0.0372
+0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.186
+0.667,0.596,0.596,0.183,0,0,0,0.58,0.805,0.805,0,0,0.223
+1,1,1,0,0.533,0,0,0.881,0.993,0.993,0.77,0,0.0743
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.319
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.163
+0.667,0.386,0.386,0.25,0,0,0,0.729,0.717,0.717,0,0,0.0475
+1,0.488,0.488,0.0167,0,0,0,0.825,0.749,0.749,0,0,0.223
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0372
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0767
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0925
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.279
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.225
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.149
+0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.192
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.158
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297
+0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0
+0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.297
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.26
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.287
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.166
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.165
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0743
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.149
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.112
+0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.479
+0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0.165
+0.667,0.596,0.596,0.05,0,0,0,0.58,0.805,0.805,0,0,0.0372
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0743
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.112
+0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.26
+0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.378
+0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.16
+0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
diff --git a/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv
new file mode 100644
index 0000000000..b1f417b09b
--- /dev/null
+++ b/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv
@@ -0,0 +1,8761 @@
+occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258
+1,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.19
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.185
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.139
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.324
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.185
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.741
+0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.359,0.359,0.25,0,0,0,0.465,0.641,0.641,0,0,0.185
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.139
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.121
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.718
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.441
+1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0.299
+0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0926
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.231
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0463
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509
+0.333,0.196,0.196,0.25,0,0,0,0.321,0.597,0.597,0,0,0.139
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0.42,0,0
+1,0.991,0.991,0,0.667,0,0,0.937,0.937,0.937,0.37,0,0.278
+1,0.823,0.823,0.25,0,0.0638,0,0.993,0.88,0.88,0,0,0.183
+1,0.43,0.43,0,0,0.234,0.317,0.729,0.717,0.717,0,0.397,0.139
+1,0.0495,0.0495,0,0,0,0.5,0.258,0.465,0.465,0,0.0467,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.146
+0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.121
+0.667,0.183,0.183,0,0,0.553,0.0667,0.391,0.572,0.572,0,0.168,0
+0.667,0.334,0.334,0,0,0,1,0.403,0.692,0.692,0,0.197,0
+0.333,0.196,0.196,0,0,0,0.0167,0.279,0.579,0.579,0,0,0.232
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.185
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.407
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0
+0.667,0.669,0.669,0,0,0.298,0,0.673,0.817,0.817,0,0,0.231
+0.667,0.677,0.677,0,0,0,0.817,0.711,0.78,0.78,0.447,0.504,0
+0.667,0.565,0.565,0,0.667,0,0,0.748,0.742,0.742,0.571,0,0
+0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.139
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.509
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0463
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.127
+0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0663
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.224
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.123
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.484
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.164
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.324
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.324
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.185
+0.667,0.299,0.299,0.517,0,0,0,0.419,0.635,0.635,0,0,0.0926
+1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.139
+1,0.677,0.677,0,0.0833,0,0,0.711,0.78,0.78,0.598,0,0
+1,0.823,0.823,0,0.25,0,0,0.993,0.88,0.88,0.711,0,0.278
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0.11,0,0.0463
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0682
+1,0.117,0.117,0.117,0,0,0,0.422,0.567,0.567,0,0,0.172
+1,0.253,0.253,0.65,0.0833,0,0,0.487,0.617,0.617,0.65,0,0.103
+0.667,0.183,0.183,0,0.583,0,0,0.391,0.572,0.572,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.278
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.139
+0.333,0.234,0.234,0.25,0,0,0,0.354,0.61,0.61,0,0,0.0926
+1,0.798,0.798,0,0,0.298,0,0.741,0.974,0.974,0,0,0
+1,0.979,0.979,0,0,0,0.567,0.881,0.993,0.993,0,0.224,0.0463
+1,0.991,0.991,0,0,0,0.517,0.937,0.937,0.937,0,0.0816,0
+1,0.565,0.565,0.367,0,0,0,0.748,0.742,0.742,0,0,0
+1,0.43,0.43,0.4,0,0,0,0.729,0.717,0.717,0,0,0.24
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.172
+1,0.343,0.343,0.0333,0,0,0,0.3,0.692,0.692,0,0,0.162
+0.667,0.334,0.334,0.217,0,0,0,0.31,0.692,0.692,0,0,0.0349
+0.667,0.322,0.322,0.25,0,0,0,0.319,0.705,0.705,0,0,0
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0
+1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.231
+1,0.315,0.315,0,0,0.277,0,0.375,0.705,0.705,0,0,0
+1,0.343,0.343,0,0,0.0213,0.267,0.384,0.73,0.73,0,0.359,0.139
+1,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0.111,0.278
+1,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.278
+1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.185
+1,0.991,0.991,0,0.292,0,0,0.937,0.937,0.937,0.774,0,0.0926
+1,0.823,0.823,0,0.375,0,0,0.993,0.88,0.88,0,0,0.231
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.231
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.0463
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.433
+1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.508
+1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.236
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.481
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.424
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.338
+0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.139
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.139
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0463
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.156,0,0.0926
+0.667,0.565,0.565,0,0.604,0,0,0.748,0.742,0.742,0.826,0,0.0463
+1,0.621,0.621,0,0.0625,0,0,0.965,0.843,0.843,0.0808,0,0.373
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.287
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0
+1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0902
+1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.117
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.247
+1,0.355,0.355,0.25,0,0,0,0.601,0.693,0.693,0.465,0,0.13
+1,0.449,0.449,0,1,0,0,0.657,0.787,0.787,0.542,0,0.509
+1,0.477,0.477,0,0,0.298,0,0.475,0.806,0.806,0.474,0,0.427
+1,0.49,0.49,0,0,0,0.817,0.322,0.806,0.806,0,0.521,0.333
+0.667,0.334,0.334,0,0,0,0.267,0.31,0.692,0.692,0,0.352,0.272
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.495
+0.333,0.0495,0.0495,0,0,0.617,0,0.258,0.465,0.465,0,0.116,0.0463
+0.333,0.18,0.18,0,0,0,0.817,0.302,0.591,0.591,0,0.521,0.0463
+0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.393,0
+1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0.641,0.324
+1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0.513,0
+1,0.798,0.798,0.25,0,0,0,0.741,0.974,0.974,0,0.145,0.0926
+1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0463
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.185
+1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0926
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.185
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0912
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.124
+0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.19
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.185
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.333,0.196,0.196,0.617,0,0,0,0.321,0.597,0.597,0,0,0.0463
+0.333,0.234,0.234,0.15,0,0,0,0.354,0.61,0.61,0,0,0.185
+1,0.798,0.798,0.117,0,0,0,0.741,0.974,0.974,0,0,0.0926
+1,0.979,0.979,0.4,0,0,0,0.881,0.993,0.993,0,0,0.231
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.185
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.158
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.243
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0899
+0.333,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.123
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.272
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.479
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.251
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.185
+0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.185
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.306
+1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.503
+1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0644
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.139
+1,0.823,0.823,0.25,0.0833,0,0,0.993,0.88,0.88,0.512,0,0.231
+1,0.24,0.24,0,0.583,0,0,0.493,0.591,0.591,0.596,0,0
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0.754,0,0.0926
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.355
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.441
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.74
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0463
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.139
+0.333,0.181,0.181,0,0,0.0638,0,0.284,0.591,0.591,0,0,0
+0.667,0.311,0.311,0,0,0.553,0.0667,0.347,0.717,0.717,0,0.378,0.0463
+0.667,0.315,0.315,0,0,0,1,0.375,0.705,0.705,0,0.861,0
+0.333,0.196,0.196,0,0,0,0.0167,0.321,0.597,0.597,0,0.598,0.0926
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0.154,0
+0.333,0.299,0.299,0.25,0,0,0,0.419,0.635,0.635,0,0,0.0463
+0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.239
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.37
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.231
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.484
+0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.111
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0,0,0.702,0,0.279,0.579,0.579,0,0,0
+0.333,0.192,0.192,0,0,0.213,0.333,0.284,0.579,0.579,0,0.607,0.185
+0.333,0.186,0.186,0,0,0,0.75,0.288,0.585,0.585,0,0.619,0.417
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.711,0.231
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.543,0.0463
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.381,0.0463
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.234,0.234,0.767,0,0,0,0.354,0.61,0.61,0,0,0.0463
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.185
+1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.231
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0463
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.268
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.131
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.336
+1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0
+0.667,0.322,0.322,0,0.292,0.617,0,0.319,0.705,0.705,0.715,0.102,0
+0.667,0.313,0.313,0,0.0417,0,0.733,0.31,0.717,0.717,0,0.78,0
+0.667,0.311,0.311,0,0,0,0.0833,0.347,0.717,0.717,0,0.325,0
+0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.402,0.0463
+0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.45,0
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.494,0.278
+1,0.798,0.798,0.25,0,0,0,0.741,0.974,0.974,0,0.68,0.231
+1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.436,0.0463
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.291,0.231
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.436,0.535
+0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.466
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.286
+1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.185
+1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.183,0.183,0.25,0,0,0,0.391,0.572,0.572,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463
+0.333,0.18,0.18,0,0,0.617,0,0.302,0.591,0.591,0,0.0861,0.0926
+0.667,0.315,0.315,0,0,0,0.733,0.375,0.705,0.705,0,0.0593,0.37
+0.667,0.343,0.343,0,0,0,0.35,0.384,0.73,0.73,0,0,0.0463
+0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.18
+1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.727
+1,0.979,0.979,0,0,0.298,0.233,0.881,0.993,0.993,0,0.206,0.139
+1,0.991,0.991,0,0,0,0.85,0.937,0.937,0.937,0,0.38,0.0926
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.829,0
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.205,0.139
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0.508,0,0.278
+1,0.116,0.116,0,0.667,0,0,0.405,0.535,0.535,0.355,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0.142,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0594
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.612
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.168
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.327
+0.333,0.192,0.192,0.117,0,0,0,0.284,0.579,0.579,0,0,0.231
+0.333,0.186,0.186,0.65,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.145,0,0.502
+0.667,0.669,0.669,0,0.396,0,0,0.673,0.817,0.817,0.813,0,0.139
+1,0.991,0.991,0,0.271,0,0,0.937,0.937,0.937,0.0763,0,0.0926
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.19,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.399
+1,0.355,0.355,0.617,0,0,0,0.601,0.693,0.693,0,0,0.289
+0.667,0.316,0.316,0.417,0,0.298,0.0667,0.524,0.68,0.68,0,0.0861,0
+0.667,0.334,0.334,0,0,0,1,0.403,0.692,0.692,0,0.445,0
+0.667,0.343,0.343,0,0,0,0.0167,0.3,0.692,0.692,0,0,0.231
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.612
+0.333,0.186,0.186,0.517,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0926
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.185
+0.333,0.182,0.182,0.117,0,0,0,0.316,0.585,0.585,0,0,0.139
+0.333,0.196,0.196,0.133,0,0,0,0.321,0.597,0.597,0,0,0.185
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.115,0,0
+1,0.798,0.798,0,0.396,0,0,0.741,0.974,0.974,0.853,0,0.0926
+0.667,0.669,0.669,0,0.271,0,0,0.673,0.817,0.817,0.695,0,0.18
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0463
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.231
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.555
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175
+1,0.253,0.253,0.25,0,0,0,0.487,0.617,0.617,0,0,0.523
+1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.331
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.124
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.258
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.18,0.18,0.117,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0.4,0,0,0,0.316,0.585,0.585,0,0,0.37
+0.667,0.343,0.343,0.117,0,0,0,0.384,0.73,0.73,0,0,0.18
+0.667,0.418,0.418,0.133,0,0,0,0.449,0.755,0.755,0,0,0.0926
+1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.139
+1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0926
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.246
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.103
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.287
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0943
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.212
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.259
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.134
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.194
+0.333,0.18,0.18,0.25,0,0,0,0.302,0.591,0.591,0,0,0.139
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.278
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0463
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.231
+0.333,0.359,0.359,0,0,0.617,0,0.465,0.641,0.641,0,0,0.139
+1,0.991,0.991,0.517,0,0,0.567,0.937,0.937,0.937,0,0.224,0.0463
+1,0.823,0.823,0,0,0,0.25,0.993,0.88,0.88,0,0,0.139
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.139
+1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.138
+1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.287
+0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.162
+0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.261
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0896
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.263
+0.667,0.313,0.313,0,0,0.383,0,0.31,0.717,0.717,0,0,0
+0.667,0.311,0.311,0,0,0.532,0.0833,0.347,0.717,0.717,0,0.455,0.0463
+0.667,0.182,0.182,0.117,0,0,1,0.316,0.585,0.585,0,0.616,0.0463
+0.667,0.196,0.196,0.4,0,0,0,0.321,0.597,0.597,0,0.628,0.324
+1,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.461,0.0463
+1,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.139
+1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0926
+1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.324
+1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0463
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0463
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.333
+1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+1,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.252
+0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0842
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.26
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.224
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.419
+1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0.303
+1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.116
+1,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.787
+1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.696
+1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.384
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.281
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.231
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.218
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.139
+0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.37
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.139
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0
+1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0926
+1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.326
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.317
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.16
+1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.529
+0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.136
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.407
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.216
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.271
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.667,0.343,0.343,0.25,0,0,0,0.384,0.73,0.73,0,0,0
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.357,0,0.378
+1,0.979,0.979,0,0.667,0,0,0.881,0.993,0.993,0.618,0,1
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.151,0,0.0463
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.316
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.232
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118
+1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.845
+1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.109
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.231
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0
+0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.139
+0.667,0.359,0.359,0,0.0833,0,0,0.465,0.641,0.641,0.533,0,0.0463
+0.667,0.363,0.363,0,0.25,0,0,0.484,0.622,0.622,0.33,0,0.602
+0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.139
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.417
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0949
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.531
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.667,0.196,0.196,0.367,0,0,0,0.321,0.597,0.597,0,0,0
+0.667,0.234,0.234,0.15,0,0,0,0.354,0.61,0.61,0,0,0
+0.667,0.548,0.548,0,0.0833,0,0,0.58,0.805,0.805,0.711,0,0.0926
+1,0.979,0.979,0,0.583,0,0,0.881,0.993,0.993,0.219,0,0
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.748
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.3
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.222
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.322
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.172
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.244
+1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0515
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.196,0.196,0.117,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.192,0.192,0.65,0,0,0,0.284,0.579,0.579,0,0,0.0463
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.185
+0.333,0.18,0.18,0,0,0.702,0,0.302,0.591,0.591,0,0,0.0463
+0.667,0.315,0.315,0,0,0.213,0.333,0.375,0.705,0.705,0,0.358,0
+0.333,0.196,0.196,0,0,0,0.75,0.321,0.597,0.597,0,0.656,0.0463
+0.333,0.234,0.234,0.617,0,0,0,0.354,0.61,0.61,0,0.504,0.324
+0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0.145,0.272,0.231
+1,0.979,0.979,0,0.396,0,0,0.881,0.993,0.993,0.691,0.504,0.185
+1,0.991,0.991,0,0.271,0,0,0.937,0.937,0.937,0,0.171,0
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.403
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.377
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.37
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122
+1,0.117,0.117,0.367,0,0,0,0.422,0.567,0.567,0,0,0
+0.667,0.151,0.151,0.667,0,0,0,0.372,0.541,0.541,0,0,0
+0.667,0.316,0.316,0.25,0,0,0,0.524,0.68,0.68,0,0,0.251
+0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.185
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.139
+0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.0926
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.139
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.333,0.196,0.196,0.117,0.0833,0,0,0.321,0.597,0.597,0.533,0,0
+0.333,0.234,0.234,0.4,0.25,0,0,0.354,0.61,0.61,0.864,0,0.0463
+1,0.798,0.798,0.367,0,0,0,0.741,0.974,0.974,0.601,0,0.231
+0.667,0.669,0.669,0.15,0,0,0,0.673,0.817,0.817,0,0,0.185
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.324
+1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.278
+1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15
+1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.17
+1,0.334,0.334,0.783,0,0,0,0.403,0.692,0.692,0,0,0.528
+1,0.49,0.49,0.25,0,0,0,0.322,0.806,0.806,0,0,0.221
+0.667,0.334,0.334,0.25,0,0,0,0.31,0.692,0.692,0,0,0.294
+0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.0926
+0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0463
+0.667,0.311,0.311,0,0.292,0,0,0.347,0.717,0.717,0.601,0,0.185
+0.667,0.315,0.315,0,0.375,0,0,0.375,0.705,0.705,0.688,0,0.139
+0.667,0.343,0.343,0.283,0,0,0,0.384,0.73,0.73,0.691,0,0.37
+1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0.0926
+1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.394
+1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0.0947
+1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0.469,0,0.463
+1,0.823,0.823,0.117,0.917,0,0,0.993,0.88,0.88,0.607,0,0
+1,0.621,0.621,0,0.0833,0,0,0.965,0.843,0.843,0.19,0,0.0463
+1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0635
+1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.103
+0.667,0.192,0.192,0.25,0,0,0,0.284,0.579,0.579,0,0,0.15
+0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0926
+0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0926
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.0463
+0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.231
+0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0463
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.317
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.202
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0955
+1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.0926
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.366
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.306
+0.667,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.357
+0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.167
+0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.201
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.185
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.139
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.234,0.234,0.117,0,0,0,0.354,0.61,0.61,0,0,0
+0.667,0.548,0.548,0.4,0,0,0,0.58,0.805,0.805,0,0,0.185
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0463
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.509
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.139
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0463
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0463
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.448
+1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.167
+0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0463
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.234,0.234,0.517,0,0,0,0.354,0.61,0.61,0.338,0,0
+0.333,0.299,0.299,0,0.667,0,0,0.419,0.635,0.635,0.61,0,0.0926
+0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0.702,0,0.463
+0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.704,0,0.231
+1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.231
+1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0
+1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.354
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0745
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107
+1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.455
+0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0156
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.185
+0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.37
+0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463
+0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.185
+0.667,0.418,0.418,0,0.0833,0.915,0,0.449,0.755,0.755,0.693,0.171,0.278
+1,0.798,0.798,0,0.583,0,0.583,0.741,0.974,0.974,0.524,0.21,0.0463
+1,0.979,0.979,0.25,0,0,0.233,0.881,0.993,0.993,0.686,0.464,0.278
+1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.652,0.519,0.0463
+0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.389,0.367
+1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.466,0.139
+0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0.0772,0.278
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.139
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0926
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0926
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.294
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.552
+0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.157
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0926
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.231
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893
+1,0.053,0.053,0.317,0,0,0,0.396,0.558,0.558,0,0,0.201
+1,0.116,0.116,0.45,0,0,0,0.424,0.57,0.57,0,0,0.104
+0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.193,0.193,0,0.312,0,0,0.28,0.581,0.581,0.724,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0463
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.509
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.139
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.139
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.348
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0934
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0
+0.667,0.316,0.316,0.5,0,0,0,0.321,0.709,0.709,0,0,0
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.185
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.231
+0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0463
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.231
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.417
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0926
+0.667,0.625,0.625,0,0.25,0,0,0.753,0.746,0.746,0.589,0,0.278
+0.667,0.501,0.501,0,0.396,0,0,0.734,0.721,0.721,0,0,0
+0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0
+0.667,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186
+1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0
+0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0463
+1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0463
+0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.37
+0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.419
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.083
+0.667,0.466,0.466,0.25,0,0,0,0.584,0.809,0.809,0,0,0.207
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.424
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.37
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.354
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0353
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.151
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0717
+1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.192
+1,0.0829,0.0829,0.5,0,0,0,0.341,0.518,0.518,0,0,0.108
+1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.178
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0.255,0,0.139
+0.667,0.193,0.193,0,0.646,0,0,0.28,0.581,0.581,0.58,0,0.185
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.81,0,0.0926
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0.544,0,0
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0.542,0,0.0463
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0.797,0,0.0463
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.485,0,0
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0.553,0,0
+0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0,0
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.324
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.421
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.21
+1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0896
+1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.185
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.202
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.16
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.144
+1,0.15,0.15,0.0667,0,0,0,0.374,0.543,0.543,0,0,0.442
+1,0.181,0.181,0.183,0,0,0,0.392,0.574,0.574,0,0,0.177
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.447
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0463
+0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0926
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0926
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.185
+1,0.913,0.913,0,0,0.638,0,1,0.887,0.887,0,0,0.139
+1,0.727,0.727,0,0,0.319,0.25,0.972,0.849,0.849,0,0.672,0
+1,0.638,0.638,0,0,0,0.533,0.831,0.755,0.755,0,0.895,0.0463
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0.393,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.335
+1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.451,0,0
+0.667,0.193,0.193,0,0.958,0,0,0.28,0.581,0.581,0.242,0,0.0463
+0.333,0.0495,0.0495,0,0.0208,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0338
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0
+0.333,0.186,0.186,0.0667,0,0,0,0.322,0.6,0.6,0,0,0.0926
+0.667,0.367,0.367,0.183,0,0,0,0.452,0.759,0.759,0,0,0.179
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.406
+1,0.868,0.868,0,0.333,0,0,0.887,1,1,0.585,0,0.344
+1,0.98,0.98,0,0.333,0,0,0.944,0.943,0.943,0.74,0,0.554
+1,0.913,0.913,0,0.625,0,0,1,0.887,0.887,0.135,0,0.376
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0
+0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.0463
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0926
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.427,0,0.0926
+0.333,0.189,0.189,0,0.646,0,0,0.284,0.581,0.581,0.126,0,0.185
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.278
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.278
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.139
+0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.231
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0
+1,0.98,0.98,0,0.0208,0,0,0.944,0.943,0.943,0.517,0,0
+1,0.913,0.913,0,0.292,0,0,1,0.887,0.887,0.298,0,0
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.435
+1,0.313,0.313,0.5,0,0,0,0.527,0.683,0.683,0,0,0.308
+1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0
+0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0
+0.667,0.189,0.189,0.25,0,0,0,0.284,0.581,0.581,0,0,0.417
+0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.417
+0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.139
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0
+1,0.868,0.868,0,0,0,0,0.887,1,1,0.324,0,0.0786
+1,0.98,0.98,0.25,0.312,0,0,0.944,0.943,0.943,0.71,0,0.159
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.698,0,0.231
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0.0772,0,0.0463
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127
+1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.288
+1,0.19,0.19,0.25,0,0,0,0.331,0.581,0.581,0,0,0.0921
+1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.132
+1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.3
+1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0.475
+1,0.436,0.436,0.75,0,0,0,0.338,0.849,0.849,0,0,0.429
+0.667,0.305,0.305,0.0167,0,0,0,0.349,0.721,0.721,0,0,0.139
+0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0
+1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.139
+1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.0463
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.0926
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.231
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.231
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.324
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0
+1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.103
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.298
+1,0.19,0.19,0.25,0,0,0,0.331,0.581,0.581,0,0,0.138
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.392
+1,0.468,0.468,0,0,0.553,0,0.338,0.811,0.811,0.567,0,0.611
+1,0.449,0.449,0.25,0.646,0.0851,0.433,0.352,0.83,0.83,0.359,0.329,0.697
+1,0.307,0.307,0,0,0,0.617,0.311,0.721,0.721,0,0.614,0.272
+1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.493,0.0463
+1,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.347,0.0463
+1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0.782,0.185
+1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0.564,0
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.392,0.139
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.681,0.185
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.36
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0463
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.121
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.262
+1,0.351,0.351,0.0667,0,0,0,0.606,0.698,0.698,0,0,0.226
+1,0.444,0.444,0.183,0,0,0,0.662,0.792,0.792,0,0,0.237
+1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.429
+1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.463
+0.333,0.189,0.189,0.567,0,0,0,0.284,0.581,0.581,0,0,0.0463
+0.667,0.316,0.316,0.2,0,0,0,0.321,0.709,0.709,0,0,0.0463
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.231
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.185
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.259,0,0.63
+1,0.868,0.868,0,0.646,0,0,0.887,1,1,0.248,0,0
+1,0.98,0.98,0,0.333,0,0,0.944,0.943,0.943,0,0,0.11
+1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0
+0.667,0.15,0.15,0.25,0,0,0,0.374,0.543,0.543,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.278
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.161
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.465
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.337
+0.333,0.178,0.178,0.0667,0,0,0,0.284,0.593,0.593,0,0,0.243
+0.333,0.177,0.177,0.183,0,0,0,0.303,0.593,0.593,0,0,0.185
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.185
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0463
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.251
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.231
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.419
+0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463
+1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.116
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0773
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.279
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.198
+0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.235
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.382
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.731
+0,0.0495,0.0495,0,0.333,0,0,0.258,0.465,0.465,0.655,0,0.0926
+0,0.0495,0.0495,0,0.312,0,0,0.258,0.465,0.465,0.153,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.334
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.355
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.306
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0591
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.285
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463
+1,0.868,0.868,0,0,0,0,0.887,1,1,0.524,0,0.0463
+1,0.98,0.98,0,0.646,0,0,0.944,0.943,0.943,0.354,0,0.0463
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.139
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.295
+1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.158
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0946
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0582
+1,0.251,0.251,0,0,0.638,0,0.49,0.621,0.621,0,0,0.312
+0.667,0.181,0.181,0,0,0,0.5,0.392,0.574,0.574,0,0.257,0.38
+0.667,0.33,0.33,0,0,0,0.55,0.405,0.696,0.696,0,0.453,0.257
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.432,0.184
+0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.372,0.285
+0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0.21,0.598,0.27
+0.667,0.307,0.307,0,0.646,0,0,0.311,0.721,0.721,0.606,0.214,0.459
+0.667,0.305,0.305,0,0.333,0,0,0.349,0.721,0.721,0.394,0,0.667
+0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0463
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.185
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.419
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.433
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.337
+1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.324
+0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0
+0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0
+0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0
+1,0.868,0.868,0,0.312,0,0,0.887,1,1,0.51,0,0.37
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.724,0,0.278
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.451,0,0.169
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.365
+1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.165
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0
+1,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0
+1,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0926
+1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0
+1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0
+0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.304
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.339
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.274
+1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.401
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463
+0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0926
+0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.278
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.227
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0463
+1,0.0743,0.0743,0,0.562,0,0,0.36,0.53,0.53,0.864,0,0
+1,0.0578,0.0578,0,0.0833,0,0,0.346,0.518,0.518,0.53,0,0
+1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0.664,0,0
+1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0.691,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.19,0.19,0,0,0.234,0,0.331,0.581,0.581,0,0,0.38
+1,0.481,0.481,0,0.25,0.723,0,0.324,0.811,0.811,0.557,0.221,0.175
+1,0.468,0.468,0,0.396,0,0.933,0.338,0.811,0.811,0.885,0.381,0.135
+1,0.449,0.449,0,0,0,0.383,0.352,0.83,0.83,0.127,0.561,0
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.372,0.185
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,1,0.139
+0.667,0.307,0.307,0.767,0,0,0,0.377,0.709,0.709,0,0.214,0
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0463
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0
+0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.149,0,0.555
+0.667,0.67,0.67,0,0.562,0,0,0.715,0.784,0.784,0.792,0,0.37
+1,0.913,0.913,0,0.417,0,0,1,0.887,0.887,0.391,0,0.185
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.174
+1,0.442,0.442,0,0,0.319,0,0.64,0.658,0.658,0,0,0.324
+1,0.183,0.183,0,0,0,0.55,0.555,0.608,0.608,0.147,0.123,0
+1,0.0743,0.0743,0,0,0,0.0333,0.36,0.53,0.53,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.633
+1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.119
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0
+0.333,0.189,0.189,0,0,0.957,0,0.284,0.581,0.581,0.492,0.0341,0.0926
+0.333,0.183,0.183,0,0.646,0,0.5,0.289,0.587,0.587,0.28,0.454,0
+0.333,0.178,0.178,0,0,0,0.283,0.284,0.593,0.593,0,0.359,0.0926
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.728,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.788,0.0463
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.329,0.0926
+0.333,0.208,0.208,0.567,0,0,0,0.355,0.612,0.612,0,0.801,0
+1,0.674,0.674,0.2,0,0,0,0.746,0.981,0.981,0,0.608,0.127
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.503,0.278
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.546,0.164
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.338
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.185
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0.2,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157
+1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0
+0.333,0.189,0.189,0,0,0.638,0,0.284,0.581,0.581,0,0,0
+0.333,0.183,0.183,0,0,0,0.5,0.289,0.587,0.587,0,0.227,0
+0.333,0.178,0.178,0,0,0,0.55,0.284,0.593,0.593,0,0.501,0.185
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.524,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0463
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.139
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.294,0,0.133
+0.667,0.466,0.466,0,0.312,0,0,0.584,0.809,0.809,0.388,0,0.0926
+1,0.868,0.868,0,0,0,0,0.887,1,1,0.691,0,0.0926
+1,0.98,0.98,0,0.0208,0,0,0.944,0.943,0.943,0.732,0,0.185
+1,0.913,0.913,0,0.625,0,0,1,0.887,0.887,0,0,0.24
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.205
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.207
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.402
+1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.31
+0.667,0.181,0.181,0.0667,0,0,0,0.392,0.574,0.574,0,0,0.281
+0.667,0.33,0.33,0.7,0,0.319,0,0.405,0.696,0.696,0,0,0.259
+0.667,0.337,0.337,0,0,0.638,0,0.302,0.696,0.696,0,0.323,0.256
+0.667,0.328,0.328,0,0,0,1,0.311,0.696,0.696,0,0.297,0.0926
+0.333,0.183,0.183,0,0,0,0.05,0.289,0.587,0.587,0,0.239,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.139
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0
+0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.139
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.139
+1,0.868,0.868,0,0.333,0,0,0.887,1,1,0.822,0,0
+0.667,0.67,0.67,0,0.646,0,0,0.715,0.784,0.784,0.151,0,0
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.838
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.231
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0463
+1,0.116,0.116,0,0,0.0638,0,0.407,0.537,0.537,0,0,0
+1,0.0743,0.0743,0,0,0,0.5,0.36,0.53,0.53,0,0.248,0.0463
+1,0.0578,0.0578,0,0.0208,0,0.55,0.346,0.518,0.518,0.503,0.307,0
+1,0.0495,0.0495,0,0.625,0,0,0.346,0.511,0.511,0.759,0,0
+1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0.199,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288
+0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.449
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.368
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.218
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.25,0,0.185
+0.667,0.258,0.258,0,0.646,0,0,0.421,0.637,0.637,0.625,0,0
+0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0.77,0,0
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.343
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.22
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.226
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185
+1,0.0495,0.0495,0,0,0.255,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.14
+0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0.447,0,0.126
+0.667,0.337,0.337,0,0.646,0,0,0.302,0.696,0.696,0.138,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0463
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.231
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0926
+0.333,0.178,0.178,0.25,0,0,0,0.317,0.587,0.587,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.278
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.139
+0.667,0.466,0.466,0.25,0.0208,0,0,0.584,0.809,0.809,0.479,0,0
+1,0.868,0.868,0,0.292,0,0,0.887,1,1,0.363,0,0.0926
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0463
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0463
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.185
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.094
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.191
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.573
+1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.133
+1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16
+0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0656
+0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.37
+0.667,0.322,0.322,0.25,0,0,0,0.468,0.644,0.644,0,0,0
+0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0
+0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.139
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.231
+1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0463
+1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0.0926
+1,0.066,0.066,0,0,0,0,0.433,0.57,0.57,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0
+0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.179
+0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.129
+1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.12
+1,0.449,0.449,0.25,0,0.872,0,0.352,0.83,0.83,0,0,0.278
+0.667,0.307,0.307,1,0,0.0851,0.433,0.311,0.721,0.721,0,0.611,0.0926
+0.667,0.305,0.305,0.267,0,0,0.35,0.349,0.721,0.721,0,0,0.0926
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.185
+0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0
+0.667,0.367,0.367,0.0167,0,0,0,0.452,0.759,0.759,0,0,0
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.139
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0
+1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.139
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.157
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264
+1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223
+1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.103
+1,0.15,0.15,0,0,0.638,0,0.374,0.543,0.543,0,0,0.257
+1,0.181,0.181,0,0,0,0.5,0.392,0.574,0.574,0,0.145,0.129
+1,0.33,0.33,0,0,0,0.283,0.405,0.696,0.696,0,0,0.181
+0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0926
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.509
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0463
+0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0463
+0.333,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0,0
+1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.231
+1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.231
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.344
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.284
+1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142
+0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.442
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.114
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.231
+0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.278
+0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.278
+0.333,0.178,0.178,0,0,0.319,0,0.317,0.587,0.587,0,0,0.425
+0.667,0.322,0.322,0,0,0.638,0,0.386,0.734,0.734,0,0.478,0.138
+0.667,0.367,0.367,0.567,0,0,1,0.452,0.759,0.759,0,0.0134,0.0463
+0.667,0.466,0.466,0.2,0,0,0.05,0.584,0.809,0.809,0.287,0,0.278
+0.333,0.322,0.322,0,0.646,0.319,0,0.468,0.644,0.644,0.384,0,0.139
+1,0.98,0.98,0,0.0208,0.319,0.25,0.944,0.943,0.943,0.643,0.409,0
+1,0.913,0.913,0,0.625,0,0.533,1,0.887,0.887,0,0,0.0463
+1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0463
+1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.153
+1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.327
+1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.308
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0463
+0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0463
+0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.139
+0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0926
+0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.185
+0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0463
+0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463
+1,0.868,0.868,0.567,0,0,0,0.887,1,1,0,0,0.0926
+1,0.98,0.98,0.45,0,0,0,0.944,0.943,0.943,0,0,0.0463
+1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.139
+1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.134
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.422
+0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.134
+0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.148
+0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.667,0.298,0.298,0.117,0,0,0,0.323,0.612,0.612,0,0,0.0926
+1,0.464,0.464,0.6,0,0,0,0.434,0.715,0.715,0,0,0.278
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.417
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.231
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.329,0,0
+1,0.928,0.928,0,0.625,0,0,0.79,0.701,0.701,0.576,0,0.0463
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.677,0,0
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.111,0,0.278
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.385
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0673
+0.667,0.114,0.114,0.117,0,0,0,0.353,0.483,0.483,0,0,0.238
+0.667,0.245,0.245,0.117,0,0,0,0.405,0.523,0.523,0,0,0.0161
+0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.471
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.324
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.139
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0.617,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.667,0.298,0.298,0.35,0,0,0,0.323,0.612,0.612,0,0,0
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0463
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.185
+1,0.736,0.736,0.233,0,0,0,0.701,0.79,0.79,0,0,0.185
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.11,0,0.139
+1,0.928,0.928,0,0.396,0,0,0.79,0.701,0.701,0.641,0,0.0463
+1,0.807,0.807,0,0.229,0,0,0.768,0.671,0.671,0.774,0,0.0463
+1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0.7,0,0.375
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.612,0,0.132
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.74,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0.759,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.386
+1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.286
+1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.67
+1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.155
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.482
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.228
+0.667,0.289,0.289,0.717,0,0,0,0.294,0.602,0.602,0,0,0.0463
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0463
+0.667,0.298,0.298,0,0,0.17,0,0.323,0.612,0.612,0,0,0.0926
+0.333,0.188,0.188,0,0,0.766,0,0.316,0.549,0.549,0,0.277,0.0926
+1,0.567,0.567,0,0,0,0.9,0.59,0.775,0.775,0,0.662,0.185
+1,0.736,0.736,0,0,0,0.133,0.701,0.79,0.79,0,0.706,0.0926
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.312,0.185
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.266,0.139
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.107
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.106,0,0.0926
+1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.151
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.369
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+0.667,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+1,0.443,0.443,0,0,0.617,0,0.267,0.641,0.641,0,0,0
+1,0.426,0.426,0,0,0,0.65,0.278,0.656,0.656,0,0.55,0.0926
+0.333,0.171,0.171,0,0,0,0.383,0.261,0.534,0.534,0,0.381,0.0463
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.494,0.278
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.518,0.0926
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.47,0
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0935,0.347
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.157
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.625
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.104
+1,0.928,0.928,0.233,0,0,0,0.79,0.701,0.701,0,0,0.221
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463
+1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.224
+0.333,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.16
+0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.185
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.185
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.139
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.302
+0.333,0.169,0.169,0,0,0.0638,0,0.276,0.534,0.534,0,0,0.0463
+0.333,0.17,0.17,0,0,0.553,0.0667,0.287,0.529,0.529,0.145,0.246,0
+0.333,0.174,0.174,0,0.396,0,0.7,0.29,0.539,0.539,0.571,0.154,0
+0.333,0.188,0.188,0.367,0.229,0,0,0.316,0.549,0.549,0.298,0,0.0463
+1,0.567,0.567,0.117,0.625,0,0,0.59,0.775,0.775,0.46,0,0.0463
+1,0.736,0.736,0,0.396,0,0,0.701,0.79,0.79,0.709,0,0.324
+1,0.895,0.895,0,0.562,0,0,0.745,0.745,0.745,0.652,0,0
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.278
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.139
+0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.139
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0.872,0,0.258,0.465,0.465,0,0.107,0
+0.667,0.245,0.245,0,0,0,0.817,0.405,0.523,0.523,0,0.534,0.428
+0.667,0.305,0.305,0,0,0,0.483,0.435,0.572,0.572,0,0,0.28
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.153
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.185
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463
+0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.169,0.169,0.117,0,0,0,0.276,0.534,0.534,0,0,0.185
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.185
+0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0463
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0926
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926
+1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.295
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.158
+0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.116
+0.667,0.185,0.185,0.233,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0463
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.278
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.667,0.298,0.298,0.233,0,0,0,0.323,0.612,0.612,0,0,0.231
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.281
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.166
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.337
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926
+1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0463
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.445,0,0.231
+1,0.5,0.5,0,0.625,0,0,0.656,0.596,0.596,0.268,0,0.291
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.231
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.669
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.137
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.335
+0.667,0.305,0.305,0.117,0,0,0,0.435,0.572,0.572,0,0,0.0619
+0.667,0.318,0.318,0.367,0,0,0,0.338,0.582,0.582,0,0,0.0463
+0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.417
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.139
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.278
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.185
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0
+0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0926
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.366,0,0.555
+0.667,0.635,0.635,0,0.312,0,0,0.613,0.622,0.622,0.183,0,0
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113
+0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.289
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.249
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.12
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0657
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0463
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.185
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0463
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0926
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.0463
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.231
+0.667,0.613,0.613,0,0,0.383,0,0.583,0.652,0.652,0,0,0.215
+1,0.928,0.928,0,0,0.553,0.0667,0.79,0.701,0.701,0,0.475,0.139
+1,0.555,0.555,0,0,0,0.7,0.598,0.602,0.602,0,0.326,0.0463
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.231
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.321
+1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0463
+0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463
+1,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.139
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.366
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.395
+0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0926
+0.667,0.395,0.395,0,0,0.489,0,0.479,0.672,0.672,0,0,0.231
+1,0.736,0.736,0,0.188,0.447,0.15,0.701,0.79,0.79,0.483,0.202,0.417
+1,0.613,0.613,0,0.438,0,0.617,0.583,0.652,0.652,0,0,0.231
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0926
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0924
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.176
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0926
+1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0463
+0.333,0.17,0.17,0.233,0,0,0,0.287,0.529,0.529,0,0,0.0463
+1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0
+1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0
+1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.213
+1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.37
+1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.139
+1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.165
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0463
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.231
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.147,0.147,0.233,0,0,0,0.331,0.494,0.494,0,0,0.509
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.462
+1,0.452,0.452,0,0,0,0,0.378,0.641,0.641,0,0,0.319
+1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.139
+0.667,0.312,0.312,0,0,0.936,0,0.264,0.582,0.582,0,0.0252,0.24
+0.333,0.175,0.175,0,0,0,0.567,0.265,0.529,0.529,0.113,0.734,0.278
+0.333,0.171,0.171,0,0.312,0,0.467,0.261,0.534,0.534,0.702,0.396,0.278
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0.539,0.635,0.139
+0.667,0.29,0.29,0.367,0,0,0,0.316,0.592,0.592,0.276,0.313,0
+1,0.422,0.422,0.117,0,0,0,0.356,0.686,0.686,0,0.638,0
+1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.411,0
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.616,0
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0
+1,0.895,0.895,0,0,0.298,0,0.745,0.745,0.745,0,0,0.231
+1,0.928,0.928,0,0,0,0.567,0.79,0.701,0.701,0,0.464,0.0926
+1,0.807,0.807,0.233,0,0,0.2,0.768,0.671,0.671,0,0.0134,0.0926
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.267
+1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.177
+1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.286
+1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.602
+1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.324
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.278
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.139
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.333,0.174,0.174,0.367,0,0,0,0.29,0.539,0.539,0,0,0.278
+1,0.464,0.464,0.35,0,0,0,0.434,0.715,0.715,0,0,0.278
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.139
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0926
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.278
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0463
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.14
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.254
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.195
+1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.218
+0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.144
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.139
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.185
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0463
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.555
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.213
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0463
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.262,0,0.185
+1,0.736,0.736,0,0.708,0,0,0.701,0.79,0.79,0.58,0,0.584
+0.667,0.613,0.613,0,0.25,0,0,0.583,0.652,0.652,0,0,0.621
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.427
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0
+1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126
+0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0852
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0.483,0,0,0,0.316,0.549,0.549,0,0,0
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.278
+0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.491
+1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.278
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.418
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.376
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.231
+0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0463
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0783
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.231
+0.333,0.175,0.175,0.867,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.171,0.171,0.35,0,0,0,0.261,0.534,0.534,0,0,0.0926
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0926
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.667,0.298,0.298,0.367,0,0,0,0.323,0.612,0.612,0,0,0
+0.667,0.326,0.326,0.117,0,0,0,0.375,0.632,0.632,0,0,0
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.139
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.28
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.322
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.206
+1,0.177,0.177,0.7,0,0,0,0.346,0.519,0.519,0,0,0.136
+1,0.318,0.318,0.267,0,0,0,0.338,0.582,0.582,0,0,0.56
+1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.175
+1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0463
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.0463
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0926
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.0926
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0926
+1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.0463
+0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.382
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.147
+0.667,0.507,0.507,0.2,0,0,0,0.553,0.682,0.682,0,0,0.324
+0.667,0.613,0.613,0.283,0,0,0,0.583,0.652,0.652,0,0,0.278
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0463
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.496,0,0
+0.667,0.321,0.321,0,0.958,0.617,0,0.257,0.582,0.582,0.163,0,0
+0.667,0.312,0.312,0,0,0,0.65,0.264,0.582,0.582,0,0.464,0.134
+0.667,0.3,0.3,0,0,0,0.383,0.271,0.592,0.592,0,0.441,0.18
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.218,0.0463
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.324
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.194
+0.667,0.395,0.395,0.483,0,0,0,0.479,0.672,0.672,0,0,0.112
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.375
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.451
+0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.251
+0.333,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.204
+1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.185
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0
+1,0.342,0.342,0,0,0.234,0.317,0.478,0.551,0.551,0,0.39,0.328
+0.667,0.305,0.305,0,0,0,0.983,0.435,0.572,0.572,0,0.631,0
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0.534,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.324
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0926
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463
+0.333,0.188,0.188,0.233,0,0,0,0.316,0.549,0.549,0,0,0.139
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.12
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.124
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.393
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.591
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0463
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.36
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.286
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.118,0,0
+1,0.0816,0.0816,0,0.312,0,0,0.305,0.474,0.474,0.799,0,0
+1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0.088,0,0.0824
+0.667,0.305,0.305,0,0.0833,0,0,0.435,0.572,0.572,0.429,0,0.127
+0.333,0.184,0.184,0,0.229,0,0,0.298,0.524,0.524,0,0,0.139
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.139
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417
+0,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0.85,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463
+0.667,0.326,0.326,0.117,0,0,0,0.375,0.632,0.632,0,0,0
+1,0.567,0.567,0.117,0,0,0,0.59,0.775,0.775,0,0,0
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.312,0,0
+1,0.895,0.895,0.367,0.312,0,0,0.745,0.745,0.745,0.623,0,0.0463
+1,0.928,0.928,0.117,0,0,0,0.79,0.701,0.701,0,0,0.0463
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463
+1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.484
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.185
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0926
+0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.303
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.431,0,0
+0.667,0.507,0.507,0,0.958,0,0,0.553,0.682,0.682,0.648,0,0.506
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.58,0,0.425
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.367
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.27
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0773
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.258
+0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122
+0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.522
+0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463
+0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.455
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.195
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.188,0.188,0,0.0833,0,0,0.316,0.549,0.549,0.54,0,0.0463
+1,0.567,0.567,0.117,0.542,0,0,0.59,0.775,0.775,0,0,0.312
+1,0.736,0.736,0.367,0,0,0,0.701,0.79,0.79,0,0,0.507
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.493
+1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.688
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.212
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0525,0.0525,0.117,0,0,0,0.331,0.473,0.473,0,0,0.424
+0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.127
+0.333,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0.4,0,0
+0.667,0.318,0.318,0,0.625,0,0,0.338,0.582,0.582,0.151,0,0.0926
+0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.181,0.181,0.117,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.175,0.175,0.367,0,0,0,0.265,0.529,0.529,0,0,0
+0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0463
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.278
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.139
+1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.417
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0926
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.139
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0926
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.527
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.137
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.386
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.184,0.184,0.483,0,0,0,0.298,0.524,0.524,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.185
+0.667,0.292,0.292,0.45,0,0,0,0.264,0.602,0.602,0,0,0
+0.667,0.289,0.289,0.267,0,0,0,0.294,0.602,0.602,0,0,0.0463
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.463
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.507
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0463
+0.667,0.395,0.395,0.45,0,0,0,0.479,0.672,0.672,0,0,0.185
+1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.139
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.139
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0
+1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0
+1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0
+1,0.185,0.185,0.233,0,0,0,0.257,0.524,0.524,0,0,0.314
+1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.249
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.232
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.491
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.062
+0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.185
+0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.139
+0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0926
+0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.139
+0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.245
+1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.082
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.441
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.262
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.24
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.277
+1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.26
+1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.146
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.304
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.186
+0.667,0.312,0.312,0,0,0.702,0,0.264,0.582,0.582,0,0,0.737
+0.667,0.3,0.3,0,0,0.234,0.317,0.271,0.592,0.592,0,0.214,0.0463
+0.667,0.292,0.292,0,0,0,0.45,0.264,0.602,0.602,0,0.407,0.0463
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.521,0.0463
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0
+0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0
+0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.324
+0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.324
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.459
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0926
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119
+1,0.305,0.305,0.367,0,0,0,0.435,0.572,0.572,0,0,0
+0.667,0.318,0.318,0.35,0,0,0,0.338,0.582,0.582,0,0,0.141
+0.667,0.321,0.321,0,0,0.383,0,0.257,0.582,0.582,0,0,0.108
+0.667,0.312,0.312,0,0,0.553,0.0667,0.264,0.582,0.582,0,0.269,0.441
+0.667,0.3,0.3,0,0,0.0638,0.967,0.271,0.592,0.592,0,0,0.392
+0.667,0.292,0.292,0.483,0,0.234,0.317,0.264,0.602,0.602,0,0.295,0.19
+0.667,0.289,0.289,0,0,0,1,0.294,0.602,0.602,0,0.568,0.139
+0.667,0.29,0.29,0,0,0,0.233,0.316,0.592,0.592,0,0.252,0
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.139
+0.667,0.326,0.326,0.367,0,0,0,0.375,0.632,0.632,0,0,0
+0.333,0.222,0.222,0.117,0,0,0,0.368,0.569,0.569,0,0,0.139
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.185
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926
+1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.139
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.215
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.16
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.137
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0924
+1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.165
+1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.518
+0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.244
+0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0.415,0,0.133
+0.333,0.181,0.181,0,0.312,0,0,0.261,0.524,0.524,0,0,0.218
+0.333,0.175,0.175,0,0,0.298,0,0.265,0.529,0.529,0,0,0
+0.333,0.171,0.171,0,0,0,0.817,0.261,0.534,0.534,0,0.639,0
+0.333,0.169,0.169,0,0,0,0.483,0.276,0.534,0.534,0,0.0601,0
+0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0926
+0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0926
+0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0463
+0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.363,0,0.602
+0.667,0.507,0.507,0,0.625,0,0,0.553,0.682,0.682,0.151,0,0.612
+1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.185
+1,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.0926
+1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0926
+1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.303
+0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.209
+1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.312
+1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.245
+1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0
+1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0463
+1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.466
+1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.509
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0632
+1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.323
+0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0463
+0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.139
+0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0.172,0,0.139
+0.667,0.395,0.395,0.233,0.312,0,0,0.479,0.672,0.672,0.409,0,0.278
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.139
+1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.266,0,0.478
+1,0.928,0.928,0,0.312,0,0,0.79,0.701,0.701,0.664,0,0.0463
+1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0971
+1,0.184,0.184,0.2,0,0,0,0.298,0.524,0.524,0,0,0.0874
+1,0.321,0.321,0.283,0,0,0,0.257,0.582,0.582,0,0,0
+0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0
+0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0
+0.667,0.292,0.292,0.233,0,0,0,0.264,0.602,0.602,0,0,0.305
+0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.352
+0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.349
+1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.185
+0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.185
+1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0463
+1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.185
+0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.0926
+0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.25
+0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.392
+0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0926
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0.05,0,0,0,0.331,0.493,0.493,0,0,0
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+1,0.175,0.175,0.467,0,0,0,0.297,0.523,0.523,0,0,0.0993
+1,0.424,0.424,0.233,0,0,0,0.255,0.638,0.638,0,0,0.0908
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.101
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185
+0.333,0.159,0.159,0.233,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.185
+1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.0355
+1,0.412,0.412,0.667,0,0,0,0.587,0.772,0.772,0,0,0.287
+0.333,0.194,0.194,1,0,0,0,0.405,0.572,0.572,0,0,0.0463
+0.667,0.429,0.429,1,0,0,0,0.581,0.65,0.65,0,0,0.139
+1,0.783,0.783,1,0,0.66,0,0.787,0.698,0.698,0,0,0.509
+1,0.88,0.88,0.333,0,0,0.583,0.765,0.668,0.668,0,0.537,0.278
+1,0.415,0.415,0,0,0,0.4,0.522,0.551,0.551,0,0.0208,0.128
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.143
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.145
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.425
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.131
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.279
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.863
+0.333,0.16,0.16,0.233,0,0,0,0.26,0.533,0.533,0,0,0.0926
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.324
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.19
+0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.224
+1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0
+1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.634
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0.367,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0.1,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0
+0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.139
+1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.172
+1,0.538,0.538,0,0.0833,0,0,0.61,0.62,0.62,0.612,0,0.0463
+1,0.603,0.603,0,0.208,0,0,0.596,0.6,0.6,0,0,0.555
+1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.139
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.156
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.224
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.282
+1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.212
+0.667,0.301,0.301,0.1,0,0,0,0.337,0.581,0.581,0,0,0.128
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.139
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0463
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.304
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.226
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0926
+0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0
+1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.278
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0926
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0
+0.667,0.603,0.603,0,0,0.66,0,0.596,0.6,0.6,0,0,0
+1,0.415,0.415,0,0,0,0.533,0.522,0.551,0.551,0,0.193,0
+1,0.116,0.116,0,0,0,0.45,0.357,0.488,0.488,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.173
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0463
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.37
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.231
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.231
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.369
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.419
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0926
+1,0.783,0.783,0,0,0.702,0,0.787,0.698,0.698,0,0,0.0463
+1,0.88,0.88,0,0,0.277,0.283,0.765,0.668,0.668,0,0.565,0.0463
+1,0.415,0.415,0,0,0,0.2,0.522,0.551,0.551,0,0.564,0.169
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0463
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.194,0.194,0,0,0.383,0,0.405,0.572,0.572,0,0,0.324
+0.667,0.429,0.429,0,0,0.277,0.283,0.581,0.65,0.65,0,0.145,0.324
+0.667,0.538,0.538,0,0,0,0.45,0.61,0.62,0.62,0,0,0.0463
+0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.231
+1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.175,0.175,0,0,0.766,0,0.297,0.523,0.523,0,0,0
+1,0.299,0.299,0,0,0.213,0.333,0.256,0.581,0.581,0,0.687,0
+1,0.291,0.291,0,0,0,0.9,0.263,0.581,0.581,0,0.607,0.0341
+1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0.417,0.306
+1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0.491,0.246
+1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0.454,0.2
+1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.352
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.247
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.234
+1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.709
+1,0.484,0.484,0.233,0,0,0,0.698,0.787,0.787,0,0,0.363
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.585
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.216
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.411
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.37
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0883
+1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.191
+1,0.411,0.411,0,0,0.319,0.1,0.266,0.638,0.638,0,0.243,0.946
+1,0.394,0.394,0.467,0,0,0.883,0.277,0.653,0.653,0,0.591,0.256
+1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0,0.161
+1,0.269,0.269,0.233,0,0,0,0.293,0.6,0.6,0,0,0.278
+1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.0463
+1,0.379,0.379,0,0,0,0,0.355,0.683,0.683,0,0,0.0806
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.473
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.492
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.531
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.102
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.452
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.272
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.634
+0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0663
+0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.161
+0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.231
+0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.269,0.269,0.233,0,0,0,0.322,0.61,0.61,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0
+1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.139
+1,0.339,0.339,0.467,0,0,0,0.551,0.68,0.68,0,0,0.0926
+1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.185
+1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.362
+1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.217
+1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.174
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.481
+1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.224
+1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.679
+1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.377
+1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.611
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0805
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.183
+0.333,0.159,0.159,0,0,0.66,0,0.275,0.533,0.533,0,0,0.0463
+0.667,0.268,0.268,0,0,0,0.533,0.315,0.591,0.591,0,0.877,0
+0.333,0.159,0.159,0,0,0,0.2,0.29,0.538,0.538,0,0.218,0.0846
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.278
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0463
+0.667,0.339,0.339,0,0.0833,0,0,0.551,0.68,0.68,0.609,0,0.231
+0.667,0.429,0.429,0,0.208,0,0,0.581,0.65,0.65,0.111,0,0.404
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.749
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.153,0,0.231
+1,0.597,0.597,0,0.396,0,0,0.654,0.594,0.594,0.402,0,0.358
+1,0.0495,0.0495,0,0.208,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.224
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.297
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.229
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.632
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.183
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.208
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.213
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.271
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.394
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.139
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0.367,0,0,0,0.316,0.548,0.548,0,0,0
+0.667,0.291,0.291,0.567,0,0,0,0.477,0.67,0.67,0,0,0.185
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0463
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.359,0,0.0926
+0.667,0.538,0.538,0,0.292,0,0,0.61,0.62,0.62,0.53,0,0.656
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.259,0,0.0893
+0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.179
+1,0.0798,0.0798,0,0,0.915,0,0.305,0.474,0.474,0,0.0935,0
+1,0.143,0.143,0,0,0,0.783,0.331,0.493,0.493,0,0.745,0
+1,0.172,0.172,0,0,0,0.7,0.345,0.518,0.518,0,0.758,0.0463
+1,0.301,0.301,0.367,0,0,0,0.337,0.581,0.581,0,0.693,0
+0.667,0.299,0.299,0.1,0,0,0,0.256,0.581,0.581,0,0.435,0.185
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.392,0
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0.407,0.0463
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0.564,0
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.816,0.231
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.3,0.139
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0463
+0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0.0463
+0.667,0.291,0.291,0,0,0.702,0,0.477,0.67,0.67,0,0,0.231
+0.667,0.339,0.339,0,0,0.277,0.283,0.551,0.68,0.68,0,0.389,0.291
+0.667,0.429,0.429,0,0,0,0.7,0.581,0.65,0.65,0,0.457,0.492
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.483
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.417
+1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.139
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0.276,0,0.0926
+0.333,0.172,0.172,0,0.708,0,0,0.345,0.518,0.518,0.284,0,0.0926
+0.333,0.175,0.175,0,0.208,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.499
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0463
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.139
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.506
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.154
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.185
+0.667,0.291,0.291,0.233,0.0833,0,0,0.477,0.67,0.67,0.614,0,0
+0.667,0.339,0.339,0,0.208,0,0,0.551,0.68,0.68,0.53,0,0.0926
+1,0.619,0.619,0,0,0.979,0,0.742,0.742,0.742,0.233,0.147,0.139
+1,0.783,0.783,0,0,0,0.533,0.787,0.698,0.698,0,0.613,0.0463
+1,0.88,0.88,0,0,0,0.45,0.765,0.668,0.668,0,0.386,0.0463
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.322
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0679
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0926
+0.667,0.0495,0.0495,0.167,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.0667,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.035
+1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.166
+1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.195
+1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.3
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.115
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0978
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0926
+0.667,0.274,0.274,0.233,0,0,0,0.374,0.63,0.63,0,0,0.185
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.509
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.185
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.278
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0839
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.407
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.268
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.245
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.441
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0
+1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.376
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.171
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0962
+1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.25
+0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.139
+0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463
+0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463
+1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0463
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0463
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0463
+1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.0463
+1,0.484,0.484,0.417,0,0.766,0,0.698,0.787,0.787,0,0,0.0463
+1,0.619,0.619,0.05,0,0.213,0.333,0.742,0.742,0.742,0.241,0.457,0.231
+1,0.783,0.783,0,0.458,0,1,0.787,0.698,0.698,0.521,0.55,0.0463
+1,0.88,0.88,0,0.146,0,0.65,0.765,0.668,0.668,0,0.297,0
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.488,0.324
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.595,0.139
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0.095,0.364
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0827
+1,0.0798,0.0798,0.117,0,0,0,0.305,0.474,0.474,0,0,0.253
+1,0.143,0.143,0.117,0,0,0,0.331,0.493,0.493,0,0,0
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0463
+1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.231
+0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.275
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463
+0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.185
+0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0.0463
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.104
+0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.509
+0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.278
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.149,0,0.34
+0.667,0.603,0.603,0,0.292,0,0,0.596,0.6,0.6,0.671,0,0
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0.436,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0.367,0,0,0,0.305,0.474,0.474,0,0,0.351
+0.667,0.236,0.236,0.1,0,0,0,0.404,0.521,0.521,0,0,0.421
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.157
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.114
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.417
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0926
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.277
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.338
+0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.231
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463
+0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0
+1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.311
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107
+1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.29
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.667,0.268,0.268,0.867,0,0,0,0.315,0.591,0.591,0,0,0.0852
+0.667,0.269,0.269,1,0,0,0,0.322,0.61,0.61,0,0,0
+0.333,0.162,0.162,0.0167,0,0,0,0.316,0.548,0.548,0,0,0.185
+0.333,0.17,0.17,0.367,0,0,0,0.368,0.568,0.568,0,0,0.278
+1,0.484,0.484,0.1,0,0,0,0.698,0.787,0.787,0,0,0.185
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.139
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.185
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.231
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.231
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.277
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.417
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.208
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.297
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.171
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.185
+0.333,0.164,0.164,0.367,0,0,0,0.264,0.528,0.528,0,0,0.0926
+0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0
+0.667,0.269,0.269,0.05,0,0,0,0.293,0.6,0.6,0,0,0.139
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0463
+1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.324
+1,0.291,0.291,0.367,0,0,0,0.477,0.67,0.67,0,0,0.0463
+1,0.339,0.339,0.1,0,0,0,0.551,0.68,0.68,0,0,0
+1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.231
+1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.229
+1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.129
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+0.667,0.11,0.11,0,0.0833,0,0,0.352,0.482,0.482,0.573,0,0.106
+0.667,0.236,0.236,0.233,0.521,0,0,0.404,0.521,0.521,0,0,0.0465
+0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.139
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.258
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.185
+0.333,0.159,0.159,0.467,0,0,0,0.29,0.538,0.538,0,0,0.0926
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.231
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0463
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.217
+0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.0463
+1,0.597,0.597,0,0,0.383,0,0.654,0.594,0.594,0,0,0
+1,0.183,0.183,0,0,0.277,0.283,0.455,0.511,0.511,0,0.279,0.395
+1,0.0743,0.0743,0,0,0,0.4,0.32,0.483,0.483,0,0.659,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0377
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.322
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.093
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.42
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.215
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.233
+0.667,0.271,0.271,0.417,0,0,0,0.263,0.6,0.6,0,0,0.154
+0.667,0.269,0.269,0.05,0,0,0,0.293,0.6,0.6,0.355,0,0
+0.667,0.268,0.268,0,0.771,0,0,0.315,0.591,0.591,0.438,0,0.48
+0.667,0.269,0.269,0,0.146,0,0,0.322,0.61,0.61,0,0,0.244
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.139
+0.667,0.294,0.294,0.417,0,0,0,0.434,0.543,0.543,0,0,0.037
+0.667,0.603,0.603,0.05,0,0,0,0.596,0.6,0.6,0,0,0.307
+0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0463
+0.667,0.116,0.116,0,0,0,0.05,0.357,0.488,0.488,0,0,0.488
+1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.0499
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0373
+1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.448
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0
+1,0.299,0.299,0.467,0,0,0,0.256,0.581,0.581,0,0,0
+1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0
+1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.231
+0.667,0.271,0.271,0,0,0.128,0,0.263,0.6,0.6,0,0,0.0463
+0.667,0.269,0.269,0,0,0.851,0,0.293,0.6,0.6,0,0.547,0.278
+1,0.268,0.268,0,0,0,0.833,0.315,0.591,0.591,0,0.432,0.0926
+1,0.269,0.269,0,0,0,0.15,0.322,0.61,0.61,0,0.792,0.0926
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0463
+0.667,0.291,0.291,0,0.146,0,0,0.477,0.67,0.67,0.582,0,0.139
+1,0.484,0.484,0,0.771,0,0,0.698,0.787,0.787,0,0,0.347
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.392
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.139
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.139
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0499
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0463
+1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0
+1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.271
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.236
+0.667,0.301,0.301,0.233,0,0,0,0.337,0.581,0.581,0,0,0.349
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.322
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.255,0,0.0926
+0.333,0.164,0.164,0,0.292,0,0,0.264,0.528,0.528,0,0,0
+0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.185
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0.0833,0,0,0.29,0.538,0.538,0.682,0,0.185
+0.333,0.162,0.162,0,0.521,0,0,0.316,0.548,0.548,0.788,0,0.536
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0.539,0,0.215
+1,0.484,0.484,0,0.292,0.383,0,0.698,0.787,0.787,0.566,0,0.0463
+0.333,0.239,0.239,0,0,0.596,0.0333,0.419,0.558,0.558,0,0.0475,0.0463
+0.667,0.538,0.538,0,0,0.383,0.7,0.61,0.62,0.62,0,0,0.0926
+1,0.88,0.88,0,0,0.596,0.0333,0.765,0.668,0.668,0,0.576,0.148
+1,0.597,0.597,0,0,0,0.95,0.654,0.594,0.594,0,0.423,0
+1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0.499,0.0463
+1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0.496,0.0463
+1,0.066,0.066,0,0,0,0,0.359,0.482,0.482,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0.494,0,0.343
+1,0.33,0.33,0.233,0.604,0,0,0.477,0.549,0.549,0.623,0,0.163
+1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.519
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.26
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.331
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0,0.0495,0.0495,0,0,0.702,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0.277,0.283,0.275,0.533,0.533,0,0.107,0.0463
+0.333,0.159,0.159,0,0,0,1,0.286,0.528,0.528,0,0,0.139
+0.333,0.159,0.159,0,0,0,0.45,0.29,0.538,0.538,0,0,0.0926
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.17,0.17,0.7,0,0,0,0.368,0.568,0.568,0,0,0.324
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0463
+1,0.619,0.619,0,0,0.66,0,0.742,0.742,0.742,0,0.0861,0.0926
+1,0.783,0.783,0,0,0,0.783,0.787,0.698,0.698,0,0.632,0.185
+1,0.88,0.88,0,0,0,0.2,0.765,0.668,0.668,0,0.767,0.466
+1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.12,0.396
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.21
+1,0.295,0.295,0.233,0,0,0,0.433,0.571,0.571,0,0,0.327
+1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.319
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.463
+0.333,0.164,0.164,0.117,0,0,0,0.264,0.528,0.528,0,0,0.185
+0.333,0.16,0.16,0.35,0,0,0,0.26,0.533,0.533,0,0,0.0463
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.139
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0
+1,0.412,0.412,0.233,0,0,0,0.587,0.772,0.772,0,0,0.225
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.231
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0463
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.271
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.347
+1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.219
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.186
+1,0.236,0.236,0,0,0.979,0,0.404,0.521,0.521,0,0.123,0.105
+0.667,0.172,0.172,0,0,0,0.483,0.345,0.518,0.518,0,0,0.109
+0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.741
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0926
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.538
+0.333,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.185
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.231
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.266
+1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0
+1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0.979,0,0.308,0.469,0.469,0,0.145,0
+1,0.0495,0.0495,0,0,0,0.533,0.305,0.464,0.464,0,0.791,0
+1,0.0495,0.0495,0,0,0,0.45,0.258,0.465,0.465,0,0.123,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.373
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.457
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.433
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0864
+0,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.17,0.17,0,0,0.277,0.283,0.26,0.523,0.523,0,0.316,0
+0.333,0.164,0.164,0,0,0,0.2,0.264,0.528,0.528,0,0.485,0.0463
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0.414,0.0463
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.521,0.0463
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.427,0
+0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0.277,0.0463
+0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0.291,0.0463
+0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0.436,0.113
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0.57,0.581
+1,0.619,0.619,0.233,0.0833,0,0,0.742,0.742,0.742,0.598,0.472,0.0463
+1,0.783,0.783,0,0.208,0,0,0.787,0.698,0.698,0,0.645,0.0926
+1,0.88,0.88,0,0,0.66,0,0.765,0.668,0.668,0,0.623,0.231
+1,0.415,0.415,0,0,0,0.533,0.522,0.551,0.551,0,0.297,0.0926
+1,0.116,0.116,0,0,0,0.2,0.357,0.488,0.488,0,0,0.124
+1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.174,0.174,0.05,0,0,0,0.257,0.523,0.523,0,0,0
+0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0343
+0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.313
+0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.683
+0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.645
+0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.501
+0.667,0.274,0.274,0.467,0,0,0,0.374,0.63,0.63,0,0,0.278
+0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0
+0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0.452,0,0.417
+0.667,0.429,0.429,0,0.604,0,0,0.581,0.65,0.65,0.262,0,0.211
+1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463
+1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0926
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0332
+1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.191
+1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0
+1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0463
+1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0,0.0926
+0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.231
+0.667,0.268,0.268,0.167,0,0,0,0.315,0.591,0.591,0,0,0.463
+0.667,0.269,0.269,0.0667,0,0,0,0.322,0.61,0.61,0,0,0
+0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.126
+1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.264
+1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.188
+1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0926
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0926
+1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.139
+1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.417
+1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.207
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.243
+0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.164,0.164,0.467,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.227
+0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.318
+0.667,0.162,0.162,0.367,0,0,0,0.316,0.548,0.548,0,0,0.341
+0.667,0.291,0.291,0.333,0,0,0,0.477,0.67,0.67,0.25,0,0.324
+1,0.484,0.484,0,0.292,0,0,0.698,0.787,0.787,0.754,0,0.0926
+0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0.654,0,0.0926
+1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.61,0,0.0926
+1,0.88,0.88,0.117,0,0,0,0.765,0.668,0.668,0.542,0,0.231
+1,0.597,0.597,0.117,0,0,0,0.654,0.594,0.594,0.592,0,0.0926
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.157
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0
+1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0949
+0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.188
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.141
+0.333,0.164,0.164,0.233,0,0,0,0.257,0.524,0.524,0,0,0.293
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0639
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.151,0.151,0.717,0,0,0,0.316,0.549,0.549,0,0,0.37
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.185
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.324
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0926
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0534
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.441
+1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.212
+1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.27
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.175
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.266
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.458
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.278
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.278
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.509
+0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0
+0.667,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.0926
+0.667,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0
+0.667,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.546
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.242
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.19
+1,0.317,0.317,0,0,0.574,0.05,0.478,0.551,0.551,0,0.507,0.203
+0.667,0.284,0.284,0,0,0,0.683,0.435,0.572,0.572,0,0.451,0.323
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0.911,0.254
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.491,0.231
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.273,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.675,0
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.236,0.0926
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.231
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.656
+0.667,0.252,0.252,0.117,0,0,0,0.375,0.632,0.632,0,0,0.295
+0.667,0.264,0.264,0.833,0,0,0,0.479,0.672,0.672,0,0,0.139
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0.312,0,0.388
+1,0.523,0.523,0.233,0.292,0,0,0.745,0.745,0.745,0.302,0,0.0926
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.285
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.386
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.149,0.149,0.233,0,0,0,0.29,0.539,0.539,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0
+0.667,0.264,0.264,0.717,0,0,0,0.479,0.672,0.672,0,0,0
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.278
+1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.231
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.231
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0926
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.112
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61
+1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.496
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0926
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0463
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.139
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.231
+1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.657,0,0.0926
+1,0.523,0.523,0,0.604,0,0,0.745,0.745,0.745,0.704,0,0.0463
+1,0.671,0.671,0,0.208,0,0,0.79,0.701,0.701,0.189,0,0.0463
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.139
+0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.415
+0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.269
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.139,0.139,0,0,0.0638,0,0.331,0.494,0.494,0,0,0
+0.667,0.167,0.167,0.367,0,0.574,0.05,0.346,0.519,0.519,0,0.116,0.179
+1,0.404,0.404,0.1,0,0.383,0.683,0.378,0.641,0.641,0,0,0.0266
+0.667,0.278,0.278,0,0,0.574,0.05,0.257,0.582,0.582,0,0.264,0.463
+0.667,0.27,0.27,0,0,0,0.683,0.264,0.582,0.582,0,0.602,0.0463
+0.667,0.259,0.259,0.233,0,0,0,0.271,0.592,0.592,0,0.445,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.185
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.231
+0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0926
+0.667,0.252,0.252,0.617,0,0,0,0.375,0.632,0.632,0.479,0,0
+1,0.371,0.371,0.333,0.604,0,0,0.59,0.775,0.775,0.327,0,0.417
+1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.139
+1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.463
+1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0996
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.218
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.259
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.364
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0927
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.368
+0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.278
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0463
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.157,0.157,0.583,0,0,0,0.368,0.569,0.569,0,0,0.139
+1,0.42,0.42,0.6,0,0,0,0.701,0.79,0.79,0,0,0.278
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.174
+0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0566
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.169
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.183
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.126
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.414
+0.333,0.154,0.154,0.233,0,0,0,0.265,0.529,0.529,0,0,0.193
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0.383,0,0.287,0.529,0.529,0,0,0.0926
+0.667,0.249,0.249,0,0,0.574,0.05,0.323,0.612,0.612,0,0.298,0
+0.667,0.252,0.252,0,0,0,1,0.375,0.632,0.632,0,0.646,0.139
+1,0.371,0.371,0.717,0,0,0.183,0.59,0.775,0.775,0,0.201,0.185
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.231
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.305
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0926
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.509
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.238
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.224
+1,0.228,0.228,0.467,0,0,0,0.405,0.523,0.523,0,0,0.244
+1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.433,0,0
+0.667,0.16,0.16,0,0.604,0,0,0.261,0.524,0.524,0.56,0,0.744
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.249
+1,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0.236
+1,0.264,0.264,0.367,0,0,0,0.479,0.672,0.672,0,0,0
+1,0.296,0.296,0.1,0,0,0,0.553,0.682,0.682,0,0,0
+1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463
+1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.139
+1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0463
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.137
+0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.207
+0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.156
+0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.231
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.463
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0926
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0463
+1,0.371,0.371,0.233,0,0,0,0.59,0.775,0.775,0,0,0.0463
+1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0463
+1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463
+1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0.35,0,0,0,0.331,0.494,0.494,0,0,0.14
+1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.139
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0926
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.139
+1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.185
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.37
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.414
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.334
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.232
+1,0.167,0.167,0.233,0,0,0,0.346,0.519,0.519,0,0,0.214
+1,0.404,0.404,0,0,0.957,0,0.378,0.641,0.641,0,0.0846,0.103
+0.667,0.278,0.278,0,0,0,0.55,0.257,0.582,0.582,0,0.542,0.139
+0.333,0.16,0.16,0.233,0,0,0.433,0.261,0.524,0.524,0,0.428,0.0463
+0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.409,0
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.586,0
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.2,0.185
+0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.347,0.0463
+0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.329,0.602
+1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.5,0.0926
+1,0.371,0.371,0.117,0,0,0,0.59,0.775,0.775,0,0.595,0.449
+1,0.42,0.42,0.35,0,0,0,0.701,0.79,0.79,0,0.0223,0.185
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.139
+1,0.671,0.671,0,0,0.638,0,0.79,0.701,0.701,0,0.151,0.281
+1,0.799,0.799,0,0,0,0.8,0.768,0.671,0.671,0,0.199,0.0463
+1,0.582,0.582,0,0,0,0.933,0.656,0.596,0.596,0,0,0.607
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.14
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.537
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.253
+1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.0862
+1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0
+0.667,0.259,0.259,0.717,0,0,0,0.271,0.592,0.592,0,0,0.463
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.185
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926
+0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0926
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.231
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.238
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.151,0,0.0926
+1,0.799,0.799,0,0.292,0,0,0.768,0.671,0.671,0.425,0,0
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.175
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.236
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.396
+0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.165
+0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0734
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.139
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.231
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.185
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463
+0.667,0.249,0.249,0.233,0,0,0,0.323,0.612,0.612,0,0,0
+1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.139
+1,0.42,0.42,0,0,0.0638,0,0.701,0.79,0.79,0,0,0.0463
+0.667,0.365,0.365,0,0,0.255,0.3,0.583,0.652,0.652,0,0.325,0.139
+0.667,0.464,0.464,0,0,0,0.433,0.613,0.622,0.622,0,0.476,0.0926
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.616,0.185
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.0861,0.0463
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.323
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0937
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.564
+0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.11
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.185
+0.667,0.164,0.164,0.367,0,0,0,0.257,0.524,0.524,0,0,0.185
+0.333,0.16,0.16,0.833,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.139
+0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0463
+0.667,0.252,0.252,0.367,0,0,0,0.375,0.632,0.632,0,0,0
+0.667,0.264,0.264,0.1,0,0,0,0.479,0.672,0.672,0,0,0.185
+0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.182
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0926
+1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0
+1,0.299,0.299,0.233,0,0,0,0.428,0.534,0.534,0,0,0.0926
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0781,0.0781,0.617,0,0,0,0.305,0.474,0.474,0.14,0,0.173
+1,0.317,0.317,0.333,0.396,0,0,0.478,0.551,0.551,0.627,0,0.277
+1,0.402,0.402,0,0.208,0,0,0.523,0.626,0.626,0,0,0.555
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.329
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0926
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0926
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.231
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.37
+0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0
+1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.185
+1,0.371,0.371,0,0.0833,0,0,0.59,0.775,0.775,0.399,0,0.324
+1,0.42,0.42,0,0.521,0,0,0.701,0.79,0.79,0.469,0,0
+1,0.523,0.523,0,0.604,0.383,0,0.745,0.745,0.745,0.33,0,0.185
+1,0.671,0.671,0,0,0.574,0.05,0.79,0.701,0.701,0,0.441,0.285
+1,0.549,0.549,0,0,0,0.933,0.598,0.602,0.602,0,0.727,0.231
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.291,0.136
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.268
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.351
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.106
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.149,0.149,0,0,0.0638,0,0.276,0.534,0.534,0,0,0.139
+0.667,0.149,0.149,0,0,0.574,0.05,0.287,0.529,0.529,0,0.184,0
+0.667,0.249,0.249,0,0,0,0.683,0.323,0.612,0.612,0,0.534,0
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.552,0
+0.333,0.157,0.157,0.233,0,0,0,0.368,0.569,0.569,0,0.745,0
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.577,0.417
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.368,0.0926
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0.175,0.703
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0868
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.111
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.37
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.151,0.151,0.117,0,0,0,0.316,0.549,0.549,0,0,0
+0.333,0.157,0.157,0.117,0,0,0,0.368,0.569,0.569,0,0,0.139
+0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0968
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0926
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.213
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.399
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.185
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.394
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.116
+1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.405
+1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.624
+0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.256
+0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0926
+0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.0926
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.247
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.37
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.314
+0.667,0.249,0.249,0.367,0,0,0,0.323,0.612,0.612,0,0,0.412
+0.667,0.252,0.252,0.1,0,0,0,0.375,0.632,0.632,0,0,0.331
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.238
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0824
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.483
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.205
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.39
+1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.203
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.139
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.262
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072
+1,0.139,0.139,0,0.0833,0,0,0.331,0.494,0.494,0.436,0,0
+1,0.167,0.167,0,0.521,0,0,0.346,0.519,0.519,0,0,0.332
+1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.262
+1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.456,0,0.11
+1,0.27,0.27,0,0.604,0,0,0.264,0.582,0.582,0.591,0,0.824
+1,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0.871,0,0.29
+1,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0.652,0,0.27
+1,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0.623,0,0.278
+1,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0.622,0,0.0463
+1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0.813,0,0.0926
+1,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0.586,0,0.0926
+0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0.587,0,0.525
+1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0.332,0,0.366
+1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0
+1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.0463
+1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.231
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.145
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.217
+1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.192
+0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.195
+0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.139
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0463
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.278
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.149,0.149,0.35,0,0,0,0.29,0.539,0.539,0,0,0.139
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.26,0,0.0463
+1,0.671,0.671,0,0.604,0,0,0.79,0.701,0.701,0.422,0,0.0926
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0926
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.129
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.377
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.139
+0.333,0.149,0.149,0.367,0,0,0,0.29,0.539,0.539,0,0,0.231
+0.667,0.252,0.252,0.333,0,0,0,0.375,0.632,0.632,0,0,0.324
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0926
+1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.596,0,0.0924
+1,0.523,0.523,0,0.521,0.702,0,0.745,0.745,0.745,0,0,0.139
+1,0.671,0.671,0,0,0.255,0.3,0.79,0.701,0.701,0,0.0772,0.651
+1,0.549,0.549,0,0,0,0.683,0.598,0.602,0.602,0,0,0.44
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0.957,0,0.258,0.465,0.465,0,0.12,0
+0.333,0.168,0.168,0,0,0,0.55,0.298,0.524,0.524,0,0.737,0.231
+0.333,0.164,0.164,0,0,0,0.433,0.257,0.524,0.524,0,0.513,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.611,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.261,0.0463
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.658,0.213
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.597,0.375
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.537,0.113
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.154,0.231
+0.333,0.151,0.151,0.233,0,0,0,0.316,0.549,0.549,0,0,0.139
+0.667,0.264,0.264,0.367,0,0,0,0.479,0.672,0.672,0,0,0.109
+1,0.42,0.42,0.583,0,0,0,0.701,0.79,0.79,0,0,0.324
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0926
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.228
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.42,0,0.0463
+1,0.405,0.405,0,0.292,0,0,0.524,0.553,0.553,0.759,0,0.0926
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.804,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.519,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.21
+1,0.0781,0.0781,0.233,0,0,0,0.305,0.474,0.474,0,0,0.163
+1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.295
+0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.285
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.37
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0926
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0.224,0,0
+0.667,0.264,0.264,0,0.604,0,0,0.479,0.672,0.672,0.208,0,0.0463
+1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.614,0,0.278
+1,0.523,0.523,0,0.208,0,0,0.745,0.745,0.745,0,0,0.278
+0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.449
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.196
+0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.218
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.252,0.252,0.35,0,0,0,0.375,0.632,0.632,0,0,0
+0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.138
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.283
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.231
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.37
+1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.105
+1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.26
+1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.253
+1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.157
+1,0.392,0.392,0.233,0,0,0,0.256,0.641,0.641,0,0,0.191
+1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.239
+1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0.153
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.454
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.415
+0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.304
+0.667,0.249,0.249,0,0,0.957,0,0.323,0.612,0.612,0,0.0935,0.0374
+1,0.353,0.353,0,0,0,0.55,0.434,0.715,0.715,0,0.343,0.37
+1,0.371,0.371,0,0,0,0.183,0.59,0.775,0.775,0.487,0.358,0.324
+1,0.42,0.42,0,0.896,0,0,0.701,0.79,0.79,0.569,0,0.0463
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.871,0,0.384
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.13
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.236
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0
+1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.155
+1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0
+1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.139
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0
+0.333,0.16,0.16,0.467,0,0,0,0.261,0.524,0.524,0,0,0.0463
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.707
+1,0.352,0.352,0,0,0,0,0.267,0.671,0.671,0,0,0.151
+1,0.349,0.349,0.717,0,0,0,0.312,0.671,0.671,0,0,0.37
+1,0.348,0.348,0.117,0,0,0,0.345,0.656,0.656,0,0,0
+1,0.349,0.349,0.117,0,0,0,0.356,0.686,0.686,0,0,0.37
+1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0
+1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.324
+1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0926
+1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.37
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.32
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.279
+1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.118
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.102
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0503
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.362
+0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.231
+0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0926
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.231
+0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926
+0.667,0.264,0.264,0.117,0,0,0,0.479,0.672,0.672,0,0,0.0463
+1,0.42,0.42,0.35,0.0833,0,0,0.701,0.79,0.79,0.458,0,0.139
+1,0.523,0.523,0,0.208,0,0,0.745,0.745,0.745,0.185,0,0.246
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.136
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131
+0.667,0.228,0.228,0.467,0,0,0,0.405,0.523,0.523,0,0,0.382
+0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0463
+0.667,0.259,0.259,0.233,0,0,0,0.271,0.592,0.592,0,0,0.185
+0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.284
+0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.202
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.169
+0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0463
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.139
+1,0.371,0.371,0,0.0833,0,0,0.59,0.775,0.775,0.585,0,0.0463
+1,0.42,0.42,0,0.208,0,0,0.701,0.79,0.79,0.627,0,0.139
+0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0.294,0,0.0926
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.276,0,0.231
+1,0.582,0.582,0,0.604,0,0,0.656,0.596,0.596,0.181,0,0.224
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.247
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0
+0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.639
+0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.408
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0534
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.538
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0
+0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0
+0.667,0.264,0.264,0.117,0,0,0,0.479,0.672,0.672,0,0,0
+1,0.42,0.42,1,0.0833,0,0,0.701,0.79,0.79,0.639,0,0.431
+1,0.523,0.523,0.317,0.521,0,0,0.745,0.745,0.745,0.244,0,0.947
+1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.423
+1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.276
+1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.185
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.167,0.167,0.233,0,0,0,0.346,0.519,0.519,0,0,0.113
+0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463
+0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0
+0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.278
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.139
+0.333,0.157,0.157,0.867,0,0,0,0.368,0.569,0.569,0,0,0.324
+1,0.296,0.296,0.567,0,0,0,0.553,0.682,0.682,0,0,0.0463
+1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0
+1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0463
+1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.509
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.867,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0.317,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.285
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.131
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.833
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0.44,0,0.0463
+0.333,0.153,0.153,0,0.583,0,0,0.246,0.488,0.488,0.4,0,0.0926
+0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0463
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0.367,0,0,0,0.271,0.501,0.501,0,0,0.185
+1,0.332,0.332,0.1,0,0,0,0.361,0.596,0.596,0,0,0.231
+1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.397,0,0.0463
+1,0.384,0.384,0,0.583,0,0,0.584,0.658,0.658,0.592,0,0.324
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.508,0,0.139
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0.402,0,0
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.149
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.11
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.326
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.288
+1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.305
+0.667,0.245,0.245,0,0,0.383,0,0.24,0.519,0.519,0,0,0
+0.667,0.237,0.237,0,0,0.574,0.05,0.234,0.528,0.528,0,0.243,0.36
+0.667,0.235,0.235,0,0,0,0.917,0.259,0.528,0.528,0,0,0.0463
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926
+0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0463
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.278
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0463
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.185
+1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0463
+1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.185
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.301
+1,0.222,0.222,0.1,0,0,0,0.352,0.461,0.461,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0.32,0,0
+0.667,0.263,0.263,0,0.292,0,0,0.228,0.511,0.511,0.61,0,0
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0.709,0,0.0926
+0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0.567,0,0.509
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0.463,0,0.0463
+0.667,0.235,0.235,0,0,0.383,0,0.259,0.528,0.528,0,0,0.0926
+0.667,0.235,0.235,0,0,0.255,0.3,0.277,0.519,0.519,0,0.372,0.139
+1,0.328,0.328,0,0,0,0.417,0.297,0.571,0.571,0,0.329,0.139
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.941,0.363
+1,0.345,0.345,0.467,0,0,0,0.491,0.646,0.646,0,0.0979,0.268
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.231
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.135,0,0.408
+1,0.595,0.595,0,0.292,0,0,0.658,0.583,0.583,0.731,0,0.178
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0463
+1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0
+1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179
+1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.144
+1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.245
+1,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.602
+0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0926
+0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.278
+0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0463
+0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0
+0.667,0.247,0.247,0.117,0.0833,0,0,0.413,0.585,0.585,0.58,0,0.231
+1,0.384,0.384,0.233,0.5,0,0,0.584,0.658,0.658,0.548,0,0.37
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0.262,0,0
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.139
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.555
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0468
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.135
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.306
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.278
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0926
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.139
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.363
+0.667,0.238,0.238,0.367,0,0,0,0.327,0.552,0.552,0,0,0.371
+0.667,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0
+0.667,0.273,0.273,0.4,0.0833,0,0,0.475,0.594,0.594,0.576,0,0.185
+1,0.467,0.467,0.117,0.5,0,0,0.621,0.621,0.621,0.634,0,0.139
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0.776,0,0.0926
+0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0.465,0,0.0692
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.155
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.272
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.156
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185
+0.333,0.142,0.142,0.117,0,0,0,0.258,0.496,0.496,0,0,0.231
+0.333,0.142,0.142,0.117,0,0,0,0.268,0.492,0.492,0,0,0.278
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0463
+0.667,0.238,0.238,0.6,0,0,0,0.327,0.552,0.552,0,0,0.417
+0.333,0.148,0.148,0.1,0,0,0,0.336,0.525,0.525,0,0,0.278
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0926
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.258
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.117
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0463
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.368
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.342
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.092
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0.406,0,0
+0.667,0.277,0.277,0,0.583,0,0,0.376,0.503,0.503,0.136,0,0
+0.667,0.274,0.274,0.367,0,0,0,0.296,0.511,0.511,0,0,0
+0.667,0.263,0.263,0.1,0,0,0,0.228,0.511,0.511,0,0,0
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.356
+0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.487
+0.667,0.237,0.237,0.367,0,0,0,0.234,0.528,0.528,0,0,0.241
+0.667,0.235,0.235,0.1,0,0,0,0.259,0.528,0.528,0,0,0.0463
+0.667,0.235,0.235,0,0,0.383,0,0.277,0.519,0.519,0.25,0,0.351
+1,0.328,0.328,0,0.292,0.574,0.05,0.297,0.571,0.571,0.724,0.329,0.237
+1,0.332,0.332,0,0,0,0.667,0.361,0.596,0.596,0,0,0.231
+0.667,0.247,0.247,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0926
+0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0926
+1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.303
+1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.306
+1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.119
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.222,0.222,0.367,0,0,0,0.352,0.461,0.461,0,0,0.493
+1,0.277,0.277,0.333,0,0,0,0.376,0.503,0.503,0,0,0.172
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0993
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.274
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.139
+0.333,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0.0926
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.278
+1,0.332,0.332,0.233,0,0,0,0.361,0.596,0.596,0,0,0.263
+1,0.345,0.345,0.117,0,0,0,0.491,0.646,0.646,0,0,0
+0.667,0.273,0.273,0.117,0,0,0,0.475,0.594,0.594,0,0,0.185
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.444
+1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0926
+1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.116
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0666
+1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0
+1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.139
+1,0.263,0.263,0,0.0833,0,0,0.228,0.511,0.511,0.795,0,0
+1,0.359,0.359,0,0.208,0,0,0.222,0.534,0.534,0.169,0,0.139
+0.667,0.245,0.245,0,0,0.638,0,0.24,0.519,0.519,0,0.19,0
+0.667,0.237,0.237,0,0,0,0.8,0.234,0.528,0.528,0,0.703,0
+0.667,0.235,0.235,0,0,0,0.167,0.259,0.528,0.528,0,0.585,0.0463
+0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.588,0.33
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.454,0.272
+1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0.383,0.156
+1,0.345,0.345,0.233,0,0,0,0.491,0.646,0.646,0,0.323,0.265
+1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.214,0.547
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.323
+1,0.595,0.595,0,0,0.957,0,0.658,0.583,0.583,0,0.132,0.308
+1,0.726,0.726,0,0,0,0.233,0.639,0.559,0.559,0,0.717,0
+1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0
+1,0.066,0.066,0,0,0,0,0.314,0.428,0.428,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.314,0.42,0.42,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.162,0.162,0,0,0.702,0,0.277,0.488,0.488,0,0,0.439
+1,0.263,0.263,0.867,0,0.255,0.3,0.228,0.511,0.511,0,0.81,0.199
+1,0.359,0.359,1,0,0,0.667,0.222,0.534,0.534,0,0.402,0.0871
+1,0.343,0.343,0.25,0,0,0,0.232,0.546,0.546,0,0.599,0.223
+1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.288,0.33
+1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.139
+1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0
+1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.185
+1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.231
+1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.274
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.346
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0926
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.315
+0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.155
+0.667,0.163,0.163,0.7,0,0,0,0.317,0.484,0.484,0,0,0.109
+0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.278
+0.333,0.142,0.142,0.7,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.268
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.278
+0.333,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0463
+1,0.345,0.345,0.467,0,0,0,0.491,0.646,0.646,0.445,0,0.139
+1,0.384,0.384,0,0.875,0,0,0.584,0.658,0.658,0.657,0,0.324
+1,0.467,0.467,0,0.583,0,0,0.621,0.621,0.621,0.53,0,0.0463
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.473
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.4
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.128
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.348
+1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.143
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.186
+1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.083
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.231
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.144,0.144,0.367,0,0,0,0.292,0.509,0.509,0,0,0
+0.667,0.148,0.148,0.567,0,0,0,0.336,0.525,0.525,0,0,0
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0
+1,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0.517,0,0.139
+1,0.501,0.501,0,0.292,0,0,0.512,0.528,0.528,0.293,0,0
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.139
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.268
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.378
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.146
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.139
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0.231
+0.333,0.148,0.148,0.35,0,0,0,0.336,0.525,0.525,0.427,0,0.0463
+0.667,0.273,0.273,0,0.292,0,0,0.475,0.594,0.594,0.551,0,0.316
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.185
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0
+1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.126
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.292
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.184
+1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0.151
+0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.109
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0
+0.333,0.156,0.156,0.233,0,0,0,0.243,0.488,0.488,0,0,0.139
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0463
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.311
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.288
+0.667,0.273,0.273,0.233,0,0,0,0.475,0.594,0.594,0,0,0.221
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463
+0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0926
+0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.278
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.126
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.209
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.167
+0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.163,0.163,0.567,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.278
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.324
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.144,0.144,0.117,0,0,0,0.292,0.509,0.509,0,0,0.0758
+0.333,0.148,0.148,0.35,0,0,0,0.336,0.525,0.525,0,0,0
+1,0.384,0.384,0.233,0,0,0,0.584,0.658,0.658,0,0,0
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0
+0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0926
+1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.648
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.241
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157
+1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.108
+1,0.162,0.162,0,0,0.638,0,0.277,0.488,0.488,0,0,0.0619
+1,0.263,0.263,0,0,0,0.55,0.228,0.511,0.511,0,0.539,0.12
+0.667,0.153,0.153,0,0,0,0.167,0.246,0.488,0.488,0,0.0816,0.139
+1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.231
+0.667,0.235,0.235,0,0,0.702,0,0.259,0.528,0.528,0,0,0.417
+0.667,0.142,0.142,0,0,0.255,0.3,0.268,0.492,0.492,0,0.457,0.37
+0.667,0.142,0.142,0,0,0,0.667,0.271,0.501,0.501,0,0.605,0.0463
+0.667,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0.614,0.0463
+0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.139
+1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.0463
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.37
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0926
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.156
+1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0.176,0,0
+1,0.0743,0.0743,0,0.583,0,0,0.295,0.455,0.455,0.756,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0.433,0,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.163,0.163,0.1,0,0,0,0.317,0.484,0.484,0,0,0.231
+1,0.162,0.162,0,0.0833,0,0,0.277,0.488,0.488,0.625,0,0
+1,0.156,0.156,0,0.5,0,0,0.243,0.488,0.488,0.472,0,0
+1,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.0557,0,0.231
+0.667,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0.185
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.425
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0463
+0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.139
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0
+0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0.246,0,0.184
+0.667,0.328,0.328,0,0.292,0,0,0.5,0.569,0.569,0.515,0,0.0926
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.368
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.137
+1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0751
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0.384,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.191
+0.667,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.154
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.156,0.156,0.817,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.324
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0926
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0
+0.667,0.247,0.247,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0926
+0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.37
+0.333,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.0926
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.278
+1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.37
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.387
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0463
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0926
+0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0463
+0.667,0.142,0.142,0,0,0.638,0,0.271,0.501,0.501,0,0.185,0.0926
+0.667,0.144,0.144,0,0,0,0.8,0.292,0.509,0.509,0,0.526,0.0463
+1,0.247,0.247,0,0,0,0.167,0.413,0.585,0.585,0,0.424,0.37
+1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0.32,0.278
+1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.49,0.0926
+1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0.347,0.278
+1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0.439,0.0463
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.128,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.284
+1,0.222,0.222,0,0,0.383,0,0.352,0.461,0.461,0,0,0.0789
+0.667,0.277,0.277,0,0,0.255,0.3,0.376,0.503,0.503,0,0.616,0.16
+0.667,0.274,0.274,0,0,0,0.417,0.296,0.511,0.511,0,0.829,0.0814
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.622,0.231
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.68,0.0463
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.3,0
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.359,0.231
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.42,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.915,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.599,0.139
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0.101,0.454,0.0463
+1,0.247,0.247,0.233,0.396,0,0,0.413,0.585,0.585,0.551,0.496,0.0463
+1,0.384,0.384,0,0.479,0,0,0.584,0.658,0.658,0,0,0.0463
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.139
+1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0
+1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0926
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0463
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.377
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.211
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0926
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.329
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.13
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.188
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.185
+0.333,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0926
+0.333,0.148,0.148,0,0.0833,0,0,0.336,0.525,0.525,0.671,0,0.0463
+0.333,0.161,0.161,0,0.208,0,0,0.366,0.53,0.53,0.49,0,0.0463
+0.333,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.41
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.297
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.269
+0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.533
+0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.488
+0.667,0.274,0.274,0,0,0.702,0,0.296,0.511,0.511,0,0,0.129
+0.667,0.263,0.263,0,0,0.255,0.3,0.228,0.511,0.511,0,0.372,0.0764
+0.667,0.256,0.256,0,0,0,0.667,0.234,0.511,0.511,0,0.318,0.746
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.455,0.185
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.47,0.185
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.491,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.144,0.144,0.117,0,0,0,0.292,0.509,0.509,0,0,0
+0.667,0.247,0.247,0.583,0,0,0,0.413,0.585,0.585,0.399,0,0.231
+0.667,0.273,0.273,0,0.292,0,0,0.475,0.594,0.594,0.571,0,0
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.504,0,0.231
+1,0.595,0.595,0,0,0.638,0,0.658,0.583,0.583,0,0.154,0.0463
+1,0.501,0.501,0,0,0,0.717,0.512,0.528,0.528,0,0.466,0
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.402,0.185
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.703
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.19
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0.0833,0,0,0.258,0.465,0.465,0.604,0,0.231
+0.667,0.156,0.156,0.367,0.208,0,0,0.243,0.488,0.488,0.243,0,0.832
+0.667,0.256,0.256,0.333,0,0,0,0.234,0.511,0.511,0,0,0
+0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0
+1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.0463
+0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.231
+1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.139
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.233
+0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0926
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.723
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0463
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0
+1,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0
+1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0
+0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.0463
+0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.139
+0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.324
+1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0
+1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0
+1,0.384,0.384,0.617,0,0,0,0.584,0.658,0.658,0,0,0.417
+0.667,0.328,0.328,0.0833,0,0,0,0.5,0.569,0.569,0,0,0.0926
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0
+0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0926
+0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.248
+0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.126
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.486
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0.233,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.187
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.179
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0.574,0.05,0.258,0.465,0.465,0,0.294,0.0463
+0.667,0.235,0.235,0,0,0,1,0.259,0.528,0.528,0,0.418,0
+0.667,0.235,0.235,0,0,0,0.4,0.277,0.519,0.519,0,0.571,0
+0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.739,0
+0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0.384,0
+1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0.729,0.0926
+1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.677,0.0463
+1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.543,0.185
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.518,0.0926
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0.28,0.636,0.305
+1,0.388,0.388,0,0.292,0,0,0.45,0.486,0.486,0.251,0,0.185
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135
+1,0.222,0.222,0.233,0,0,0,0.352,0.461,0.461,0,0,0.093
+0.667,0.163,0.163,0.117,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.162,0.162,0.817,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.227
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.308
+0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.453
+0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0926
+0.333,0.144,0.144,0.467,0,0,0,0.292,0.509,0.509,0,0,0.0463
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0463
+1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.294
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0926
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0926
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0463
+1,0.388,0.388,0,0,0.957,0,0.45,0.486,0.486,0,0.0208,0.677
+1,0.183,0.183,0,0,0,0.55,0.395,0.453,0.453,0,0.267,0.0926
+1,0.099,0.099,0,0,0,0.167,0.333,0.445,0.445,0,0.501,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.469,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0.534,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.572
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.089
+0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0531
+0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.176
+0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0.108
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.305
+0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.472
+0.333,0.142,0.142,0.117,0,0,0,0.268,0.492,0.492,0,0,0.0926
+0,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0.3,0,0.629
+1,0.384,0.384,0,0.292,0,0,0.584,0.658,0.658,0.273,0,0.321
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.453
+1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.365
+1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.185
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.486
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0824
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.258
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.247
+0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.182
+1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.583
+1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.413
+1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.493
+0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0463
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0926
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.278
+0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0
+0,0.0495,0.0495,0.35,0,0,0,0.258,0.465,0.465,0,0,0.189
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0
+0.667,0.328,0.328,0.617,0,0.383,0,0.5,0.569,0.569,0,0,0
+1,0.595,0.595,0.0833,0.0833,0.255,0.3,0.658,0.583,0.583,0.68,0.407,0.0926
+1,0.726,0.726,0,0.5,0,0.417,0.639,0.559,0.559,0.77,0.315,0.0463
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.602
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0
+0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.443
+0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.246
+0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.202
+0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.123
+0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0463
+0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.185
+0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0
+0.667,0.273,0.273,0,0,0.957,0,0.475,0.594,0.594,0,0.0935,0.231
+0.667,0.328,0.328,0,0,0,0.55,0.5,0.569,0.569,0,0.7,0.139
+1,0.413,0.413,0,0,0,0.417,0.525,0.544,0.544,0,0.816,0.0463
+1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.595,0.0463
+1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.389,0.137
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.358
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.625
+1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.126
+1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.0855
+0.667,0.245,0.245,0,0.0833,0,0,0.24,0.519,0.519,0.696,0,0.243
+0.667,0.237,0.237,0,0.208,0,0,0.234,0.528,0.528,0.656,0,0.183
+0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,1,0,0.278
+0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0.39,0,0.509
+0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.185
+0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0463
+0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0
+0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.509
+0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0926
+1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.185
+1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0734
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.243
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.56,0,0.348
+0.667,0.24,0.24,0.233,0.562,0,0,0.239,0.517,0.517,0.434,0,0.197
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0463
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0
+1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.0926
+1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0463
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.679
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.324
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.278
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0946
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.186
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.16,0.16,0,0.0833,0,0,0.276,0.487,0.487,0.612,0,0
+0.667,0.258,0.258,0,0.188,0,0,0.227,0.508,0.508,0.278,0,0.139
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.231
+0.333,0.145,0.145,0.233,0,0,0,0.248,0.491,0.491,0,0,0
+1,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463
+1,0.14,0.14,0,0,0.383,0,0.258,0.495,0.495,0,0,0
+1,0.14,0.14,0,0,0.277,0.283,0.267,0.491,0.491,0,0.389,0.176
+1,0.23,0.23,0,0,0,0.4,0.282,0.533,0.533,0,0,0.344
+1,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.278
+0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.185
+0.667,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0.476,0,0.0926
+0.333,0.187,0.187,0,0.854,0,0,0.377,0.516,0.516,0.711,0,0.0926
+0.667,0.41,0.41,0,0.271,0,0,0.521,0.541,0.541,0.576,0,0.185
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.348,0,0.219
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.203
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.35,0,0,0,0.258,0.465,0.465,0,0,0.168
+1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.665
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.21
+1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.107
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.361
+0.333,0.15,0.15,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.185
+0.333,0.145,0.145,0,0,0.255,0.3,0.248,0.491,0.491,0,0.303,0.0463
+0,0.0495,0.0495,0,0,0,0.85,0.258,0.465,0.465,0,0.233,0.0926
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.139
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0789
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.387
+0.333,0.159,0.159,0.233,0,0,0,0.365,0.528,0.528,0,0,0.455
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0926
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.185
+0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.412
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.404
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0924
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.193
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.106
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.244
+0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.278
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.324
+0.333,0.145,0.145,0.367,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0.231
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.14,0.14,0,0.0833,0,0,0.27,0.499,0.499,0.645,0,0.0463
+1,0.324,0.324,0,0.479,0,0,0.359,0.592,0.592,0.172,0,0
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0
+0.667,0.324,0.324,0,0,0.66,0,0.497,0.566,0.566,0,0,0.0926
+1,0.59,0.59,0,0,0,0.533,0.653,0.579,0.579,0,0.254,0.148
+1,0.496,0.496,0,0,0,0.383,0.509,0.525,0.525,0,0,0.139
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463
+0.333,0.145,0.145,0.367,0,0,0,0.248,0.491,0.491,0,0,0.324
+0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0.139
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.139
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.255
+1,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0.296,0,0.185
+1,0.377,0.377,0,0.271,0.66,0,0.58,0.653,0.653,0.761,0,0.231
+1,0.461,0.461,0,0,0,0.533,0.616,0.616,0.616,0.558,0.277,0
+1,0.59,0.59,0,0,0,0.15,0.653,0.579,0.579,0.747,0.614,0
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.33,0.829,0
+1,0.386,0.386,0,0.708,0,0,0.448,0.484,0.484,0.291,0.0341,0.231
+0.667,0.0495,0.0495,0,0.146,0,0,0.258,0.465,0.465,0,0,0.185
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.202
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0908
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.509
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.164
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.416
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.289
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.185
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.231
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.386
+1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.417
+0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0.192,0,0.139
+1,0.461,0.461,0,0.271,0,0,0.616,0.616,0.616,0.632,0,0.324
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0463
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.107
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+1,0.22,0.22,0,0.188,0,0,0.35,0.459,0.459,0.675,0,0
+1,0.274,0.274,0,0.667,0,0,0.374,0.5,0.5,0,0,0.0463
+1,0.16,0.16,0.233,0,0,0,0.276,0.487,0.487,0,0,0.0926
+1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.293
+1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.155
+1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0463
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.278
+0.667,0.233,0.233,0.45,0,0,0,0.325,0.549,0.549,0,0,0.139
+0.333,0.146,0.146,0.0167,0,0,0,0.334,0.524,0.524,0,0,0.0463
+0.667,0.159,0.159,0,0,0.489,0,0.365,0.528,0.528,0,0,0.0463
+1,0.461,0.461,0,0,0.17,0.367,0.616,0.616,0.616,0,0.574,0.0926
+1,0.59,0.59,0,0,0,0.55,0.653,0.579,0.579,0.321,0,0.139
+1,0.72,0.72,0,0.812,0,0,0.635,0.555,0.555,0.303,0,0.333
+1,0.554,0.554,0,0.0417,0,0,0.543,0.493,0.493,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.37
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23
+1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.167
+1,0.154,0.154,0,0,0.489,0,0.242,0.487,0.487,0,0,0
+0.667,0.25,0.25,0,0,0.511,0.1,0.233,0.508,0.508,0,0.214,0
+0.667,0.24,0.24,0.233,0,0,0.583,0.239,0.517,0.517,0,0.141,0.612
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0463
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.231
+0.333,0.14,0.14,0.233,0,0,0,0.27,0.499,0.499,0,0,0.0926
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.278
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.169
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.131
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0926
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.199
+1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.231
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.354,0,0
+0.333,0.162,0.162,0,0.271,0.383,0,0.316,0.483,0.483,0.255,0,0
+0.333,0.16,0.16,0,0,0.617,0.0167,0.276,0.487,0.487,0,0.318,0
+0.333,0.154,0.154,0,0,0,0.433,0.242,0.487,0.487,0,0.343,0
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.697,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.45,0
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.475,0.37
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.568,0.231
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.43,0.0463
+0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.231
+0.667,0.141,0.141,0,0,0.383,0,0.291,0.507,0.507,0,0,0.223
+1,0.242,0.242,0.467,0,0.277,0.283,0.411,0.582,0.582,0,0.409,0.185
+1,0.377,0.377,0,0,0,0.633,0.58,0.653,0.653,0,0.488,0.324
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.359,0.51
+1,0.59,0.59,0,0,0.0638,0,0.653,0.579,0.579,0,0.0519,0.136
+1,0.72,0.72,0,0,0.936,0,0.635,0.555,0.555,0,0.157,0.245
+1,0.554,0.554,0,0,0,0.767,0.543,0.493,0.493,0,0,0.0638
+1,0.0495,0.0495,0,0,0,0.15,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.278
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.339
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.38
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.234
+1,0.324,0.324,0.233,0,0,0,0.359,0.592,0.592,0,0,0.132
+1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0926
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.271,0,0.139
+1,0.461,0.461,0,0.271,0,0,0.616,0.616,0.616,0.646,0,0.185
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.165,0,0.0463
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0463
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.144
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.248
+0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0463
+0.333,0.15,0.15,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.365
+0.333,0.145,0.145,0,0,0.936,0,0.248,0.491,0.491,0,0.352,0
+0.333,0.141,0.141,0,0,0,0.683,0.245,0.495,0.495,0,0.374,0.231
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.389,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.551,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.691,0.0926
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.334,0.0463
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.27,0.423
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.191
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0926
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.246
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.158
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.133
+1,0.386,0.386,0,0,0,0,0.432,0.518,0.518,0.278,0,0.35
+0.333,0.16,0.16,0,0.271,0,0,0.276,0.487,0.487,0.257,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.417
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0463
+0.667,0.24,0.24,0.117,0,0,0,0.239,0.517,0.517,0,0,0.0463
+0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0.0463
+0.333,0.14,0.14,0.283,0,0,0,0.258,0.495,0.495,0,0,0.139
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.141,0.141,0.367,0,0,0,0.291,0.507,0.507,0,0,0.0463
+0.667,0.242,0.242,0.333,0,0,0,0.411,0.582,0.582,0,0,0
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.582
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.383
+1,0.386,0.386,0,0,0,0,0.432,0.518,0.518,0,0,0.0924
+0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.469
+0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.233
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.111,0,0.125
+0.667,0.24,0.24,0,0.396,0,0,0.239,0.517,0.517,0.828,0,0.139
+0.333,0.141,0.141,0,0.167,0,0,0.245,0.495,0.495,0.07,0,0.185
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.134
+0.667,0.268,0.268,0.867,0,0,0,0.472,0.591,0.591,0,0,0
+1,0.461,0.461,0.65,0,0,0,0.616,0.616,0.616,0,0,0
+1,0.59,0.59,0.35,0,0,0,0.653,0.579,0.579,0,0,0.37
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.231
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.285
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0525
+1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.292
+1,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.142
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.282
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0.66,0,0.258,0.465,0.465,0,0.0341,0.367
+0.333,0.14,0.14,0,0,0,0.867,0.258,0.495,0.495,0,0.7,0.347
+0.667,0.23,0.23,0,0,0,0.75,0.276,0.517,0.517,0,0,0.125
+0.667,0.23,0.23,0.233,0,0,0,0.282,0.533,0.533,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0463
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.231
+0.333,0.159,0.159,0,0.188,0,0,0.365,0.528,0.528,0.576,0,0.139
+0.333,0.187,0.187,0,0.375,0,0,0.377,0.516,0.516,0,0,0
+0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.284
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.185
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463
+0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0737
+0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0
+0.667,0.233,0.233,0.7,0,0,0,0.325,0.549,0.549,0.14,0,0
+0.667,0.242,0.242,0,0.5,0,0,0.411,0.582,0.582,0.664,0,0.0926
+0.667,0.268,0.268,0,0.0625,0,0,0.472,0.591,0.591,0.693,0,0.0463
+0.667,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0.0646,0,0.463
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0463
+0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.231
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185
+1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.0463
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.261
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.411
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.188,0
+0.333,0.154,0.154,0,0,0,0.517,0.242,0.487,0.487,0,0.615,0
+0.333,0.15,0.15,0,0,0,0.4,0.245,0.487,0.487,0,0.136,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.231
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463
+0.333,0.14,0.14,0.367,0,0,0,0.267,0.491,0.491,0,0,0.0926
+0.333,0.14,0.14,0.1,0,0,0,0.27,0.499,0.499,0,0,0.0926
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.231
+1,0.338,0.338,0,0.0833,0.383,0,0.488,0.641,0.641,0.522,0,0
+1,0.377,0.377,0,0.188,0.277,0.283,0.58,0.653,0.653,0.354,0.491,0
+1,0.461,0.461,0,0,0,0.633,0.616,0.616,0.616,0,0.227,0.185
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.535
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278
+1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.324
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.29
+0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0896
+0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.139
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463
+0.333,0.145,0.145,0.233,0,0,0,0.248,0.491,0.491,0,0,0
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.346
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.116
+0.667,0.23,0.23,0,0,0.383,0,0.276,0.517,0.517,0,0,0.12
+0.667,0.23,0.23,0,0,0.277,0.283,0.282,0.533,0.533,0,0.282,0.0463
+1,0.324,0.324,0,0,0,0.633,0.359,0.592,0.592,0.375,0.714,0
+1,0.338,0.338,0,0.708,0,0,0.488,0.641,0.641,0.501,0.316,0.0926
+0.667,0.268,0.268,0,0.146,0,0,0.472,0.591,0.591,0,0,0.0463
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.139
+0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.231
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.185
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.198
+0.667,0.274,0.274,0,0,0.383,0,0.374,0.5,0.5,0,0,0.212
+0.667,0.27,0.27,0,0,0.617,0.0167,0.294,0.508,0.508,0,0.448,0.314
+0.667,0.258,0.258,0,0,0,0.9,0.227,0.508,0.508,0,0.769,0.591
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.453,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.457,0.0463
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0.573,0.0926
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.509,0.231
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.786,0.37
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.409,0.0463
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.53,0.0463
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.139
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.339
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0463
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0
+1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0897
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.423
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.108
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.185
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.141,0.141,0.617,0,0,0,0.291,0.507,0.507,0,0,0.395
+1,0.338,0.338,0.0833,0,0,0,0.488,0.641,0.641,0,0,0.257
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.163
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.245
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.185
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.163
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.231
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.407
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0504,0.0504,0.1,0,0,0,0.288,0.418,0.418,0,0,0
+0.667,0.0763,0.0763,0.367,0,0,0,0.282,0.446,0.446,0,0,0
+0.667,0.22,0.22,0.333,0,0,0,0.35,0.459,0.459,0,0,0.362
+0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0846
+0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.37
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0463
+0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463
+0.667,0.141,0.141,0.617,0,0,0,0.291,0.507,0.507,0,0,0
+1,0.242,0.242,0.0833,0,0,0,0.411,0.582,0.582,0,0,0.231
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.35,0,0.139
+1,0.59,0.59,0,0.562,0,0,0.653,0.579,0.579,0.391,0,0.139
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.407
+0.333,0.141,0.141,0,0,0.66,0,0.245,0.495,0.495,0,0,0.303
+0.667,0.23,0.23,0,0,0,0.617,0.258,0.525,0.525,0,0.895,0.358
+0.667,0.23,0.23,0,0,0,0.533,0.276,0.517,0.517,0,0.0816,0.233
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.233
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.0926
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.231
+0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0,0,0.463
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.37
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463
+1,0.72,0.72,0,0,0.66,0,0.635,0.555,0.555,0,0.144,0.139
+1,0.554,0.554,0,0,0,0.867,0.543,0.493,0.493,0,0.776,0.0926
+1,0.183,0.183,0,0,0,0.05,0.393,0.451,0.451,0,0.605,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0
+1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0
+1,0.16,0.16,0,0,0.489,0,0.276,0.487,0.487,0,0,0.0534
+0.667,0.154,0.154,0,0,0.511,0.1,0.242,0.487,0.487,0,0.49,0.0463
+0.667,0.15,0.15,0,0,0,0.817,0.245,0.487,0.487,0,0.813,0.0926
+0.667,0.145,0.145,0.45,0,0,0,0.248,0.491,0.491,0,0.536,0.0926
+0.667,0.232,0.232,0.95,0,0,0,0.233,0.525,0.525,0,0.457,0.0926
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.819,0
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.491,0.185
+1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.522,0
+1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.553,0.0463
+1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.522,0.0463
+0.667,0.268,0.268,0,0.188,0,0,0.472,0.591,0.591,0.662,0.714,0
+1,0.461,0.461,0,0.667,0,0,0.616,0.616,0.616,0,0.168,0.37
+1,0.59,0.59,0.467,0,0,0,0.653,0.579,0.579,0.104,0,0.139
+1,0.72,0.72,0,0.271,0,0,0.635,0.555,0.555,0.479,0,0
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0.578,0,0.0463
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.0252,0.282
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.0969,0,0
+1,0.0499,0.0499,0.233,0.396,0,0,0.273,0.442,0.442,0.637,0,0.282
+1,0.0763,0.0763,0,0.167,0,0,0.282,0.446,0.446,0,0,0.107
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.592
+0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.278
+0.333,0.141,0.141,0.233,0,0,0,0.245,0.495,0.495,0,0,0.19
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.333,0.141,0.141,0.367,0,0,0,0.291,0.507,0.507,0,0,0.222
+1,0.338,0.338,0.1,0,0,0,0.488,0.641,0.641,0,0,0.0463
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.0463
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.641
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0.318,0,0
+1,0.305,0.305,0,0.562,0,0,0.396,0.456,0.456,0.366,0,0.179
+0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.105
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.435
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.278
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.139
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.14,0.14,0.367,0.0833,0,0,0.27,0.499,0.499,0.641,0,0
+1,0.324,0.324,0.1,0.562,0,0,0.359,0.592,0.592,0.761,0,0
+0.667,0.242,0.242,0,0.188,0,0,0.411,0.582,0.582,0.266,0,0.0926
+0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.37
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0463
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.25,0,0.139
+1,0.72,0.72,0,0.271,0,0,0.635,0.555,0.555,0.221,0,0
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.304
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0984
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.162
+0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.125
+0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.417
+0.667,0.162,0.162,0,0,0.383,0,0.316,0.483,0.483,0,0,0
+0.667,0.16,0.16,0,0,0.277,0.283,0.276,0.487,0.487,0,0.377,0.231
+0.667,0.154,0.154,0,0,0,0.4,0.242,0.487,0.487,0,0.703,0.333
+0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0.3,0.266
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.493,0.455
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.45,0.0644
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.488,0.0569
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.337,0.322
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.466,0.232
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.138
+1,0.338,0.338,0,0,0.66,0,0.488,0.641,0.641,0,0,0.24
+1,0.268,0.268,0,0,0,0.533,0.472,0.591,0.591,0,0.542,0.402
+1,0.324,0.324,0,0,0,0.15,0.497,0.566,0.566,0,0.662,0.26
+1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.107,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.273
+1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.164
+1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0.342
+0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.656
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.327
+0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0463
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.231
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.185
+0.333,0.141,0.141,0.233,0,0,0,0.245,0.495,0.495,0,0,0.0926
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0463
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463
+0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0463
+0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0
+0.333,0.159,0.159,0.233,0.0833,0,0,0.365,0.528,0.528,0.607,0,0.0463
+1,0.461,0.461,0,0.771,0,0,0.616,0.616,0.616,0.115,0,0.37
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.198
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.183
+0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.426
+0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.411
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.14,0.14,0.1,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0
+0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.33,0,0
+0.667,0.242,0.242,0,0.562,0,0,0.411,0.582,0.582,0,0,0.324
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.139
+1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.37
+1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.509
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.334
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112
+1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0.0811
+1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.0741
+1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.148
+1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.231
+0.667,0.258,0.258,0.2,0,0,0,0.227,0.508,0.508,0,0,0.0926
+0.667,0.25,0.25,0.0333,0,0,0,0.233,0.508,0.508,0,0,0
+0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.278
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0
+0.667,0.23,0.23,0,0,0.489,0,0.276,0.517,0.517,0,0,0.357
+1,0.321,0.321,0,0,0.17,0.367,0.294,0.567,0.567,0,0.38,0.11
+1,0.324,0.324,0.233,0,0,0.317,0.359,0.592,0.592,0,0.537,0
+1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.543,0
+1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.866,0.231
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0926
+0.667,0.41,0.41,0,0.188,0,0,0.521,0.541,0.541,0.833,0,0.0463
+0.667,0.496,0.496,0,0.375,0,0,0.509,0.525,0.525,0.0862,0,0.0463
+0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.156
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.154,0.154,0,0,0.66,0,0.242,0.487,0.487,0,0.0208,0
+0.667,0.25,0.25,0,0,0,0.683,0.233,0.508,0.508,0,0.309,0
+0.667,0.24,0.24,0.7,0,0,0,0.239,0.517,0.517,0,0,0
+0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.185
+0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0463
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.342
+1,0.321,0.321,0,0,0.489,0,0.294,0.567,0.567,0,0,0.0463
+1,0.233,0.233,0.233,0,0.511,0.1,0.325,0.549,0.549,0,0.639,0.417
+1,0.242,0.242,0,0,0,0.583,0.411,0.582,0.582,0,0.424,0.231
+1,0.268,0.268,0.2,0,0,0,0.472,0.591,0.591,0,0.447,0.0463
+0.667,0.187,0.187,1,0,0,0,0.377,0.516,0.516,0,0,0
+0.667,0.23,0.23,1,0,0,0,0.39,0.503,0.503,0,0,0.0463
+0.667,0.273,0.273,1,0,0,0,0.383,0.495,0.495,0,0,0.185
+0.667,0.218,0.218,0.783,0,0,0,0.353,0.475,0.475,0,0,0.278
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.266
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0377
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0
+0.667,0.22,0.22,0,0,0.0638,0,0.35,0.459,0.459,0,0,0.305
+0.667,0.274,0.274,0,0,0.596,0.0333,0.374,0.5,0.5,0,0.136,0.264
+0.333,0.16,0.16,0,0,0,1,0.276,0.487,0.487,0,0.26,0.278
+0.333,0.154,0.154,0,0,0,0.35,0.242,0.487,0.487,0,0.402,0.0463
+0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.504,0.0926
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.503,0.231
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0.626,0.139
+0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.457,0.0926
+0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.571,0.0926
+0.667,0.23,0.23,0.117,0,0,0,0.282,0.533,0.533,0,0.795,0.0463
+0.667,0.233,0.233,0.117,0,0,0,0.325,0.549,0.549,0,0,0.0463
+0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0
+0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.231
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.491
+1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0
+1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.37
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.14,0.14,0,0.0833,0,0,0.258,0.495,0.495,0.573,0,0
+0.333,0.14,0.14,0,0.188,0,0,0.267,0.491,0.491,0,0,0.278
+0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.124,0,0.0926
+1,0.324,0.324,0.467,0.271,0.0638,0,0.359,0.592,0.592,0.533,0,0.556
+1,0.338,0.338,0,0,0.596,0.0333,0.488,0.641,0.641,0,0.2,0.278
+1,0.268,0.268,0,0,0,1,0.472,0.591,0.591,0,0.129,0.324
+1,0.461,0.461,0,0,0,0.117,0.616,0.616,0.616,0,0,0.545
+1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231
+1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926
+1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.222
+0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.139
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.185
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.509
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.575
+1,0.462,0.462,0,0,0.702,0,0.521,0.541,0.541,0,0,0.214
+1,0.542,0.542,0,0,0.255,0.3,0.509,0.525,0.525,0,0.343,0.0463
+1,0.0495,0.0495,0,0,0,0.367,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.17
+1,0.104,0.104,0.117,0,0,0,0.307,0.426,0.426,0,0,0.139
+0.667,0.222,0.222,0.117,0,0,0,0.35,0.459,0.459,0,0,0.0525
+0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.592
+0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.324
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.231
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0926
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.139
+0.333,0.143,0.143,0.233,0,0,0,0.245,0.495,0.495,0,0,0.231
+0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.139
+0.667,0.235,0.235,0,0,0.383,0,0.276,0.517,0.517,0,0,0
+1,0.329,0.329,0.117,0,0.574,0.05,0.294,0.567,0.567,0,0.107,0
+0.667,0.239,0.239,0.117,0,0,0.617,0.325,0.549,0.549,0,0,0.185
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.139
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0463
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0463
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0
+1,0.05,0.05,0.117,0,0,0,0.273,0.442,0.442,0,0,0.225
+1,0.0768,0.0768,1,0,0,0,0.282,0.446,0.446,0,0,0
+1,0.136,0.136,0.317,0,0,0,0.304,0.462,0.462,0,0,0.24
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.537
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0
+0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0.226,0,0.535
+0.667,0.235,0.235,0,0.271,0,0,0.258,0.525,0.525,0.497,0,0.362
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.321
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.235
+1,0.334,0.334,0.233,0,0,0,0.359,0.592,0.592,0,0,0.446
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.451,0,0.0463
+1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.549,0,0.185
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.13
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.278
+0.667,0.162,0.162,0.1,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.127
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.139
+0.333,0.142,0.142,0.233,0,0,0,0.258,0.495,0.495,0,0,0.0463
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0
+1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.188
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.439
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.389
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0915
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.321
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.139
+1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.49
+1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.121
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.142,0.142,0,0,0.383,0,0.258,0.495,0.495,0,0,0.126
+0.667,0.235,0.235,0,0,0.574,0.05,0.276,0.517,0.517,0,0.188,0.153
+0.667,0.236,0.236,0,0,0,1,0.282,0.533,0.533,0,0.501,0.292
+0.667,0.239,0.239,0.467,0,0,0.0667,0.325,0.549,0.549,0,0,0.254
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.277
+0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.509
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0926
+0.667,0.462,0.462,0.233,0,0,0,0.521,0.541,0.541,0,0,0.185
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.307,0,0.231
+1,0.571,0.571,0,0.562,0,0,0.543,0.493,0.493,0.592,0,0.139
+1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.0463
+1,0.124,0.124,0,0,0,0,0.368,0.431,0.431,0,0,0
+1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0472
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.196
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.139
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0926
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0
+1,0.353,0.353,0,0,0.638,0,0.488,0.641,0.641,0,0.184,0.278
+1,0.408,0.408,0.233,0,0,0.667,0.58,0.653,0.653,0,0,0.231
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.139
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.324
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176
+1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.33
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.198
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.222
+0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.156,0.156,0.1,0,0,0,0.242,0.487,0.487,0,0,0.0926
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0463
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0926
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0
+0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.284,0,0.0926
+1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.546,0,0.0463
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.278
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.181
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0849
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.209
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.13
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.204
+0.667,0.162,0.162,0.467,0,0,0,0.276,0.487,0.487,0,0,0.163
+0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.133
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.185
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0463
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.278
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.185
+0.333,0.143,0.143,0,0,0.0638,0,0.27,0.499,0.499,0,0,0
+0.333,0.144,0.144,0.233,0,0.574,0.05,0.291,0.507,0.507,0,0.266,0.0926
+0.667,0.252,0.252,0,0,0,0.617,0.411,0.582,0.582,0,0.415,0.185
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.61,0.139
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.139
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.272
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.457
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.179
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.148
+1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.311
+0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0536
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0926
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.417
+0.333,0.153,0.153,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.389
+0.333,0.147,0.147,0,0,0.894,0,0.248,0.491,0.491,0,0.239,0.139
+0.333,0.143,0.143,0,0,0,0.8,0.245,0.495,0.495,0,0.243,0
+0.667,0.142,0.142,0,0,0,0.1,0.258,0.495,0.495,0,0,0
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.37
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.139
+0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0
+1,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.278
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.592
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.31
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.139
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.139
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0926
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0
+0.667,0.239,0.239,0.367,0,0,0,0.325,0.549,0.549,0,0,0.0926
+1,0.353,0.353,0.833,0,0,0,0.488,0.641,0.641,0.241,0,0.0463
+1,0.408,0.408,0,0.271,0.638,0,0.58,0.653,0.653,0.785,0.0994,0.0463
+1,0.518,0.518,0,0,0,0.667,0.616,0.616,0.616,0.684,0.773,0.463
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.592,0.527,0.324
+1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.372,0.185
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0934
+1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.227
+1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.555
+0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.349
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.344
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0971
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.139
+0.333,0.143,0.143,0.467,0,0,0,0.27,0.499,0.499,0,0,0.417
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0
+0.667,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.139
+0.667,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.139
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.185
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.188
+0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.266
+0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0463
+0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.131
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+1,0.162,0.162,0.233,0.0833,0,0,0.276,0.487,0.487,0.598,0,0
+1,0.263,0.263,0.233,0.479,0.319,0,0.227,0.508,0.508,0.582,0,0
+1,0.256,0.256,0,0,0,0.55,0.233,0.508,0.508,0.106,0.469,0
+1,0.343,0.343,0,0,0,0.35,0.23,0.542,0.542,0,0.636,0.0463
+1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0.15,0
+1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.088
+1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0.0463
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0463
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0852
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.219
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.415
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.395
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.362
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.417
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.112
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0463
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0463
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.278
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463
+0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.139
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.324
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.231
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.231
+1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0926
+1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.179
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.198
+0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.477
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463
+0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.231
+0.333,0.142,0.142,0.367,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.143,0.143,0.583,0,0,0,0.27,0.499,0.499,0,0,0.0463
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.185
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.37
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.132
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.115
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.261
+0.333,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.06
+0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.128
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.321
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.508
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0.638,0,0.258,0.465,0.465,0,0.0519,0
+0.333,0.143,0.143,0,0,0,0.8,0.27,0.499,0.499,0,0.577,0
+1,0.334,0.334,0,0,0,0.1,0.359,0.592,0.592,0,0.341,0
+0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.138,0,0
+0.333,0.169,0.169,0.233,0.396,0,0,0.365,0.528,0.528,0.671,0,0
+0.667,0.362,0.362,0,0.167,0,0,0.497,0.566,0.566,0.445,0,0.539
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.212
+1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.139
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.361
+1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0
+0.667,0.162,0.162,0.367,0,0,0,0.276,0.487,0.487,0,0,0
+0.333,0.156,0.156,0.35,0,0,0,0.242,0.487,0.487,0,0,0.417
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.185
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.667,0.236,0.236,0.117,0,0,0,0.282,0.533,0.533,0,0,0.0463
+0.667,0.144,0.144,0.35,0,0,0,0.291,0.507,0.507,0,0,0
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463
+1,0.408,0.408,0.367,0,0,0,0.58,0.653,0.653,0,0,0.0926
+1,0.518,0.518,0.1,0,0,0,0.616,0.616,0.616,0,0,0
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.748
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.118
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.274,0.274,0.583,0,0,0,0.294,0.508,0.508,0,0,0.328
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.141
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.16
+0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.389
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.303
+0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.379
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.481
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.258
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.557
+0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0.209
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.278
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0926
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.231
+1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.139
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.128
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.169
+1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0
+0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.737
+0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0
+0.667,0.235,0.235,0,0,0.702,0,0.258,0.525,0.525,0,0,0
+0.667,0.235,0.235,0,0,0.255,0.3,0.276,0.517,0.517,0,0.39,0.185
+1,0.329,0.329,0,0,0,0.15,0.294,0.567,0.567,0,0.426,0.463
+1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.72,0.0463
+1,0.353,0.353,0.233,0,0,0,0.488,0.641,0.641,0,0.294,0.288
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0.941,0.433
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.427,0.316
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.601,0.144
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.422,0.222
+1,0.571,0.571,0.233,0,0,0,0.543,0.493,0.493,0,0.827,0.12
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.372,0.336
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.471
+0.667,0.143,0.143,0.467,0,0,0,0.245,0.495,0.495,0,0,0
+0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.667,0.142,0.142,0,0,0.638,0,0.267,0.491,0.491,0,0.162,0.231
+1,0.236,0.236,0.367,0,0,0.667,0.282,0.533,0.533,0,0.562,0.37
+1,0.334,0.334,0.1,0,0,0,0.359,0.592,0.592,0,0,0.315
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.457
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.364
+1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.348
+1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.819
+1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.216
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.179
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.124
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.221
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.133
+0.667,0.163,0.163,0.233,0,0,0,0.316,0.483,0.483,0,0,0.143
+0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.426
+0.333,0.153,0.153,0,0,0.957,0,0.245,0.487,0.487,0,0.16,0.0463
+0.333,0.147,0.147,0,0,0,0.55,0.248,0.491,0.491,0,0.623,0.0463
+0.333,0.143,0.143,0,0,0,0.35,0.245,0.495,0.495,0,0.62,0.0926
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.53,0.185
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0926
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.185
+0.667,0.239,0.239,0.467,0,0,0,0.325,0.549,0.549,0,0,0.0463
+1,0.353,0.353,0.233,0,0,0,0.488,0.641,0.641,0,0,0.278
+1,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.278
+1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0
+1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.139
+1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.139
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.337
+1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.108
+0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.658
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0.241,0,0.273
+0.667,0.256,0.256,0,0.562,0.702,0,0.233,0.508,0.508,0.583,0,0.278
+0.667,0.245,0.245,0,0,0.255,0.3,0.239,0.517,0.517,0,0.714,0.0926
+0.667,0.237,0.237,0.367,0,0,0.367,0.233,0.525,0.525,0,0.766,0.0926
+0.667,0.235,0.235,0.1,0,0,0,0.258,0.525,0.525,0,0.286,0
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.227,0
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.611,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.625,0.139
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0926
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0
+1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0463
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.475
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.696
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.201
+0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.216
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.581
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.518
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.231
+0.333,0.143,0.143,0.467,0,0,0,0.245,0.495,0.495,0,0,0.139
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.139
+0.333,0.151,0.151,0.117,0,0,0,0.334,0.524,0.524,0,0,0
+0.333,0.169,0.169,0.117,0,0,0,0.365,0.528,0.528,0,0,0.231
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0
+1,0.668,0.668,0,0,0.957,0,0.653,0.579,0.579,0,0.0653,0.0926
+1,0.788,0.788,0,0,0,0.55,0.635,0.555,0.555,0,0.0549,0.385
+1,0.223,0.223,0,0,0,0.35,0.353,0.475,0.475,0,0,0.253
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.126
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.273
+0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.142,0.142,0.317,0,0,0,0.267,0.491,0.491,0,0,0
+0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0
+1,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.231
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.37
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.179
+1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.14
+1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.105
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.124
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0776
+0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.186
+0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.226
+0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.165
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0
+0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.291
+0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.277
+0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.231
+0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.667,0.142,0.142,0.367,0,0,0,0.267,0.491,0.491,0,0,0.139
+0.667,0.236,0.236,0.1,0,0,0,0.282,0.533,0.533,0,0,0
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.278
+0.667,0.252,0.252,0.367,0,0,0,0.411,0.582,0.582,0,0,0.0463
+1,0.408,0.408,0.1,0,0,0,0.58,0.653,0.653,0,0,0.0463
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.434
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.079
+1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.274,0.274,0.367,0,0,0,0.294,0.508,0.508,0,0,0.219
+1,0.37,0.37,0.1,0,0,0,0.212,0.53,0.53,0,0,0.112
+1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.322
+1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0.156,0,0.262
+0.667,0.237,0.237,0,0.271,0,0,0.233,0.525,0.525,0.522,0,0.0926
+0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.231
+0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0463
+0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0926
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0926
+1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.324
+0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.185
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926
+1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.186
+1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.0463
+1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.277,0.277,0.35,0,0,0,0.374,0.5,0.5,0.519,0,0
+1,0.387,0.387,0,0.562,0,0,0.313,0.53,0.53,0.355,0,0.249
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.307
+0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.32
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.315
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.398
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.203
+0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0.37
+0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.337
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.289,0,0
+1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.671,0,0.0463
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.582,0,0.448
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.469
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463
+1,0.183,0.183,0,0.0833,0,0,0.393,0.451,0.451,0.583,0,0
+1,0.0743,0.0743,0,0.188,0,0,0.294,0.454,0.454,0.122,0,0
+1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.42
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.191
+0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.153
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0764
+0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.66
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.28
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.199
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.083
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.139
+0.333,0.143,0.143,0,0,0.0638,0,0.27,0.499,0.499,0,0,0.185
+0.667,0.239,0.239,0.117,0,0.894,0,0.325,0.549,0.549,0,0.297,0
+0.667,0.252,0.252,0.117,0,0,0.667,0.411,0.582,0.582,0,0.435,0.0926
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.435,0.0463
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.654,0.231
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.292,0.0926
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.14,0.0463
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.219
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0
+1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.12
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.255
+1,0.39,0.39,0.617,0,0,0,0.432,0.518,0.518,0,0,0.134
+0.667,0.274,0.274,0.333,0,0,0,0.294,0.508,0.508,0,0,0.37
+0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.139
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0926
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0926
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.185
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463
+0.333,0.143,0.143,0.117,0,0.702,0,0.27,0.499,0.499,0,0,0.185
+0.667,0.239,0.239,0.6,0,0.255,0.3,0.325,0.549,0.549,0,0.466,0.0926
+1,0.353,0.353,0,0,0,0.15,0.488,0.641,0.641,0,0,0.0463
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0926
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.509
+0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.241
+0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0173
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.55
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.658
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.247
+0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.0372
+0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.143,0.143,0.367,0,0,0,0.27,0.499,0.499,0,0,0.0926
+0.667,0.239,0.239,0.35,0,0,0,0.325,0.549,0.549,0,0,0
+0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.185
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.247
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0463
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.185
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.305
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26
+1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.157
+1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.268
+1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.267
+0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.107
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.262
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0
+0.667,0.239,0.239,0.117,0,0,0,0.325,0.549,0.549,0,0,0
+1,0.353,0.353,0.117,0,0,0,0.488,0.641,0.641,0,0,0
+1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.278
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0926
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0463
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.175
+1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.112
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.412
+0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.105
+0.333,0.156,0.156,0.233,0,0,0,0.242,0.487,0.487,0,0,0
+0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463
+0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0
+0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.37
+0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.231
+0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.185
+0.333,0.151,0.151,0.467,0,0,0,0.334,0.524,0.524,0,0,0.0463
+0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0463
+1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.278
+1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.578
+1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.231
+1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0
+1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.364
+1,0.0743,0.0743,0.2,0,0,0,0.295,0.455,0.455,0,0,0.0962
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.319,0,0.258,0.465,0.465,0,0.0134,0
+1,0.139,0.139,0,0,0,0.917,0.305,0.463,0.463,0,0.418,0.139
+1,0.167,0.167,0.483,0,0,0,0.317,0.484,0.484,0,0.499,0
+1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0.427,0
+1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.472,0
+1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.907,0.0463
+1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.496,0.0926
+0.667,0.251,0.251,0.283,0,0,0,0.234,0.528,0.528,0,0.602,0.0463
+0.667,0.249,0.249,0.2,0,0,0,0.259,0.528,0.528,0,0.0601,0.0463
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.185
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0926
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.417
+1,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.607,0,0.324
+0.667,0.454,0.454,0,0.583,0.915,0,0.5,0.569,0.569,0,0.0475,0.0926
+0.667,0.554,0.554,0,0,0.0426,0.45,0.525,0.544,0.544,0,0.172,0.406
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0463
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.437
+1,0.183,0.183,0.0333,0,0,0,0.395,0.453,0.453,0,0,0.0846
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.249
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.387
+1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0959
+1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0
+1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0.12,0,0
+1,0.381,0.381,0,0.583,0,0,0.222,0.534,0.534,0.813,0,0.556
+1,0.364,0.364,0,0,0.319,0,0.232,0.546,0.546,0.233,0,0.0463
+1,0.352,0.352,0,0,0,0.683,0.222,0.559,0.559,0,0.512,0.139
+1,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.746,0
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.717,0.0926
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.389,0.0463
+0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0.699,0
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.231
+0.667,0.351,0.351,0,0,0.277,0,0.475,0.594,0.594,0,0,0.0463
+0.667,0.454,0.454,0,0,0.0426,0.467,0.5,0.569,0.569,0,0.316,0.139
+0.667,0.554,0.554,0.233,0,0,0.45,0.525,0.544,0.544,0,0.218,0
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.162
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.225
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0635
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.225
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.328
+0.667,0.286,0.286,0.483,0,0,0,0.413,0.585,0.585,0,0,0.405
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.139
+0.667,0.454,0.454,0,0.0833,0,0,0.5,0.569,0.569,0.533,0,0
+1,0.806,0.806,0,0.208,0,0,0.658,0.583,0.583,0.144,0,0.329
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.409
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.26
+1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.341
+0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.301
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.151
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.14
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.139
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.246
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.271
+0,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.343
+0,0.0495,0.0495,0,0,0.255,0.3,0.258,0.465,0.465,0,0.45,0.139
+0.667,0.286,0.286,0,0,0,0.85,0.413,0.585,0.585,0,0.383,0.231
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.62,0
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.475,0
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.53,0.185
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.445,0.214
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.723,0.138
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.401,0.185
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.699,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.81,0
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0.636,0
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0.705,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.22
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0.201,0,0
+0.333,0.16,0.16,0,0.292,0,0,0.246,0.488,0.488,0.413,0,0
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.185
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.139
+0.333,0.15,0.15,0.117,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.154,0.154,0.117,0,0,0,0.292,0.509,0.509,0,0,0
+1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.0754,0,0.231
+1,0.501,0.501,0,0.396,0.0638,0,0.584,0.658,0.658,0.381,0,0.37
+1,0.656,0.656,0,0.188,0.255,0.3,0.621,0.621,0.621,0,0.197,0.139
+0.667,0.554,0.554,0,0,0,0.383,0.525,0.544,0.544,0.133,0.0979,0.491
+1,0.584,0.584,0,0.292,0,0,0.512,0.528,0.528,0.727,0,0.184
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0.761,0,0.231
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.0905,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.179
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0926
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.139
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.185
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0463
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0463
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.278
+0.333,0.168,0.168,0.117,0,0,0,0.336,0.525,0.525,0,0,0.754
+0.667,0.351,0.351,0.367,0,0,0,0.475,0.594,0.594,0,0,0.0463
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.278
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.209
+1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.506
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0764
+1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.112
+1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0.635
+1,0.402,0.402,0,0,0.702,0,0.436,0.521,0.521,0,0,0.137
+0.667,0.286,0.286,0,0,0.255,0.3,0.296,0.511,0.511,0.589,0.555,0
+0.333,0.164,0.164,0,0.875,0,0.617,0.243,0.488,0.488,0.666,0,0.0463
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.555
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.185
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.189
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.278
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.215,0,0.139
+0.667,0.286,0.286,0,0.396,0,0,0.413,0.585,0.585,0.522,0,0.0463
+0.667,0.351,0.351,0,0.479,0,0,0.475,0.594,0.594,0.627,0,0.439
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.111,0,0.231
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.313
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0463
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0
+0.667,0.259,0.259,0,0,0.638,0,0.24,0.519,0.519,0,0.214,0.185
+0.667,0.251,0.251,0,0,0,0.45,0.234,0.528,0.528,0,0.454,0.324
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.463,0
+0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.54,0.185
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.326,0.267
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.558,0.231
+0.333,0.168,0.168,0.233,0,0,0,0.336,0.525,0.525,0,0.51,0.324
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.184,0.0463
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0
+0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0926
+1,0.584,0.584,0,0,0.277,0,0.512,0.528,0.528,0,0,0.503
+1,0.391,0.391,0,0,0.362,0.217,0.45,0.486,0.486,0,0.353,0.0463
+1,0.116,0.116,0,0,0,0.467,0.326,0.459,0.459,0,0.234,0.231
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0.0564,0.139
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.283,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.168,0.168,0.433,0,0,0,0.277,0.488,0.488,0,0,0
+1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0
+1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0
+0.667,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.139
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0
+1,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0926
+1,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.417
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.139
+1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.185
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.47
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.424
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.251
+0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.357
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.123,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0849
+1,0.0511,0.0511,0.233,0,0,0,0.29,0.42,0.42,0,0,0.188
+1,0.107,0.107,0.117,0,0,0,0.308,0.428,0.428,0,0,0.224
+0.667,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0
+0.667,0.167,0.167,1,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.0463
+0.333,0.0495,0.0495,0.983,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.185
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0463
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.139
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.231
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0926
+1,0.501,0.501,0.233,0,0,0,0.584,0.658,0.658,0,0,0.139
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0926
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.135,0,0.0463
+1,0.584,0.584,0,0.396,0,0,0.512,0.528,0.528,0.512,0,0.266
+1,0.391,0.391,0,0.188,0,0,0.45,0.486,0.486,0,0,0.202
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0781,0.0781,0.233,0,0,0,0.283,0.447,0.447,0,0,0.177
+1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.224
+0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.325
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.105
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0943
+1,0.404,0.404,0,0,0.0638,0,0.491,0.646,0.646,0.145,0,0
+0.667,0.351,0.351,0,0.583,0.255,0.3,0.475,0.594,0.594,0,0.372,0
+0.667,0.454,0.454,0,0,0,0.15,0.5,0.569,0.569,0,0.455,0
+0.667,0.554,0.554,0.867,0,0,0,0.525,0.544,0.544,0,0.553,0.139
+1,0.584,0.584,0.333,0,0,0,0.512,0.528,0.528,0,0.102,0.458
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.442
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.25
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0993
+1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.187
+1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.705
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.0922
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0926
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.126
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.16
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.194
+0.667,0.351,0.351,0.367,0,0,0,0.475,0.594,0.594,0,0,0.0463
+0.667,0.454,0.454,0.35,0,0,0,0.5,0.569,0.569,0,0,0.0926
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.278
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.139
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.328
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.164
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114
+0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.562
+0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.202
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.39
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.509
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.139
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.445
+0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0926
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.143
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.113
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.231
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.184
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.178
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0.152,0,0
+0.333,0.15,0.15,0,0.292,0,0,0.246,0.496,0.496,0.431,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.185
+0.667,0.251,0.251,0.233,0,0,0,0.284,0.536,0.536,0,0,0.0926
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0463
+1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.139
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.0926
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.322
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0946
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.206
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.167,0.167,0.283,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.284
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.172
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.117,0,0.268
+0.667,0.249,0.249,0,0.604,0,0,0.259,0.528,0.528,0.7,0,0.0463
+0.667,0.249,0.249,0,0.271,0.277,0,0.277,0.519,0.519,0,0,0.0463
+0.667,0.251,0.251,0,0,0.362,0.217,0.284,0.536,0.536,0.226,0.347,0.0463
+1,0.363,0.363,0,0.292,0,0.7,0.361,0.596,0.596,0.607,0.372,0.0463
+1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.576,0,0.367
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0463
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0
+0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0463
+1,0.391,0.391,0,0,0.915,0,0.45,0.486,0.486,0,0.0208,0.274
+1,0.116,0.116,0,0,0.0426,0.05,0.326,0.459,0.459,0,0,0.0814
+1,0.0495,0.0495,0,0,0,0.217,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.311
+1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.105
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.257
+0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.284
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0463
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.186
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.551,0,0.278
+0.667,0.351,0.351,0,0.583,0,0,0.475,0.594,0.594,0.785,0,0
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.542,0,0.0926
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.557,0,0
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0.65,0,0.0463
+1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0.594,0,0.185
+1,0.249,0.249,0,0,0,0.417,0.463,0.447,0.447,0,0,0.157
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.109
+1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.139
+0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.182
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.491
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.475
+0.333,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926
+1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.0463
+0.667,0.251,0.251,0.117,0,0,0,0.284,0.536,0.536,0,0,0
+0.667,0.259,0.259,0.117,0,0,0,0.327,0.552,0.552,0,0,0
+1,0.404,0.404,0.117,0,0,0,0.491,0.646,0.646,0,0,0.435
+1,0.501,0.501,0.117,0,0,0,0.584,0.658,0.658,0,0,0.36
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.297
+1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.231
+1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.504
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.133
+1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.259,0.259,0.483,0,0.319,0.05,0.327,0.552,0.552,0,0.0208,0.139
+1,0.404,0.404,0,0,0,0.867,0.491,0.646,0.646,0,0.84,0
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.499,0
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.168,0.417
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.324
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.185
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0
+1,0.066,0.066,0,0,0,0,0.314,0.428,0.428,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0781,0.0781,0,0,0.957,0,0.283,0.447,0.447,0,0.0341,0
+1,0.228,0.228,0,0,0,0.55,0.352,0.461,0.461,0,0.455,0.139
+1,0.284,0.284,0,0,0,0.133,0.376,0.503,0.503,0,0.226,0.0842
+1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.467
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.314
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.197
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.324
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.231
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0463
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0
+0.667,0.286,0.286,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0463
+0.667,0.351,0.351,0,0.0833,0,0,0.475,0.594,0.594,0.627,0,0.648
+1,0.656,0.656,0,0.5,0,0,0.621,0.621,0.621,0.442,0,0.193
+1,0.806,0.806,0,0.292,0,0,0.658,0.583,0.583,0.223,0,0.152
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.372
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0952
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.36
+0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.231
+0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463
+0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.185
+0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.667,0.154,0.154,0.717,0,0,0,0.292,0.509,0.509,0,0,0
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0926
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.4,0,0.0926
+1,0.656,0.656,0,0.583,0,0,0.621,0.621,0.621,0.118,0,0.0926
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.139
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.295
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114
+0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.284,0.284,0.367,0,0,0,0.376,0.503,0.503,0,0,0
+0.333,0.168,0.168,0.35,0,0,0,0.277,0.488,0.488,0,0,0
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463
+0.333,0.149,0.149,0,0,0.0638,0,0.258,0.496,0.496,0,0,0.0926
+0.333,0.149,0.149,0,0,0.574,0.05,0.268,0.492,0.492,0,0.214,0.139
+0.667,0.251,0.251,0,0,0,0.867,0.284,0.536,0.536,0,0.543,0.0926
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.549,0.139
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.496,0.0926
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.291,0.384,0.0926
+0.667,0.454,0.454,0,0.583,0,0,0.5,0.569,0.569,0.348,0.0504,0
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0463
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0926
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.444
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.185
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199
+1,0.167,0.167,0.783,0,0,0,0.317,0.484,0.484,0.472,0,0.124
+1,0.286,0.286,0.667,0.583,0,0,0.296,0.511,0.511,0.348,0,0.132
+1,0.392,0.392,0.0333,0,0,0,0.213,0.534,0.534,0,0,0
+0.667,0.27,0.27,0.2,0,0,0,0.234,0.511,0.511,0,0,0
+1,0.364,0.364,0.233,0,0,0,0.232,0.546,0.546,0,0,0.139
+1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0
+1,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0
+1,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0
+1,0.351,0.351,0.283,0,0,0,0.297,0.571,0.571,0,0,0.0926
+1,0.363,0.363,0.433,0,0,0,0.361,0.596,0.596,0,0,0.139
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.139
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.139
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0463
+1,0.806,0.806,0,0,0.638,0,0.658,0.583,0.583,0,0.2,0.0926
+1,0.851,0.851,0,0,0,0.917,0.639,0.559,0.559,0,0.531,0.278
+1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0.675,0
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.227,0.118
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.083
+0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139
+0.333,0.16,0.16,0.0333,0,0,0,0.246,0.488,0.488,0,0,0.324
+0.333,0.154,0.154,0.933,0,0,0,0.249,0.492,0.492,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0
+0.667,0.249,0.249,0,0,0.957,0,0.259,0.528,0.528,0,0.223,0
+1,0.349,0.349,0,0,0,0.717,0.287,0.546,0.546,0,0.26,0
+1,0.351,0.351,0,0,0,0.2,0.297,0.571,0.571,0,0,0.0463
+1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.324
+0.667,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.185
+0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.139
+0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0463
+0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.139
+0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.139
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.626
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.101
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.506
+1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.21
+1,0.228,0.228,0.233,0,0,0,0.352,0.461,0.461,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.168,0.168,0.233,0,0,0,0.277,0.488,0.488,0,0,0.0926
+0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.139
+0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0463
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.142,0,0.0463
+0.333,0.149,0.149,0,0.292,0,0,0.268,0.492,0.492,0.75,0,0
+0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.667,0.259,0.259,0.367,0,0,0,0.327,0.552,0.552,0,0,0.139
+0.667,0.286,0.286,0.117,0,0,0,0.413,0.585,0.585,0,0,0.702
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.225
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.102
+1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0463
+1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.231
+1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0924
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0956
+0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.219
+0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.149,0.149,0.233,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.154,0.154,0.483,0.0833,0,0,0.292,0.509,0.509,0.641,0,0.0926
+0.667,0.286,0.286,0,0.5,0,0,0.413,0.585,0.585,0,0,0.185
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.185
+1,0.656,0.656,0.717,0,0,0,0.621,0.621,0.621,0,0,0.0463
+1,0.806,0.806,0,0,0.638,0,0.658,0.583,0.583,0,0,0.17
+1,0.851,0.851,0,0,0,0.55,0.639,0.559,0.559,0,0.671,0.139
+1,0.391,0.391,0,0,0,0.133,0.45,0.486,0.486,0,0.111,0.213
+1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0
+1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.378
+1,0.228,0.228,0.117,0,0,0,0.352,0.461,0.461,0,0,0.155
+0.667,0.167,0.167,0.117,0,0,0,0.317,0.484,0.484,0,0,0.153
+0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.139
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0
+0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0463
+0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.37
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.417
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139
+0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.324
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.072
+1,0.0503,0.0503,0.85,0,0,0,0.274,0.443,0.443,0,0,0
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0
+1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.113
+0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.306
+0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.466
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.149,0.149,0.233,0,0.638,0,0.268,0.492,0.492,0,0.154,0
+0.667,0.251,0.251,0.117,0,0,0.683,0.284,0.536,0.536,0,0.0467,0
+1,0.363,0.363,0.117,0,0,0,0.361,0.596,0.596,0,0,0
+1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.185
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0463
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0926
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.146
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0676
+1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.112
+1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0.181,0,0.227
+1,0.139,0.139,0,0.396,0.638,0,0.305,0.463,0.463,0.619,0,0.115
+0.667,0.284,0.284,0.233,0.188,0,0.55,0.376,0.503,0.503,0.153,0.393,0.0463
+0.333,0.168,0.168,0,0.292,0,0.133,0.277,0.488,0.488,0.673,0,0
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.463
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.669
+0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.278
+0.667,0.249,0.249,0.233,0,0,0,0.277,0.519,0.519,0,0,0.0926
+0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.353
+1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.157
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0
+1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.517
+1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0463
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.515
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.26
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.397,0,0.102
+1,0.168,0.168,0,0.292,0,0,0.277,0.488,0.488,0.118,0,0.142
+0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0
+0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926
+0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0
+1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0
+1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.616
+1,0.351,0.351,0.233,0,0,0,0.297,0.571,0.571,0,0,0.447
+1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.139
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0926
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.185
+0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139
+0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.278
+1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.139
+1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.378
+1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.167,0.167,0.717,0,0,0,0.317,0.484,0.484,0,0,0
+0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0
+0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926
+0.667,0.259,0.259,0.283,0,0,0,0.24,0.519,0.519,0,0,0
+0.333,0.15,0.15,0.917,0,0,0,0.246,0.496,0.496,0,0,0.278
+0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0
+0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.231
+0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.278
+0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.328
+0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.331
+0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.573,0,0.0926
+1,0.656,0.656,0,0.292,0,0,0.621,0.621,0.621,0.113,0,0.252
+1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.348
+1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0
+1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.0463
+1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0.367,0,0,0,0.261,0.533,0.533,0,0,0
+0.333,0.159,0.159,0.133,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.169
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.659
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0926
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.139
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.37
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.12
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.38
+0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.375
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.161
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.399
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0932
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.316
+0.667,0.172,0.172,0.25,0,0,0,0.346,0.518,0.518,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0
+0.667,0.35,0.35,0.367,0,0,0,0.478,0.67,0.67,0,0,0
+1,0.655,0.655,0.383,0,0,0,0.699,0.788,0.788,0,0,0.185
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.185
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.34
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.134
+1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.225
+1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.157
+1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.376
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.428
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.484
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.486
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0463
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0.124,0,0.0926
+1,0.655,0.655,0,0.396,0,0,0.699,0.788,0.788,0.68,0,0.324
+1,0.829,0.829,0,0.208,0,0,0.743,0.743,0.743,0,0,0.0463
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463
+1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.222
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0578,0.0578,0.883,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0.389
+1,0.295,0.295,0.133,0,0,0,0.433,0.571,0.571,0,0,0.114
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.105
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.284
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.123
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.27
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.183
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0926
+0.667,0.35,0.35,0.25,0,0,0,0.478,0.67,0.67,0,0,0.0926
+1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.0463
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.0463
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0463
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0594
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199
+0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.267
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.088
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.324
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0926
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.417
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0463
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.278
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0926
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.185
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.129
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0.27
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.188
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.139
+1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0.278
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463
+0.667,0.274,0.274,0.367,0,0,0,0.323,0.611,0.611,0,0,0.231
+1,0.417,0.417,0.133,0,0,0,0.433,0.713,0.713,0,0,0.0463
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.185
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0463
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.231
+1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.143
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0
+1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.261
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0943
+0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.32
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.187
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.555
+0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.185
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.139
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0463
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.366,0,0.224
+1,0.655,0.655,0,0.917,0,0,0.699,0.788,0.788,0.129,0,0.354
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.468
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.4
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0926
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.474
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258
+1,0.0798,0.0798,0.25,0,0,0,0.305,0.474,0.474,0,0,0.129
+1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.184
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.347
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.526
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.324
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.694
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0926
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0.332,0,0
+0.333,0.2,0.2,0.25,0.604,0,0,0.368,0.568,0.568,0.321,0,0
+0.667,0.453,0.453,0,0,0.0638,0,0.552,0.68,0.68,0,0,0
+0.667,0.569,0.569,0,0,0.532,0.0833,0.581,0.65,0.65,0,0.3,0.231
+1,0.905,0.905,0,0,0,0.617,0.788,0.698,0.698,0,0.652,0.0463
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.561
+1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.38
+1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177
+1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.459
+0.667,0.301,0.301,0.383,0,0,0,0.337,0.581,0.581,0,0,0.412
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0926
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0926
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.441
+0.667,0.294,0.294,0.617,0,0,0,0.374,0.631,0.631,0,0,0.163
+1,0.501,0.501,0.133,0,0,0,0.588,0.773,0.773,0,0,0.271
+1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.305,0,0
+0.667,0.569,0.569,0,0.292,0,0,0.581,0.65,0.65,0.257,0,0.185
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.417
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.145
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.0463
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196
+1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.319
+0.667,0.172,0.172,0.367,0,0,0,0.346,0.518,0.518,0,0,0.136
+0.667,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0463
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0463
+0.667,0.2,0.2,0,0,0.298,0.0667,0.368,0.568,0.568,0,0.111,0.0463
+1,0.453,0.453,0,0,0,1,0.552,0.68,0.68,0,0.493,0
+1,0.569,0.569,0,0,0,0.117,0.581,0.65,0.65,0,0.539,0.648
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.107,0.785
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.396
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.208
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179
+0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0.478,0,0
+0.667,0.301,0.301,0,0.292,0,0,0.337,0.581,0.581,0.598,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.602
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139
+0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.37
+0.667,0.2,0.2,0.117,0,0,0,0.368,0.568,0.568,0,0,0.0463
+0.667,0.251,0.251,0.383,0,0,0,0.405,0.573,0.573,0,0,0.0463
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.192
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.452
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.139
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.486
+1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.109
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.413
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.362
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.138
+0.333,0.172,0.172,0.25,0,0,0,0.316,0.548,0.548,0,0,0
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.278
+1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.324
+1,0.829,0.829,0,0,0.894,0,0.743,0.743,0.743,0,0.0475,0.185
+1,0.62,0.62,0,0,0,0.6,0.611,0.621,0.621,0,0.479,0.0463
+1,0.564,0.564,0,0,0,0.35,0.596,0.601,0.601,0,0,0.185
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.322
+1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.136
+1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.181
+1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.293
+1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.158
+1,0.279,0.279,0.367,0,0,0,0.271,0.591,0.591,0,0,0.0698
+1,0.271,0.271,0.25,0,0,0,0.263,0.601,0.601,0,0,0.213
+0.667,0.159,0.159,0.133,0,0,0,0.275,0.533,0.533,0,0,0.185
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.139
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.06
+1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.287
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.417
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.324
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.231
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.397
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.139
+1,0.356,0.356,0.5,0,0,0,0.522,0.551,0.551,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0
+1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0
+1,0.066,0.066,0,0,0,0,0.36,0.482,0.482,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.36,0.472,0.472,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.352,0.462,0.462,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.189
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.418
+0.667,0.291,0.291,0,0,0.596,0,0.263,0.581,0.581,0,0.102,0
+0.667,0.164,0.164,0,0,0,0.833,0.264,0.528,0.528,0,0.742,0
+0.667,0.16,0.16,0,0,0,1,0.261,0.533,0.533,0,0.601,0.0463
+0.667,0.159,0.159,0.25,0,0,0.0667,0.275,0.533,0.533,0,0.00445,0.0926
+0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.185
+0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139
+0.667,0.172,0.172,0,0,0.0638,0,0.316,0.548,0.548,0,0,0
+0.667,0.2,0.2,0,0,0.532,0.0833,0.368,0.568,0.568,0,0.5,0
+0.667,0.453,0.453,0,0,0,0.617,0.552,0.68,0.68,0,0.444,0.463
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.576,0.139
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.402,0.228
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.577,0
+1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.675,0
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.507,0.0314
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0.111,0.244
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.351
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.259
+0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0541
+0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0761
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.163
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0
+0.667,0.35,0.35,0.367,0,0,0,0.478,0.67,0.67,0,0,0
+1,0.655,0.655,0.383,0,0,0,0.699,0.788,0.788,0,0,0.231
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231
+1,0.905,0.905,0,0.0833,0,0,0.788,0.698,0.698,0.506,0,0.0463
+1,0.821,0.821,0,0.208,0,0,0.765,0.669,0.669,0.794,0,0.0463
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.253,0,0.0463
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0902
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0798,0.0798,0.117,0,0,0,0.305,0.474,0.474,0,0,0.633
+1,0.236,0.236,0.133,0,0,0,0.404,0.522,0.522,0,0,0
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.278
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0985
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.072
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0463
+0.333,0.172,0.172,0.117,0,0,0,0.316,0.548,0.548,0,0,0.0926
+0.667,0.35,0.35,0.383,0,0,0,0.478,0.67,0.67,0,0,0.0926
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.417
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.375
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.163
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.176,0,0.4
+1,0.203,0.203,0,0.292,0,0,0.39,0.508,0.508,0.761,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.101,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.345
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.071
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.469
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.376
+0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.135
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.255
+0.667,0.271,0.271,0,0,0.0638,0,0.263,0.601,0.601,0,0,0.25
+0.667,0.269,0.269,0,0,0.532,0.0833,0.293,0.601,0.601,0,0.454,0.189
+0.667,0.269,0.269,0,0,0,1,0.315,0.591,0.591,0,0.562,0.137
+1,0.387,0.387,0.617,0,0,0.1,0.355,0.684,0.684,0,0.461,0.0926
+0.667,0.294,0.294,0.133,0,0,0,0.374,0.631,0.631,0,0,0.0926
+1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0
+1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.196,0,0.417
+1,0.829,0.829,0,0.396,0,0,0.743,0.743,0.743,0.851,0,0.139
+1,0.905,0.905,0,0.521,0,0,0.788,0.698,0.698,0.541,0,0.0463
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.0727,0,0.244
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.159
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.33
+1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.231
+1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.349
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0463
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0926
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.224
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.287
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.274,0.274,0.367,0,0,0,0.323,0.611,0.611,0,0,0.0926
+0.333,0.172,0.172,0.133,0,0,0,0.316,0.548,0.548,0,0,0.139
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.278
+0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.712
+1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0926
+0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.324
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.207
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.401
+1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.262
+0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.342
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.271
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.923
+0.333,0.164,0.164,0,0,0.894,0,0.264,0.528,0.528,0,0.12,0.447
+0.333,0.16,0.16,0.75,0,0,0.6,0.261,0.533,0.533,0,0.424,0
+0.667,0.269,0.269,0,0,0,0.35,0.293,0.601,0.601,0,0.671,0.0926
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.596,0
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.531,0.0463
+1,0.417,0.417,0.25,0,0,0,0.433,0.713,0.713,0,0.568,0.0463
+1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.455,0.0463
+1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.309,0.231
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926
+1,0.564,0.564,0,0.0833,0,0,0.596,0.601,0.601,0.654,0,0.324
+1,0.203,0.203,0,0.833,0,0,0.39,0.508,0.508,0,0,0.102
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.43
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.25,0,0.83,0,0.258,0.465,0.465,0,0.26,0
+1,0.382,0.382,0.25,0,0,0.7,0.266,0.669,0.669,0,0.337,0
+1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0
+0.667,0.274,0.274,0.117,0,0,0,0.323,0.611,0.611,0,0,0.231
+0.667,0.294,0.294,0.133,0,0,0,0.374,0.631,0.631,0,0,0.0926
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.324
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.231
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0926
+0.667,0.62,0.62,0.25,0,0,0,0.611,0.621,0.621,0,0,0.185
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0463
+1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.417
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0
+1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.566
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.204
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.463
+0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0926
+0.667,0.269,0.269,0.25,0,0,0,0.293,0.601,0.601,0,0,0
+1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0.278
+1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0
+1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0
+1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0.122,0,0.0463
+1,0.655,0.655,0,0.396,0,0,0.699,0.788,0.788,0.366,0,0.231
+1,0.829,0.829,0,0.521,0,0,0.743,0.743,0.743,0,0,0.0463
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.231
+1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0974
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.178
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.317
+0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.196
+0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.155
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0827
+0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0463
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.139
+1,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0
+1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0
+1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.231
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926
+1,0.564,0.564,0,0,0.298,0.0667,0.596,0.601,0.601,0,0.0861,0.35
+1,0.203,0.203,0,0,0,0.633,0.39,0.508,0.508,0,0.338,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.465
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.143,0.143,0.133,0,0,0,0.331,0.493,0.493,0,0,0.0726
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0.25,0,0,0,0.261,0.523,0.523,0,0,0.278
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.463
+0.333,0.162,0.162,0.25,0,0,0,0.29,0.538,0.538,0,0,0.0463
+0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0463
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.231
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.47
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.139
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.139
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.477
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.192
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.219
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.223
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0
+0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0.291,0,0
+1,0.569,0.569,0,0.708,0,0,0.581,0.65,0.65,0.307,0,0
+1,0.335,0.335,0,0.208,0,0,0.434,0.543,0.543,0,0,0.417
+1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.266
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.271
+1,0.417,0.417,0.5,0,0,0,0.521,0.624,0.624,0.443,0,0.314
+1,0.427,0.427,0,0.604,0,0,0.377,0.639,0.639,0.101,0,0.325
+0.667,0.299,0.299,0.117,0,0,0,0.256,0.581,0.581,0,0,0.727
+0.667,0.291,0.291,0.133,0,0,0,0.263,0.581,0.581,0,0,0.443
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.116
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.162,0.162,0.117,0,0,0,0.29,0.538,0.538,0,0,0
+0.333,0.172,0.172,0.133,0,0,0,0.316,0.548,0.548,0,0,0.185
+0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0926
+0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.139
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.139
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0463
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0
+1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.251
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.152
+1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.624
+0.667,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.223
+0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.291
+0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.231
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.278
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.278
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.294,0.294,0.75,0,0,0,0.374,0.631,0.631,0,0,0.138
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.139
+0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.234
+0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.243
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.519
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.172,0.172,0,0,0.0638,0,0.346,0.518,0.518,0,0,0
+1,0.175,0.175,0.867,0,0.532,0.0833,0.298,0.523,0.523,0,0.205,0
+1,0.424,0.424,0.383,0,0,0.383,0.255,0.639,0.639,0,0.423,0.283
+1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0.705,0.121
+1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0.102,0.0463
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0926
+0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0
+1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0
+1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.139
+1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0
+1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0.397,0,0.278
+0.667,0.453,0.453,0.117,0.604,0,0,0.552,0.68,0.68,0.72,0,0.278
+0.667,0.569,0.569,0.883,0,0,0,0.581,0.65,0.65,0.673,0,0.185
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.524,0,0.406
+1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.689,0,0.185
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0.618,0,0.0463
+1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0.634,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.358
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.344
+1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0,0.136
+1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0,0.127
+1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0,0.32
+0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0463
+0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463
+0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.37
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.139
+0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.231
+0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0.172,0,0.278
+1,0.829,0.829,0,0.292,0,0,0.743,0.743,0.743,0.746,0,0.185
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.383,0,0.185
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.515,0,0.231
+1,0.51,0.51,0,0.604,0,0,0.654,0.594,0.594,0.662,0,0.139
+1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0.17
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.335
+1,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.228
+0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.2,0.2,0.867,0,0.0638,0,0.368,0.568,0.568,0,0,0.278
+1,0.655,0.655,0.133,0,0.83,0,0.699,0.788,0.788,0,0.214,0.0926
+1,0.829,0.829,0,0,0,0.85,0.743,0.743,0.743,0,0.252,0.0926
+1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0,0
+1,0.307,0.307,0,0,0,0.05,0.427,0.533,0.533,0,0,0.231
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0758
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.194
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.43
+1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.19
+0.667,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0.454
+0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.383
+0.667,0.291,0.291,0.25,0,0,0,0.263,0.581,0.581,0,0,0.281
+0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0
+0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.231
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0463
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0
+0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0.413,0,0.0926
+1,0.501,0.501,0,0.604,0,0,0.588,0.773,0.773,0.0969,0,0.139
+1,0.655,0.655,0.5,0,0,0,0.699,0.788,0.788,0,0,0.0463
+1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231
+1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463
+1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.24
+1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.462
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.3
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.139
+0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0926
+0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926
+0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926
+0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.371
+1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.677
+0.667,0.35,0.35,0,0,0.298,0.0667,0.478,0.67,0.67,0,0.0223,0.321
+1,0.655,0.655,0,0,0,0.883,0.699,0.788,0.788,0,0.255,0.231
+0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.608,0.417
+0.667,0.62,0.62,0.367,0,0,0,0.611,0.621,0.621,0,0.461,0.0463
+1,0.821,0.821,0.633,0,0,0,0.765,0.669,0.669,0,0.239,0.0463
+1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0
+1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0.532,0,0.305,0.473,0.473,0,0,0.123
+0.667,0.147,0.147,0,0,0.0638,0.45,0.33,0.493,0.493,0,0.591,0.174
+0.333,0.177,0.177,0.233,0,0,0.583,0.345,0.518,0.518,0,0.102,0.0926
+0.333,0.184,0.184,0.0333,0,0,0,0.297,0.523,0.523,0,0,0.0463
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.139
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0463
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0926
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0
+1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.587
+1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.392
+0.667,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.18
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0
+1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.304
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.54
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.147,0.147,0.267,0,0,0,0.33,0.493,0.493,0,0,0.0704
+0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.231
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+0.333,0.237,0.237,0.817,0,0,0,0.316,0.547,0.547,0,0,0.139
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.231
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.37
+1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0926
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.243
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0171
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.139
+1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0
+0.667,0.185,0.185,0,0,0.383,0,0.257,0.523,0.523,0,0,0
+0.667,0.312,0.312,0,0,0.213,0.333,0.263,0.58,0.58,0,0.411,0
+0.333,0.175,0.175,0.117,0,0,0.95,0.264,0.528,0.528,0,0.32,0.185
+0.333,0.171,0.171,0.15,0,0,0,0.26,0.532,0.532,0,0.436,0.139
+0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.453,0.0463
+0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.577,0.0463
+0.667,0.338,0.338,0.367,0,0,0,0.322,0.609,0.609,0,0.426,0.231
+0.667,0.425,0.425,0.167,0,0,0,0.373,0.629,0.629,0,0.132,0.0463
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.189
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.493
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.224,0,0
+1,0.345,0.345,0,0.646,0,0,0.521,0.55,0.55,0.341,0,0.0463
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.817,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.402,0,0.102
+1,0.321,0.321,0,0.646,0,0,0.255,0.58,0.58,0.255,0,0.108
+1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.346
+1,0.426,0.426,0.267,0,0,0,0.276,0.652,0.652,0,0,0.208
+1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0.652
+1,0.409,0.409,0,0,0,0,0.31,0.667,0.667,0,0,0.244
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.417
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+1,0.612,0.612,0.267,0,0,0,0.431,0.711,0.711,0,0,0
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.37
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.224
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.134
+1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.139
+1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.187
+1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.24
+0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.381
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0186
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.139
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.16
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.689
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.422
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.203
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0463
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896
+1,0.245,0.245,0.483,0,0,0,0.403,0.521,0.521,0,0,0.0726
+1,0.305,0.305,0.05,0,0,0,0.432,0.57,0.57,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.173,0.173,0.05,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.324
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.231
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.185
+1,0.747,0.747,0,0,0.298,0,0.785,0.696,0.696,0,0,0.45
+1,0.566,0.566,0,0,0,0.683,0.763,0.667,0.667,0,0.593,0.185
+1,0.0495,0.0495,0,0,0,0.0833,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.203
+0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.176
+0.333,0.147,0.147,0.267,0,0,0,0.33,0.493,0.493,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.145,0,0.185
+0,0.0495,0.0495,0,0.542,0,0,0.258,0.465,0.465,0.729,0,0
+0.333,0.171,0.171,0,0.104,0,0,0.26,0.532,0.532,0,0,0.0463
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.278
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.231
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.401
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.308
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0.213,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0.383,0.2,0.305,0.473,0.473,0,0.269,0.0949
+0.667,0.245,0.245,0,0,0,0.833,0.403,0.521,0.521,0,0.129,0.166
+0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0531
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.185
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.416
+1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.362
+1,0.804,0.804,0,0,0.894,0,0.586,0.77,0.77,0,0.316,0.0926
+0.667,0.647,0.647,0,0,0,0.717,0.55,0.679,0.679,0,0.893,0.278
+1,0.919,0.919,0,0,0,0.317,0.741,0.741,0.741,0,0.647,0.139
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.414,0.463
+1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.305
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.116
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.345,0,0
+0.333,0.185,0.185,0,0.646,0,0,0.257,0.523,0.523,0.399,0,0
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.139
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.278
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463
+0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.338,0.338,0.533,0,0,0,0.322,0.609,0.609,0,0,0.0926
+1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0463
+1,0.553,0.553,0.233,0,0,0,0.477,0.669,0.669,0,0,0.154
+1,0.946,0.946,0.0333,0.229,0.851,0,0.697,0.785,0.785,0.436,0,0.28
+1,0.919,0.919,0,0.417,0.0426,0.467,0.741,0.741,0.741,0,0.251,0.194
+1,0.515,0.515,0,0,0,0.567,0.609,0.619,0.619,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.175,0.175,0.367,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0.333,0.171,0.171,0.167,0,0,0,0.26,0.532,0.532,0,0,0.0463
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.185
+1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.0463
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.139
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.417
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0463
+0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.384
+0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.278
+0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+0.667,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.44
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.253
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463
+0.333,0.169,0.169,0,0,0.0638,0,0.275,0.532,0.532,0,0,0.0926
+0.667,0.297,0.297,0,0,0.83,0,0.314,0.59,0.59,0,0.141,0.0463
+0.667,0.338,0.338,0.533,0,0,0.25,0.322,0.609,0.609,0,0.466,0.0463
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.527,0.324
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.141,0.37
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.19
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.242
+0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.149
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.505
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0349
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0978
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0931
+0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.617
+0.333,0.184,0.184,0.733,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.185,0.185,0.35,0,0,0,0.257,0.523,0.523,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0
+0.667,0.425,0.425,0.533,0,0.213,0,0.373,0.629,0.629,0,0,0
+1,0.804,0.804,0,0,0.383,0.2,0.586,0.77,0.77,0,0.239,0.0926
+1,0.946,0.946,0,0,0,0.567,0.697,0.785,0.785,0,0,0.278
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.591,0,0.185
+1,0.747,0.747,0,0.646,0,0,0.785,0.696,0.696,0,0,0.293
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.539
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.369
+1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.212
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0815
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.406
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.39
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.259,0,0.101
+0.333,0.169,0.169,0,0.646,0,0,0.275,0.532,0.532,0.706,0,0.173
+0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.154
+0.333,0.194,0.194,0.85,0,0,0,0.29,0.537,0.537,0,0,0.285
+0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.0463
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0926
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.185
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.185
+1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0463
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.417
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.099
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101
+1,0.245,0.245,0.267,0,0,0,0.403,0.521,0.521,0,0,0.149
+1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.173
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.567
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.211
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.164
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.392
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0.533,0,0,0,0.29,0.537,0.537,0,0,0.0926
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0463
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0926
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.231
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.242
+0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0852
+0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.284
+0.667,0.321,0.321,0,0,0.213,0,0.255,0.58,0.58,0,0,0.186
+0.667,0.312,0.312,0,0,0.681,0,0.263,0.58,0.58,0,0.329,0.228
+0.667,0.3,0.3,0,0,0,0.967,0.27,0.59,0.59,0,0.368,0
+0.667,0.292,0.292,0,0,0,0.317,0.263,0.6,0.6,0,0.53,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.57,0.278
+0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.539,0.0463
+1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0.479,0.0463
+1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.488,0.139
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.636,0.387
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.696,0.421
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.76,0
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.504,0.0926
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0.748,0.0926
+0.333,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.573,0.139
+0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.504,0.0463
+0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.27,0.391
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.693
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0.167
+1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.172
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.395
+1,0.245,0.245,0.817,0,0,0,0.403,0.521,0.521,0,0,0.423
+0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.493
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.378
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.112
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0.353,0,0.324
+0.333,0.175,0.175,0,0.312,0,0,0.264,0.528,0.528,0.724,0,0.324
+0.333,0.171,0.171,0.233,0,0,0,0.26,0.532,0.532,0.37,0,0.0463
+0.333,0.169,0.169,0.0333,0,0,0,0.275,0.532,0.532,0,0,0.0926
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.185
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0463
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0
+1,0.804,0.804,0,0,0.894,0,0.586,0.77,0.77,0,0.102,0.21
+0.667,0.647,0.647,0,0,0,0.517,0.55,0.679,0.679,0,0.366,0.237
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.847,0.607
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.509,0.325
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0.675,0.203
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.277,0
+1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.877,0.185
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.577,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0183
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.169
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.108
+0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.382
+0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0926
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.139
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.185
+0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.0926
+0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.185
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.185
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.422,0,0.324
+0.667,0.515,0.515,0,0.646,0,0,0.609,0.619,0.619,0.86,0,0.0943
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.646,0,0.118
+1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0.553,0,0
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0.321,0.171,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0.679,0,0.185
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0.521,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0.366,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.185
+1,0.147,0.147,0,0,0.532,0.0833,0.33,0.493,0.493,0,0.402,0
+1,0.177,0.177,0,0,0,0.95,0.345,0.518,0.518,0,0.184,0
+1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.377,0
+1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.3
+1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.273
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.225
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0.442,0,0.768
+0.333,0.169,0.169,0,0.979,0,0,0.275,0.532,0.532,0.305,0,0.0751
+1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.188
+1,0.482,0.482,0.267,0,0,0,0.354,0.681,0.681,0,0,0.186
+0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.251
+1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.0463
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.582
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.521
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.139
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.231
+1,0.493,0.493,0,0.0833,0,0,0.652,0.593,0.593,0.546,0,0
+1,0.183,0.183,0,0.229,0,0,0.455,0.511,0.511,0.582,0,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0974
+1,0.0525,0.0525,0,0,0,0,0.329,0.471,0.471,0,0,0.332
+0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.113
+0.667,0.245,0.245,0,0,0.532,0,0.403,0.521,0.521,0,0,0.207
+0.667,0.305,0.305,0,0,0.0638,0.45,0.432,0.57,0.57,0,0.0979,0
+0.333,0.184,0.184,0,0,0,0.317,0.297,0.523,0.523,0,0,0.0463
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.169,0.169,0,0,0.596,0,0.275,0.532,0.532,0,0.0979,0
+0.333,0.173,0.173,0,0,0,0.95,0.286,0.528,0.528,0,0.476,0
+0.333,0.194,0.194,0,0,0.213,0.0833,0.29,0.537,0.537,0,0.5,0
+0.333,0.237,0.237,0,0,0.681,0,0.316,0.547,0.547,0,0.0861,0.0463
+1,0.804,0.804,0,0,0,0.767,0.586,0.77,0.77,0,0.227,0.315
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.324
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.139
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.159
+1,0.566,0.566,0.267,0,0,0,0.763,0.667,0.667,0,0,0.414
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.102
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.103
+1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0.311,0,0.63
+0.667,0.305,0.305,0.983,0.312,0,0,0.432,0.57,0.57,0.795,0,0
+0.667,0.318,0.318,0.1,0,0,0,0.337,0.58,0.58,0.682,0,0.0926
+0.333,0.185,0.185,0.733,0,0,0,0.257,0.523,0.523,0.197,0,0.139
+0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.0926
+0.333,0.175,0.175,0.183,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0.483,0,0,0,0.29,0.537,0.537,0,0,0.0463
+0.667,0.425,0.425,0.333,0,0,0,0.373,0.629,0.629,0,0,0
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.183,0,0
+1,0.946,0.946,0,0.312,0,0,0.697,0.785,0.785,0.727,0,0.324
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0926
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.189,0,0.432
+1,0.345,0.345,0,0.312,0,0,0.521,0.55,0.55,0.68,0,0.357
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.106
+1,0.051,0.051,0.3,0,0,0,0.293,0.468,0.468,0,0,0.0354
+1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.181
+0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.175
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.341
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.504
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.312
+0.333,0.181,0.181,0.267,0,0,0,0.26,0.523,0.523,0,0,0.0809
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0926
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.139
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.139
+0.667,0.425,0.425,0.483,0,0,0,0.373,0.629,0.629,0,0,0.139
+0.667,0.553,0.553,0.333,0,0,0,0.477,0.669,0.669,0,0,0.0926
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.185
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.387
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.157
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.261
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.19
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.366
+1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0.346,0,0.385
+0.667,0.177,0.177,0,0.312,0,0,0.345,0.518,0.518,0.359,0,0.159
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.401
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.187
+0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.387
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.418
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.172
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.194,0.194,0.483,0,0,0,0.29,0.537,0.537,0,0,0.139
+0.667,0.425,0.425,0.05,0,0,0,0.373,0.629,0.629,0,0,0
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.278
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.147,0,0.147
+1,0.919,0.919,0,0.312,0,0,0.741,0.741,0.741,0.443,0,0.339
+1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0463
+1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0817
+1,0.0495,0.0495,0.267,0,0,0,0.305,0.463,0.463,0,0,0.0926
+1,0.0525,0.0525,0,0,0,0,0.329,0.471,0.471,0,0,0
+1,0.146,0.146,0,0,0,0,0.398,0.489,0.489,0.366,0,0
+0.667,0.245,0.245,0,0.646,0,0,0.403,0.521,0.521,0.18,0,0
+0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.426
+0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0463
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.231
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.23
+0.667,0.425,0.425,0.483,0,0,0,0.373,0.629,0.629,0,0,0.426
+0.667,0.553,0.553,0.05,0,0,0,0.477,0.669,0.669,0,0,0.553
+0.667,0.647,0.647,0.233,0,0,0,0.55,0.679,0.679,0,0,0.0463
+0.333,0.339,0.339,0.3,0,0,0,0.419,0.557,0.557,0,0,0.0463
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.154
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.143
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.176
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0
+0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0463
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+0.667,0.425,0.425,0.267,0,0,0,0.373,0.629,0.629,0,0,0.346
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.0978
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.139
+0.667,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.278
+0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.278
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0463
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.231
+0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0926
+0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0874
+1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.409,0,0.518
+0.667,0.3,0.3,0,0.646,0,0,0.27,0.59,0.59,0.522,0,0.0808
+0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.526,0,0.338
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.197
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.135
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463
+0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.278
+0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.417
+1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.139
+1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.147,0,0.0463
+1,0.747,0.747,0,0.312,0,0,0.785,0.696,0.696,0.553,0,0.139
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.583,0,0
+1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0.598,0,0
+1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0.303,0,0
+1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0.585,0,0.0463
+1,0.066,0.066,0,0,0,0,0.359,0.481,0.481,0.637,0,0
+1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0.704,0,0
+1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.108
+1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.164
+0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0.619,0,0
+0.667,0.318,0.318,0,0.312,0,0,0.337,0.58,0.58,0.381,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.185
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.139
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.185
+0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0463
+0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0.185
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0926
+0.333,0.301,0.301,0.533,0,0,0,0.367,0.567,0.567,0,0,0.141
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0463
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0463
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0926
+1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.324
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.117,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.222
+1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0406
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463
+0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.37
+0.333,0.173,0.173,0,0,0.532,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0.362,0.217,0.29,0.537,0.537,0,0.393,0.324
+0.667,0.425,0.425,0,0,0,0.817,0.373,0.629,0.629,0,0.577,0.139
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.844,0.0463
+1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.668,0.231
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.368,0.0463
+1,0.747,0.747,0,0,0.596,0,0.785,0.696,0.696,0,0,0.401
+1,0.566,0.566,0,0,0,0.517,0.763,0.667,0.667,0,0.522,0.338
+1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.708,0.194
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0751
+1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.118
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196
+1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.477
+1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.127
+1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.494
+0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0
+0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.185
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178
+0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.374
+0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463
+0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0
+0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463
+0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.278
+0.667,0.553,0.553,0.267,0,0,0,0.477,0.669,0.669,0,0,0
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.185
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0926
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0.404,0,0.139
+1,0.197,0.197,0,0.646,0,0,0.389,0.508,0.508,0.332,0,0.108
+1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0
+1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.0714
+0.667,0.147,0.147,0.533,0,0,0,0.33,0.493,0.493,0,0,0.0987
+0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.129
+0.667,0.318,0.318,0,0,0.532,0,0.337,0.58,0.58,0,0,0.545
+0.667,0.321,0.321,0,0,0.362,0.217,0.255,0.58,0.58,0,0.561,0.254
+0.667,0.312,0.312,0,0,0,0.55,0.263,0.58,0.58,0,0.364,0
+0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.466,0.0463
+0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.289,0.0463
+0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.185
+0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0
+0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.185
+0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0.391,0,0.0463
+0.667,0.553,0.553,0,0.312,0,0,0.477,0.669,0.669,0.273,0,0.231
+0.333,0.348,0.348,0.267,0,0,0,0.404,0.572,0.572,0,0,0.405
+1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.465
+1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.242
+1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.227
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0
+1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.083
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.184,0.184,0.267,0,0,0,0.297,0.523,0.523,0,0,0.0463
+0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0926
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0.251,0,0
+0.667,0.425,0.425,0,0.312,0,0,0.373,0.629,0.629,0.596,0,0
+0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0
+0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0
+0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.185
+1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.231
+1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.332
+1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.201
+1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.204
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.185
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926
+0.667,0.314,0.314,0.367,0,0,0,0.375,0.705,0.705,0,0,0.0463
+1,0.513,0.513,0.183,0,0,0,0.447,0.862,0.862,0,0,0.139
+1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.128
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.662
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.444
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.417
+1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.185
+1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0926
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.203
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.105
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0.55,0,0,0,0.372,0.541,0.541,0,0,0.115
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0.154,0,0
+1,0.337,0.337,0,0.333,0,0,0.3,0.692,0.692,0.557,0,0.106
+1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0.619,0,0.278
+1,0.316,0.316,0,0,0.383,0,0.319,0.705,0.705,0.425,0,0.516
+1,0.307,0.307,0,0,0.234,0.317,0.31,0.717,0.717,0,0.312,0.202
+0.667,0.305,0.305,0,0,0,0.5,0.347,0.717,0.717,0,0.613,0.139
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.703,0.139
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.124,0.693,0
+0.667,0.457,0.457,0,0.333,0,0,0.449,0.755,0.755,0.402,0.402,0.324
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.408,0.231
+0.333,0.366,0.366,0.117,0,0,0,0.465,0.641,0.641,0,0.457,0.37
+0.333,0.344,0.344,0.433,0,0,0,0.484,0.622,0.622,0,0,0.0926
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0926
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0926
+1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0.404,0,0.174
+1,0.183,0.183,0,0.667,0,0,0.552,0.605,0.605,0.706,0,0.112
+1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0.522,0,0.185
+1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0.142
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.089
+0.667,0.251,0.251,0.467,0,0,0,0.487,0.617,0.617,0,0,0.381
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.23
+0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0927
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0849
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.128
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.146
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0
+0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.0926
+0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.247
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.509
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.226
+1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.143
+1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.323
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.186
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.608
+0.333,0.178,0.178,0.55,0,0,0,0.284,0.591,0.591,0,0,0.0926
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.255
+1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0.25,0,0.269
+1,0.869,0.869,0.117,0.667,0,0,0.741,0.974,0.974,0.619,0,0.342
+1,1,1,0.717,0.667,0,0,0.881,0.993,0.993,0.492,0,0.503
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.205,0,0.228
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0679
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0926
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.181,0.181,0.267,0,0,0,0.391,0.572,0.572,0,0,0.243
+0.667,0.33,0.33,0,0.0833,0,0,0.403,0.692,0.692,0.6,0,0.214
+0.667,0.337,0.337,0,0.25,0,0,0.3,0.692,0.692,0.56,0,0
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0.779,0,0
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0.269,0,0.231
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.185
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0463
+0.667,0.596,0.596,0.267,0,0,0,0.58,0.805,0.805,0,0,0.116
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0463
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.102,0,0.417
+1,0.554,0.554,0.117,0.333,0.617,0,0.965,0.843,0.843,0.294,0.196,0.3
+1,0.488,0.488,0.433,0,0,0.817,0.825,0.749,0.749,0,0,0.0463
+1,0.183,0.183,0,0,0,0.283,0.552,0.605,0.605,0,0,0.0463
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256
+1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.181
+1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.497
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.139
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.403
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0993
+1,1,1,0.55,0,0,0,0.881,0.993,0.993,0,0,0.258
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.307
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0926
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0463
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.24
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0846
+1,0.251,0.251,0.467,0,0,0,0.487,0.617,0.617,0,0,0.128
+1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.284
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.196
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.394
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.33
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.201
+0.333,0.177,0.177,0.267,0,0,0,0.302,0.591,0.591,0,0,0.1
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.387
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.287
+0.667,0.253,0.253,0.117,0.0833,0,0,0.354,0.61,0.61,0.618,0,0.144
+1,0.596,0.596,0.15,0.583,0,0,0.58,0.805,0.805,0.767,0,0.253
+1,1,1,0,0,0,0,0.881,0.993,0.993,0.732,0,0.463
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.185,0,0.277
+1,0.732,0.732,0,0,0.383,0,0.993,0.88,0.88,0,0,0.0463
+1,0.554,0.554,0,0,0.234,0.317,0.965,0.843,0.843,0,0.0475,0
+1,0.342,0.342,0,0,0,0.5,0.636,0.655,0.655,0,0,0
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.115
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.139
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.356
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.375
+1,0.661,0.661,0.117,0.0833,0,0,0.545,0.899,0.899,0.6,0,0.0926
+1,0.596,0.596,0.15,0.25,0,0,0.58,0.805,0.805,0.47,0,0.0463
+1,1,1,0,0.333,0,0,0.881,0.993,0.993,0.655,0,0.231
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.185
+1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0926
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.501
+1,0.342,0.342,0.267,0,0,0,0.636,0.655,0.655,0,0,0.139
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.33,0.33,0.467,0,0,0,0.403,0.692,0.692,0,0,0.104
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0
+0.667,0.307,0.307,0,0,0.617,0,0.31,0.717,0.717,0,0.184,0
+0.667,0.305,0.305,0,0,0,0.817,0.347,0.717,0.717,0,0.76,0.324
+0.667,0.314,0.314,0.55,0,0,0,0.375,0.705,0.705,0,0.415,0.0463
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.2,0.139
+0.333,0.253,0.253,0.117,0,0,0,0.354,0.61,0.61,0,0,0.185
+0.667,0.596,0.596,0.417,0,0,0,0.58,0.805,0.805,0,0,0.278
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.185
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0926
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.501
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.151
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.169
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.634
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.345
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0.267,0,0,0,0.372,0.541,0.541,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.258
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0926
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.185
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.278
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.185
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.139
+0.667,0.457,0.457,0.55,0,0,0,0.449,0.755,0.755,0,0,0
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0.285,0,0.0926
+0.667,0.683,0.683,0,0.333,0,0,0.673,0.817,0.817,0.546,0,0
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.777,0,0.278
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0926
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.231
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.476
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.147,0,0.104
+1,0.251,0.251,0,0.396,0,0,0.487,0.617,0.617,0.765,0,0.505
+0.667,0.181,0.181,0,0.271,0,0,0.391,0.572,0.572,0.637,0,0
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0.275,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0926
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.231
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.139
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.231
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0926
+0.333,0.323,0.323,0,0.0833,0,0,0.419,0.635,0.635,0.689,0,0.324
+1,1,1,0,0.583,0,0,0.881,0.993,0.993,0.698,0,0.139
+1,0.933,0.933,0.117,0,0,0,0.937,0.937,0.937,0.472,0,0.324
+1,0.732,0.732,0.15,0,0,0,0.993,0.88,0.88,0,0,0
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.196
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0
+1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.32
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.514
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.457
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.193
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.87
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.518
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.374
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0
+0.667,0.457,0.457,0.117,0,0,0,0.449,0.755,0.755,0,0,0.231
+0.667,0.596,0.596,0.15,0,0,0,0.58,0.805,0.805,0,0,0.207
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0463
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.231
+1,0.732,0.732,0,0,0.936,0,0.993,0.88,0.88,0,0.107,0
+1,0.554,0.554,0,0,0,0.567,0.965,0.843,0.843,0,0.318,0.0926
+1,0.196,0.196,0,0,0,0.25,0.447,0.56,0.56,0,0,0.0926
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.506
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156
+1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.141
+1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.538
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.196
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0852
+0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.187
+0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278
+0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.324
+0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0926
+0.667,0.638,0.638,0.267,0,0,0,0.711,0.78,0.78,0.397,0,0.231
+1,0.732,0.732,0,0.333,0,0,0.993,0.88,0.88,0.718,0,0.398
+1,0.554,0.554,0,0.708,0,0,0.965,0.843,0.843,0.343,0,0.53
+1,0.0495,0.0495,0,0.312,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.494
+0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.401
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0805
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.139
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0926
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463
+0.333,0.178,0.178,0.367,0,0,0,0.284,0.591,0.591,0,0,0.0463
+0.333,0.177,0.177,1,0,0,0,0.302,0.591,0.591,0,0,0
+0.333,0.182,0.182,0.0333,0,0,0,0.316,0.585,0.585,0,0,0.0463
+0.667,0.359,0.359,0.867,0,0,0,0.384,0.73,0.73,0.433,0,0.0463
+0.667,0.457,0.457,0.25,0.667,0,0,0.449,0.755,0.755,0.639,0,0.231
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0.682,0,0.417
+1,1,1,0,0,0,0,0.881,0.993,0.993,0.492,0,0.509
+1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.779,0,0.494
+1,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.207
+0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.185
+0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.129
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.345
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.2
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0463
+0.667,0.314,0.314,0,0.0833,0,0,0.375,0.705,0.705,0.417,0,0.185
+0.667,0.359,0.359,0,0.25,0,0,0.384,0.73,0.73,0,0,0
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.185
+1,1,1,0,0,0,0,0.881,0.993,0.993,0.316,0,0.231
+1,0.933,0.933,0,0.333,0,0,0.937,0.937,0.937,0.0898,0,0.185
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0
+1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.324
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.185
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0463
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.278
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0984
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.278
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0463
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.494
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.116
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0
+1,0.869,0.869,0.867,0,0,0,0.741,0.974,0.974,0,0,0
+1,1,1,0.533,0,0,0,0.881,0.993,0.993,0,0,0.0926
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.479
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.296
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.337
+1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0829,0.0829,0.267,0,0,0,0.34,0.516,0.516,0,0,0.546
+0.667,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.187
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.321
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.272
+0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.336
+0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926
+0.667,0.183,0.183,0.467,0,0,0,0.288,0.585,0.585,0,0,0
+1,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.278
+0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0
+0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.139
+0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0.418,0,0.231
+1,1,1,0,0.667,0,0,0.881,0.993,0.993,0.575,0,0
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.643,0,0.324
+1,0.732,0.732,0.367,0,0,0,0.993,0.88,0.88,0.809,0,0.185
+1,0.386,0.386,0.183,0,0,0,0.729,0.717,0.717,0,0,0.227
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.111
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.421
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.128
+0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.19,0.19,0,0,0.702,0,0.33,0.579,0.579,0,0,0
+0.667,0.193,0.193,0,0,0.234,0.317,0.279,0.579,0.579,0,0.522,0.278
+0.667,0.189,0.189,0,0,0,0.5,0.284,0.579,0.579,0,0.62,0.185
+0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0.444,0
+0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0.656,0
+0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.552,0.139
+0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.282,0.194
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.218,0.232
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.381,0.463
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.595,0.0926
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.448,0
+0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0.647,0.417
+0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0.473,0
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.264,0
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.143
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.147
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.116
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0.183,0,0,0,0.326,0.51,0.51,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.237
+1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.247
+1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.0938
+1,0.47,0.47,0,0,0.702,0,0.475,0.806,0.806,0,0,0.484
+0.667,0.337,0.337,0,0,0.234,0.317,0.3,0.692,0.692,0,0.681,0.385
+0.667,0.328,0.328,0,0,0,0.5,0.31,0.692,0.692,0,0.496,0.0648
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.398,0.0463
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0926
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0
+0.667,0.314,0.314,0,0.0833,0,0,0.375,0.705,0.705,0.636,0,0.0463
+0.667,0.359,0.359,0,0.25,0,0,0.384,0.73,0.73,0.244,0,0
+1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.544
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.139
+1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.4
+0.667,0.344,0.344,0.867,0,0,0,0.484,0.622,0.622,0,0,0.139
+1,0.277,0.277,0.25,0,0,0,0.503,0.604,0.604,0,0,0.0926
+1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.251,0.251,0,0.0833,0,0,0.487,0.617,0.617,0.496,0,0.306
+0.667,0.181,0.181,0,0.938,0,0,0.391,0.572,0.572,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0463
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0.366,0,0.139
+0.667,0.457,0.457,0,0.667,0,0,0.449,0.755,0.755,0.576,0,0.278
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0.239,0,0.0463
+0.667,0.683,0.683,0,0.667,0,0,0.673,0.817,0.817,0.329,0,0.0463
+0.667,0.638,0.638,0,0,0.298,0.0667,0.711,0.78,0.78,0,0.089,0.0463
+1,0.732,0.732,0,0,0,0.75,0.993,0.88,0.88,0,0.561,0.0463
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0.479,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.172
+1,0.251,0.251,0.367,0,0,0,0.487,0.617,0.617,0,0,0.27
+0.667,0.181,0.181,0.183,0,0,0,0.391,0.572,0.572,0,0,0.169
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0
+0.333,0.193,0.193,0,0,0.298,0,0.279,0.579,0.579,0,0,0
+0.333,0.189,0.189,0,0,0,0.567,0.284,0.579,0.579,0,0.488,0.0463
+0.333,0.183,0.183,0,0,0,0.533,0.288,0.585,0.585,0,0.145,0.324
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.185
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926
+0.667,0.314,0.314,0,0,0.617,0,0.375,0.705,0.705,0,0,0.0926
+0.667,0.359,0.359,0,0,0,0.567,0.384,0.73,0.73,0,0.659,0
+0.667,0.457,0.457,0.267,0,0,0.817,0.449,0.755,0.755,0,0.329,0.139
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.642,0.0463
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0.0861,0.763
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0751
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.488
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.442,0,0.541
+1,0.342,0.342,0,0.333,0,0,0.636,0.655,0.655,0.144,0,0.278
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.139
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0926
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.185
+0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.231
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0926
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.413
+0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.111,0,0.185
+0.667,0.504,0.504,0,0.396,0,0,0.748,0.742,0.742,0.451,0,0.231
+0.667,0.386,0.386,0,0.271,0,0,0.729,0.717,0.717,0,0,0.449
+1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.219
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.137
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0
+1,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.332
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.584
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0463
+0.667,0.457,0.457,0.867,0,0,0,0.449,0.755,0.755,0,0,0.0926
+1,0.869,0.869,0.25,0,0,0,0.741,0.974,0.974,0,0,0.231
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.231
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0463
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0
+1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.378
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.138
+1,0.351,0.351,0.267,0,0,0,0.601,0.693,0.693,0,0,0.956
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.338
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.393
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.153
+0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.395
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136
+0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.169
+0.667,0.366,0.366,0.367,0,0,0,0.465,0.641,0.641,0,0,0.0748
+1,0.638,0.638,0.467,0,0,0,0.711,0.78,0.78,0,0,0.402
+1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0463
+1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.37
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.278
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0.267,0,0,0,0.326,0.51,0.51,0,0,0.322
+1,0.15,0.15,0,0,0,0,0.503,0.618,0.618,0.133,0,0
+1,0.351,0.351,0,0.333,0,0,0.601,0.693,0.693,0.494,0,0.129
+0.667,0.313,0.313,0,0,0.298,0.0667,0.524,0.68,0.68,0.402,0.107,0
+0.333,0.19,0.19,0,0,0,0.75,0.33,0.579,0.579,0,0.559,0.0926
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0463
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0463
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.278
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0.255,0,0.0463
+1,0.661,0.661,0,0.333,0,0,0.545,0.899,0.899,0.167,0,0
+1,0.869,0.869,0.267,0,0,0,0.741,0.974,0.974,0,0,0.0926
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.139
+1,0.933,0.933,0.55,0,0,0,0.937,0.937,0.937,0,0,0.185
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.128
+1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.139
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0463
+1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0824
+0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.361
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0463
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.139
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.139
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.0926
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.157
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0
+0.667,0.366,0.366,0.867,0,0,0,0.465,0.641,0.641,0,0,0
+0.667,0.638,0.638,0.25,0,0,0,0.711,0.78,0.78,0,0,0.37
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.139
+0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.288
+0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.25
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.34
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231
+1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.351,0.351,0.433,0,0,0,0.601,0.693,0.693,0,0,0.317
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.109
+0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.134
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.324
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.324
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.0463
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.341
+0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.463
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.173
+0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0
+1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.18
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.103
+0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.345
+0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0
+0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0
+0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.602
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0.185,0,0.0926
+0.333,0.182,0.182,0,0.396,0,0,0.316,0.585,0.585,0.408,0,0.0463
+0.333,0.204,0.204,0,0.271,0,0,0.321,0.597,0.597,0,0,0
+0.333,0.253,0.253,0.367,0,0,0,0.354,0.61,0.61,0,0,0.0463
+0.333,0.323,0.323,0.183,0,0,0,0.419,0.635,0.635,0,0,0.0463
+0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.231
+0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0926
+0.667,0.504,0.504,0,0.0833,0,0,0.748,0.742,0.742,0.601,0,0.185
+1,0.218,0.218,0,0.583,0,0,0.493,0.591,0.591,0,0,0.18
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.808
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.179
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.108
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+0.667,0.0495,0.0495,0.867,0,0,0,0.258,0.465,0.465,0,0,0.0463
+1,0.307,0.307,0.533,0,0,0,0.31,0.717,0.717,0,0,0
+1,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0924
+1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0
+0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.312,0,0.231
+0.667,0.457,0.457,0,0.667,0,0,0.449,0.755,0.755,0.7,0,0.231
+1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0
+1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.278
+1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0926
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0463
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.463
+1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.231
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0
+1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.157
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0.454,0,0.0802
+0.667,0.19,0.19,0.267,0.667,0,0,0.33,0.579,0.579,0.212,0,0
+0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0
+0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.417
+1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0
+1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.159
+0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0463
+0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0926
+1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0
+1,0.457,0.457,0.367,0,0,0,0.449,0.755,0.755,0,0,0.0926
+1,0.869,0.869,0.467,0,0.936,0,0.741,0.974,0.974,0,0.142,0.324
+1,1,1,0,0,0,0.567,0.881,0.993,0.993,0,0.663,0.0926
+0.667,0.638,0.638,0,0,0,0.533,0.711,0.78,0.78,0,0.43,0.139
+0.667,0.504,0.504,0,0.0833,0,0,0.748,0.742,0.742,0.363,0.433,0
+0.667,0.386,0.386,0,0.583,0,0,0.729,0.717,0.717,0,0.0608,0.37
+0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0926
+1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0
+1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0
+1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0926
+1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0949
+1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.253
+1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0
+0.667,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0
+0.333,0.193,0.193,0.75,0,0,0,0.279,0.579,0.579,0,0,0.0463
+0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185
+0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.139
+0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0
+0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926
+0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.139
+0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.139
+0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0926
+0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.278
+1,1,1,0,0,0,0,0.881,0.993,0.993,0.28,0,0.231
+1,0.933,0.933,0,0.667,0,0,0.937,0.937,0.937,0.415,0,0.251
+1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.375
+1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.439
+1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.142
+1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926
diff --git a/ReportSimulationOutput/measure.xml b/ReportSimulationOutput/measure.xml
index 6cc9f3f885..10834c39b6 100644
--- a/ReportSimulationOutput/measure.xml
+++ b/ReportSimulationOutput/measure.xml
@@ -3,8 +3,8 @@
3.1
report_simulation_output
df9d170c-c21a-4130-866d-0d46b06073fd
- 175080bf-8a85-4b4b-b7f6-21b1883c8a25
- 2023-09-30T00:09:24Z
+ 0b85a7d5-ef92-4f90-aaf5-40ae69f145e7
+ 2023-10-03T14:41:36Z
9BF1E6AC
ReportSimulationOutput
HPXML Simulation Output Report
@@ -1917,7 +1917,7 @@
measure.rb
rb
script
- 0E287CEE
+ F4DCBAFD
output_report_test.rb
diff --git a/tasks.rb b/tasks.rb
index 1aac7d5da5..4b91ce91d4 100644
--- a/tasks.rb
+++ b/tasks.rb
@@ -49,34 +49,45 @@ def create_hpxmls
measures = {}
measures['BuildResidentialHPXML'] = [json_input]
- # Re-generate stochastic schedule CSV?
- csv_path = json_input['schedules_filepaths'].to_s.split(',').map(&:strip).find { |fp| fp.include? 'occupancy-stochastic' }
- if (not csv_path.nil?) && (not schedules_regenerated.include? csv_path)
- sch_args = { 'hpxml_path' => hpxml_path,
- 'output_csv_path' => csv_path,
- 'hpxml_output_path' => hpxml_path }
- measures['BuildResidentialScheduleFile'] = [sch_args]
- schedules_regenerated << csv_path
- end
-
measures_dir = File.dirname(__FILE__)
model = OpenStudio::Model::Model.new
runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new)
- # Apply measure
- success = apply_measures(measures_dir, measures, runner, model)
+ num_apply_measures = hpxml_path.include?('base-multiple-buildings') ? 3 : 1
- # Report errors
- runner.result.stepErrors.each do |s|
- puts "Error: #{s}"
- end
+ for i in 1..num_apply_measures
+ measures['BuildResidentialHPXML'][0]['existing_hpxml_path'] = hpxml_path if i > 1
+ if hpxml_path.include? 'base-multiple-buildings-varied-occupancy'
+ suffix = "_#{i}" if i > 1
+ measures['BuildResidentialHPXML'][0]['schedules_filepaths'] = "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic#{suffix}.csv"
+ end
- if not success
- puts "\nError: Did not successfully generate #{hpxml_filename}."
- exit!
+ # Re-generate stochastic schedule CSV?
+ csv_path = json_input['schedules_filepaths'].to_s.split(',').map(&:strip).find { |fp| fp.include? 'occupancy-stochastic' }
+ if (not csv_path.nil?) && (not schedules_regenerated.include? csv_path)
+ sch_args = { 'hpxml_path' => hpxml_path,
+ 'output_csv_path' => csv_path,
+ 'hpxml_output_path' => hpxml_path,
+ 'building_id' => "MyBuilding#{suffix}" }
+ measures['BuildResidentialScheduleFile'] = [sch_args]
+ schedules_regenerated << csv_path
+ end
+
+ # Apply measure
+ success = apply_measures(measures_dir, measures, runner, model)
+
+ # Report errors
+ runner.result.stepErrors.each do |s|
+ puts "Error: #{s}"
+ end
+
+ if not success
+ puts "\nError: Did not successfully generate #{hpxml_filename}."
+ exit!
+ end
end
- hpxml = HPXML.new(hpxml_path: hpxml_path)
+ hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL')
if hpxml_path.include? 'ASHRAE_Standard_140'
apply_hpxml_modification_ashrae_140(hpxml)
else
@@ -84,19 +95,6 @@ def create_hpxmls
end
hpxml_doc = hpxml.to_doc()
- if hpxml_path.include? 'base-multiple-buildings.xml'
- # Create duplicates of the Building
- # FIXME: Instead of this, call the BuildResHPXML measure multiple times
- # using the new capability in https://github.com/NREL/OpenStudio-HPXML/pull/1452
- hpxml_element = XMLHelper.get_element(hpxml_doc, '/HPXML')
- building_element = XMLHelper.get_element(hpxml_element, 'Building')
- for _i in 2..3
- new_building_element = Marshal.load(Marshal.dump(building_element)) # Deep copy
- hpxml_element.children << new_building_element
- hpxml.set_unique_hpxml_ids(hpxml_doc, true)
- end
- end
-
XMLHelper.write_file(hpxml_doc, hpxml_path)
errors, _warnings = XMLValidator.validate_against_schema(hpxml_path, schema_validator)
@@ -110,20 +108,17 @@ def create_hpxmls
puts "\n"
# Print warnings about extra files
- if abs_hpxml_files.size == json_inputs.size
- dirs.each do |dir|
- Dir["#{workflow_dir}/#{dir}/*.xml"].each do |hpxml|
- next if abs_hpxml_files.include? File.absolute_path(hpxml)
+ dirs.each do |dir|
+ Dir["#{workflow_dir}/#{dir}/*.xml"].each do |hpxml|
+ next if abs_hpxml_files.include? File.absolute_path(hpxml)
- puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}"
- end
+ puts "Warning: Extra HPXML file found at #{File.absolute_path(hpxml)}"
end
end
end
def apply_hpxml_modification_ashrae_140(hpxml)
# Set detailed HPXML values for ASHRAE 140 test files
- hpxml_bldg = hpxml.buildings[0]
# ------------ #
# HPXML Header #
@@ -133,86 +128,88 @@ def apply_hpxml_modification_ashrae_140(hpxml)
hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs
hpxml.header.apply_ashrae140_assumptions = true
- # --------------------- #
- # HPXML BuildingSummary #
- # --------------------- #
+ hpxml.buildings.each do |hpxml_bldg|
+ # --------------------- #
+ # HPXML BuildingSummary #
+ # --------------------- #
- hpxml_bldg.site.azimuth_of_front_of_home = nil
- hpxml_bldg.building_construction.average_ceiling_height = nil
+ hpxml_bldg.site.azimuth_of_front_of_home = nil
+ hpxml_bldg.building_construction.average_ceiling_height = nil
- # --------------- #
- # HPXML Enclosure #
- # --------------- #
+ # --------------- #
+ # HPXML Enclosure #
+ # --------------- #
- hpxml_bldg.attics[0].vented_attic_ach = 2.4
- hpxml_bldg.foundations.reverse_each do |foundation|
- foundation.delete
- end
- hpxml_bldg.roofs.each do |roof|
- if roof.roof_color == HPXML::ColorReflective
- roof.solar_absorptance = 0.2
- else
- roof.solar_absorptance = 0.6
+ hpxml_bldg.attics[0].vented_attic_ach = 2.4
+ hpxml_bldg.foundations.reverse_each do |foundation|
+ foundation.delete
end
- roof.emittance = 0.9
- roof.roof_color = nil
- end
- (hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |wall|
- if wall.color == HPXML::ColorReflective
- wall.solar_absorptance = 0.2
- else
- wall.solar_absorptance = 0.6
+ hpxml_bldg.roofs.each do |roof|
+ if roof.roof_color == HPXML::ColorReflective
+ roof.solar_absorptance = 0.2
+ else
+ roof.solar_absorptance = 0.6
+ end
+ roof.emittance = 0.9
+ roof.roof_color = nil
end
- wall.emittance = 0.9
- wall.color = nil
- if wall.is_a?(HPXML::Wall)
- if wall.attic_wall_type == HPXML::AtticWallTypeGable
- wall.insulation_assembly_r_value = 2.15
+ (hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |wall|
+ if wall.color == HPXML::ColorReflective
+ wall.solar_absorptance = 0.2
else
- wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard
- wall.interior_finish_thickness = 0.5
+ wall.solar_absorptance = 0.6
+ end
+ wall.emittance = 0.9
+ wall.color = nil
+ if wall.is_a?(HPXML::Wall)
+ if wall.attic_wall_type == HPXML::AtticWallTypeGable
+ wall.insulation_assembly_r_value = 2.15
+ else
+ wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard
+ wall.interior_finish_thickness = 0.5
+ end
end
end
- end
- hpxml_bldg.floors.each do |floor|
- next unless floor.is_ceiling
+ hpxml_bldg.floors.each do |floor|
+ next unless floor.is_ceiling
- floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard
- floor.interior_finish_thickness = 0.5
- end
- hpxml_bldg.foundation_walls.each do |fwall|
- if fwall.insulation_interior_r_value == 0
- fwall.interior_finish_type = HPXML::InteriorFinishNone
- else
- fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard
- fwall.interior_finish_thickness = 0.5
+ floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard
+ floor.interior_finish_thickness = 0.5
end
- end
- if hpxml_bldg.doors.size == 1
- hpxml_bldg.doors[0].area /= 2.0
- hpxml_bldg.doors << hpxml_bldg.doors[0].dup
- hpxml_bldg.doors[1].azimuth = 0
- hpxml_bldg.doors[1].id = 'Door2'
- end
- hpxml_bldg.windows.each do |window|
- next if window.overhangs_depth.nil?
+ hpxml_bldg.foundation_walls.each do |fwall|
+ if fwall.insulation_interior_r_value == 0
+ fwall.interior_finish_type = HPXML::InteriorFinishNone
+ else
+ fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard
+ fwall.interior_finish_thickness = 0.5
+ end
+ end
+ if hpxml_bldg.doors.size == 1
+ hpxml_bldg.doors[0].area /= 2.0
+ hpxml_bldg.doors << hpxml_bldg.doors[0].dup
+ hpxml_bldg.doors[1].azimuth = 0
+ hpxml_bldg.doors[1].id = 'Door2'
+ end
+ hpxml_bldg.windows.each do |window|
+ next if window.overhangs_depth.nil?
- window.overhangs_distance_to_bottom_of_window = 6.0
- end
+ window.overhangs_distance_to_bottom_of_window = 6.0
+ end
- # ---------- #
- # HPXML HVAC #
- # ---------- #
+ # ---------- #
+ # HPXML HVAC #
+ # ---------- #
- hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}",
- heating_setpoint_temp: 68.0,
- cooling_setpoint_temp: 78.0)
+ hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}",
+ heating_setpoint_temp: 68.0,
+ cooling_setpoint_temp: 78.0)
- # --------------- #
- # HPXML MiscLoads #
- # --------------- #
+ # --------------- #
+ # HPXML MiscLoads #
+ # --------------- #
+
+ next unless hpxml_bldg.plug_loads[0].kwh_per_year > 0
- if hpxml_bldg.plug_loads[0].kwh_per_year > 0
hpxml_bldg.plug_loads[0].weekday_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660'
hpxml_bldg.plug_loads[0].weekend_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660'
hpxml_bldg.plug_loads[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0'
@@ -240,1918 +237,1940 @@ def apply_hpxml_modification(hpxml_file, hpxml)
hpxml_bldg.cambium_region_gea = 'RMPAc'
end
- # --------------------- #
- # HPXML BuildingSummary #
- # --------------------- #
-
- # General logic for all files
- hpxml_bldg.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas]
-
- # Logic that can only be applied based on the file name
- if ['base-schedules-simple.xml',
- 'base-schedules-simple-vacancy.xml',
- 'base-schedules-simple-vacancy-year-round.xml',
- 'base-schedules-simple-power-outage.xml',
- 'base-misc-loads-large-uncommon.xml',
- 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
- hpxml_bldg.building_occupancy.weekday_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061'
- hpxml_bldg.building_occupancy.weekend_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061'
- hpxml_bldg.building_occupancy.monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0'
- elsif ['base-misc-defaults.xml'].include? hpxml_file
- hpxml_bldg.building_construction.average_ceiling_height = nil
- hpxml_bldg.building_construction.conditioned_building_volume = nil
- elsif ['base-atticroof-cathedral.xml'].include? hpxml_file
- hpxml_bldg.building_construction.number_of_conditioned_floors = 2
- hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1
- hpxml_bldg.building_construction.conditioned_floor_area = 2700
- hpxml_bldg.attics[0].attic_type = HPXML::AtticTypeCathedral
- elsif ['base-atticroof-conditioned.xml'].include? hpxml_file
- hpxml_bldg.building_construction.conditioned_building_volume = 23850
- hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume
- hpxml_bldg.air_infiltration_measurements[0].infiltration_height = 15.0
- elsif ['base-enclosure-split-level.xml'].include? hpxml_file
- hpxml_bldg.building_construction.number_of_conditioned_floors = 1.5
- hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1.5
- elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file
- hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 2
- elsif ['base-foundation-basement-garage.xml'].include? hpxml_file
- hpxml_bldg.building_construction.conditioned_floor_area -= 400 * 2
- hpxml_bldg.building_construction.conditioned_building_volume -= 400 * 2 * 8
- hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume
- elsif ['base-bldgtype-multifamily-infil-compartmentalization-test.xml'].include? hpxml_file
- hpxml_bldg.air_infiltration_measurements[0].a_ext = 0.2
- end
-
- # --------------- #
- # HPXML Enclosure #
- # --------------- #
-
- # General logic for all files
- (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface|
- surface.solar_absorptance = 0.7
- surface.emittance = 0.92
- if surface.is_a? HPXML::Roof
- surface.roof_color = nil
- else
- surface.color = nil
- end
- end
- hpxml_bldg.roofs.each do |roof|
- next unless roof.interior_adjacent_to == HPXML::LocationConditionedSpace
-
- roof.interior_finish_type = HPXML::InteriorFinishGypsumBoard
- end
- (hpxml_bldg.walls + hpxml_bldg.foundation_walls + hpxml_bldg.floors).each do |surface|
- if surface.is_a?(HPXML::FoundationWall) && surface.interior_adjacent_to != HPXML::LocationBasementConditioned
- surface.interior_finish_type = HPXML::InteriorFinishNone
- end
- next unless [HPXML::LocationConditionedSpace,
- HPXML::LocationBasementConditioned].include?(surface.interior_adjacent_to) &&
- [HPXML::LocationOutside,
- HPXML::LocationGround,
- HPXML::LocationGarage,
- HPXML::LocationAtticUnvented,
- HPXML::LocationAtticVented,
- HPXML::LocationOtherHousingUnit,
- HPXML::LocationBasementConditioned].include?(surface.exterior_adjacent_to)
- next if surface.is_a?(HPXML::Floor) && surface.is_floor
-
- surface.interior_finish_type = HPXML::InteriorFinishGypsumBoard
- end
- hpxml_bldg.attics.each do |attic|
- if attic.attic_type == HPXML::AtticTypeUnvented
- attic.within_infiltration_volume = false
- elsif attic.attic_type == HPXML::AtticTypeVented
- attic.vented_attic_sla = 0.003
- end
- end
- hpxml_bldg.foundations.each do |foundation|
- if foundation.foundation_type == HPXML::FoundationTypeCrawlspaceUnvented
- foundation.within_infiltration_volume = false
- elsif foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented
- foundation.vented_crawlspace_sla = 0.00667
- end
- end
- hpxml_bldg.skylights.each do |skylight|
- skylight.interior_shading_factor_summer = 1.0
- skylight.interior_shading_factor_winter = 1.0
+ if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file
+ hpxml_bldg.header.manualj_heating_design_temp = 0
+ hpxml_bldg.header.manualj_cooling_design_temp = 100
+ hpxml_bldg.header.manualj_heating_setpoint = 60
+ hpxml_bldg.header.manualj_cooling_setpoint = 80
+ hpxml_bldg.header.manualj_humidity_setpoint = 0.55
+ hpxml_bldg.header.manualj_internal_loads_sensible = 4000
+ hpxml_bldg.header.manualj_internal_loads_latent = 200
+ hpxml_bldg.header.manualj_num_occupants = 5
end
- # Logic that can only be applied based on the file name
- if ['base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml',
- 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml',
- 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml',
- 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'].include? hpxml_file
- if hpxml_file == 'base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml'
- adjacent_to = HPXML::LocationOtherMultifamilyBufferSpace
- elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml'
- adjacent_to = HPXML::LocationOtherNonFreezingSpace
- elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml'
- adjacent_to = HPXML::LocationOtherHeatedSpace
- elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'
- adjacent_to = HPXML::LocationOtherHousingUnit
- end
- wall = hpxml_bldg.walls.select { |w|
- w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
- w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit
- }[0]
- wall.exterior_adjacent_to = adjacent_to
- hpxml_bldg.floors[0].exterior_adjacent_to = adjacent_to
- hpxml_bldg.floors[1].exterior_adjacent_to = adjacent_to
- if hpxml_file != 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'
- wall.insulation_assembly_r_value = 23
- hpxml_bldg.floors[0].insulation_assembly_r_value = 18.7
- hpxml_bldg.floors[1].insulation_assembly_r_value = 18.7
- end
- hpxml_bldg.windows.each do |window|
- window.area = (window.area * 0.35).round(1)
- end
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: wall.id,
- area: 20,
- azimuth: 0,
- r_value: 4.4)
- hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = adjacent_to
- hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = adjacent_to
- hpxml_bldg.water_heating_systems[0].location = adjacent_to
- hpxml_bldg.clothes_washers[0].location = adjacent_to
- hpxml_bldg.clothes_dryers[0].location = adjacent_to
- hpxml_bldg.dishwashers[0].location = adjacent_to
- hpxml_bldg.refrigerators[0].location = adjacent_to
- hpxml_bldg.cooking_ranges[0].location = adjacent_to
- elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file
- wall = hpxml_bldg.walls.select { |w|
- w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
- w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit
- }[0]
- wall.delete
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationOtherHeatedSpace,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- wall_type: HPXML::WallTypeWoodStud,
- area: 100,
- solar_absorptance: 0.7,
- emittance: 0.92,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 23.0)
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- wall_type: HPXML::WallTypeWoodStud,
- area: 100,
- solar_absorptance: 0.7,
- emittance: 0.92,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 23.0)
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- wall_type: HPXML::WallTypeWoodStud,
- area: 100,
- solar_absorptance: 0.7,
- emittance: 0.92,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 23.0)
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationOtherHousingUnit,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- wall_type: HPXML::WallTypeWoodStud,
- area: 100,
- solar_absorptance: 0.7,
- emittance: 0.92,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 4.0)
- hpxml_bldg.floors[0].delete
- hpxml_bldg.floors[0].id = 'Floor1'
- hpxml_bldg.floors[0].insulation_id = 'Floor1Insulation'
- hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: HPXML::FloorTypeWoodFrame,
- area: 550,
- insulation_assembly_r_value: 18.7,
- floor_or_ceiling: HPXML::FloorOrCeilingFloor)
- hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: HPXML::FloorTypeWoodFrame,
- area: 200,
- insulation_assembly_r_value: 18.7,
- floor_or_ceiling: HPXML::FloorOrCeilingFloor)
- hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: HPXML::LocationOtherHeatedSpace,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: HPXML::FloorTypeWoodFrame,
- area: 150,
- insulation_assembly_r_value: 2.1,
- floor_or_ceiling: HPXML::FloorOrCeilingFloor)
- wall = hpxml_bldg.walls.select { |w|
- w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
- w.exterior_adjacent_to == HPXML::LocationOtherMultifamilyBufferSpace
- }[0]
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 50,
- azimuth: 270,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.67,
- wall_idref: wall.id)
- wall = hpxml_bldg.walls.select { |w|
- w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
- w.exterior_adjacent_to == HPXML::LocationOtherHeatedSpace
- }[0]
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: wall.id,
- area: 20,
- azimuth: 0,
- r_value: 4.4)
- wall = hpxml_bldg.walls.select { |w|
- w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
- w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit
- }[0]
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: wall.id,
- area: 20,
- azimuth: 0,
- r_value: 4.4)
- elsif ['base-enclosure-orientations.xml'].include? hpxml_file
- hpxml_bldg.windows.each do |window|
- window.orientation = { 0 => 'north', 90 => 'east', 180 => 'south', 270 => 'west' }[window.azimuth]
- window.azimuth = nil
- end
- hpxml_bldg.doors[0].delete
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: 'Wall1',
- area: 20,
- orientation: HPXML::OrientationNorth,
- r_value: 4.4)
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: 'Wall1',
- area: 20,
- orientation: HPXML::OrientationSouth,
- r_value: 4.4)
- elsif ['base-foundation-unconditioned-basement.xml'].include? hpxml_file
- hpxml_bldg.foundations[0].within_infiltration_volume = false
- elsif ['base-atticroof-conditioned.xml'].include? hpxml_file
- hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}",
- attic_type: HPXML::AtticTypeUnvented,
- within_infiltration_volume: false)
- hpxml_bldg.roofs.each do |roof|
- roof.area = 1006.0 / hpxml_bldg.roofs.size
- roof.insulation_assembly_r_value = 25.8
- end
- hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}",
- interior_adjacent_to: HPXML::LocationAtticUnvented,
- area: 504,
- roof_type: HPXML::RoofTypeAsphaltShingles,
- solar_absorptance: 0.7,
- emittance: 0.92,
- pitch: 6,
- radiant_barrier: false,
- insulation_assembly_r_value: 2.3)
- hpxml_bldg.rim_joists.each do |rim_joist|
- rim_joist.area = 116.0 / hpxml_bldg.rim_joists.size
- end
- hpxml_bldg.walls.each do |wall|
- wall.area = 1200.0 / hpxml_bldg.walls.size
- end
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationAtticUnvented,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- wall_type: HPXML::WallTypeWoodStud,
- area: 316,
- solar_absorptance: 0.7,
- emittance: 0.92,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 23.0)
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationOutside,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- wall_type: HPXML::WallTypeWoodStud,
- siding: HPXML::SidingTypeWood,
- area: 240,
- solar_absorptance: 0.7,
- emittance: 0.92,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 22.3)
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationOutside,
- interior_adjacent_to: HPXML::LocationAtticUnvented,
- attic_wall_type: HPXML::AtticWallTypeGable,
- wall_type: HPXML::WallTypeWoodStud,
- siding: HPXML::SidingTypeWood,
- area: 50,
- solar_absorptance: 0.7,
- emittance: 0.92,
- insulation_assembly_r_value: 4.0)
- hpxml_bldg.foundation_walls.each do |foundation_wall|
- foundation_wall.area = 1200.0 / hpxml_bldg.foundation_walls.size
- end
- hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: HPXML::LocationAtticUnvented,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: HPXML::FloorTypeWoodFrame,
- area: 450,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 39.3,
- floor_or_ceiling: HPXML::FloorOrCeilingCeiling)
- hpxml_bldg.slabs[0].area = 1350
- hpxml_bldg.slabs[0].exposed_perimeter = 150
- hpxml_bldg.windows[1].area = 108
- hpxml_bldg.windows[3].area = 108
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 12,
- azimuth: 90,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0,
- wall_idref: hpxml_bldg.walls[-2].id)
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 62,
- azimuth: 270,
- ufactor: 0.3,
- shgc: 0.45,
- fraction_operable: 0,
- wall_idref: hpxml_bldg.walls[-2].id)
- elsif ['base-foundation-unconditioned-basement-above-grade.xml'].include? hpxml_file
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 20,
- azimuth: 0,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.0,
- wall_idref: hpxml_bldg.foundation_walls[0].id)
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 10,
- azimuth: 90,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.0,
- wall_idref: hpxml_bldg.foundation_walls[0].id)
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 20,
- azimuth: 180,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.0,
- wall_idref: hpxml_bldg.foundation_walls[0].id)
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 10,
- azimuth: 270,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.0,
- wall_idref: hpxml_bldg.foundation_walls[0].id)
- elsif ['base-enclosure-skylights-physical-properties.xml'].include? hpxml_file
- hpxml_bldg.skylights[0].ufactor = nil
- hpxml_bldg.skylights[0].shgc = nil
- hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersSinglePane
- hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeWood
- hpxml_bldg.skylights[0].glass_type = HPXML::WindowGlassTypeTinted
- hpxml_bldg.skylights[1].ufactor = nil
- hpxml_bldg.skylights[1].shgc = nil
- hpxml_bldg.skylights[1].glass_layers = HPXML::WindowLayersDoublePane
- hpxml_bldg.skylights[1].frame_type = HPXML::WindowFrameTypeMetal
- hpxml_bldg.skylights[1].thermal_break = true
- hpxml_bldg.skylights[1].glass_type = HPXML::WindowGlassTypeLowE
- hpxml_bldg.skylights[1].gas_fill = HPXML::WindowGasKrypton
- elsif ['base-enclosure-skylights-shading.xml'].include? hpxml_file
- hpxml_bldg.skylights[0].exterior_shading_factor_summer = 0.1
- hpxml_bldg.skylights[0].exterior_shading_factor_winter = 0.9
- hpxml_bldg.skylights[0].interior_shading_factor_summer = 0.01
- hpxml_bldg.skylights[0].interior_shading_factor_winter = 0.99
- hpxml_bldg.skylights[1].exterior_shading_factor_summer = 0.5
- hpxml_bldg.skylights[1].exterior_shading_factor_winter = 0.0
- hpxml_bldg.skylights[1].interior_shading_factor_summer = 0.5
- hpxml_bldg.skylights[1].interior_shading_factor_winter = 1.0
- elsif ['base-enclosure-windows-physical-properties.xml'].include? hpxml_file
- hpxml_bldg.windows[0].ufactor = nil
- hpxml_bldg.windows[0].shgc = nil
- hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersSinglePane
- hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeWood
- hpxml_bldg.windows[0].glass_type = HPXML::WindowGlassTypeTinted
- hpxml_bldg.windows[1].ufactor = nil
- hpxml_bldg.windows[1].shgc = nil
- hpxml_bldg.windows[1].glass_layers = HPXML::WindowLayersDoublePane
- hpxml_bldg.windows[1].frame_type = HPXML::WindowFrameTypeVinyl
- hpxml_bldg.windows[1].glass_type = HPXML::WindowGlassTypeReflective
- hpxml_bldg.windows[1].gas_fill = HPXML::WindowGasAir
- hpxml_bldg.windows[2].ufactor = nil
- hpxml_bldg.windows[2].shgc = nil
- hpxml_bldg.windows[2].glass_layers = HPXML::WindowLayersDoublePane
- hpxml_bldg.windows[2].frame_type = HPXML::WindowFrameTypeMetal
- hpxml_bldg.windows[2].thermal_break = true
- hpxml_bldg.windows[2].glass_type = HPXML::WindowGlassTypeLowE
- hpxml_bldg.windows[2].gas_fill = HPXML::WindowGasArgon
- hpxml_bldg.windows[3].ufactor = nil
- hpxml_bldg.windows[3].shgc = nil
- hpxml_bldg.windows[3].glass_layers = HPXML::WindowLayersGlassBlock
- elsif ['base-enclosure-windows-shading.xml'].include? hpxml_file
- hpxml_bldg.windows[1].exterior_shading_factor_summer = 0.5
- hpxml_bldg.windows[1].exterior_shading_factor_winter = 0.5
- hpxml_bldg.windows[1].interior_shading_factor_summer = 0.5
- hpxml_bldg.windows[1].interior_shading_factor_winter = 0.5
- hpxml_bldg.windows[2].exterior_shading_factor_summer = 0.1
- hpxml_bldg.windows[2].exterior_shading_factor_winter = 0.9
- hpxml_bldg.windows[2].interior_shading_factor_summer = 0.01
- hpxml_bldg.windows[2].interior_shading_factor_winter = 0.99
- hpxml_bldg.windows[3].exterior_shading_factor_summer = 0.0
- hpxml_bldg.windows[3].exterior_shading_factor_winter = 1.0
- hpxml_bldg.windows[3].interior_shading_factor_summer = 0.0
- hpxml_bldg.windows[3].interior_shading_factor_winter = 1.0
- elsif ['base-enclosure-thermal-mass.xml'].include? hpxml_file
- hpxml_bldg.partition_wall_mass.area_fraction = 0.8
- hpxml_bldg.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard
- hpxml_bldg.partition_wall_mass.interior_finish_thickness = 0.25
- hpxml_bldg.furniture_mass.area_fraction = 0.8
- hpxml_bldg.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight
- elsif ['base-misc-defaults.xml'].include? hpxml_file
- hpxml_bldg.attics.reverse_each do |attic|
- attic.delete
- end
- hpxml_bldg.foundations.reverse_each do |foundation|
- foundation.delete
- end
- hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil
+ hpxml.buildings.each do |hpxml_bldg|
+ # Logic that can only be applied based on the file name
+ if ['base-misc-emissions.xml'].include? hpxml_file
+ hpxml_bldg.egrid_region = 'Western'
+ hpxml_bldg.egrid_subregion = 'RMPA'
+ hpxml_bldg.cambium_region_gea = 'RMPAc'
+ end
+
+ # --------------------- #
+ # HPXML BuildingSummary #
+ # --------------------- #
+
+ # General logic for all files
+ hpxml_bldg.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas]
+
+ # Logic that can only be applied based on the file name
+ if ['base-schedules-simple.xml',
+ 'base-schedules-simple-vacancy.xml',
+ 'base-schedules-simple-vacancy-year-round.xml',
+ 'base-schedules-simple-power-outage.xml',
+ 'base-misc-loads-large-uncommon.xml',
+ 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
+ hpxml_bldg.building_occupancy.weekday_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061'
+ hpxml_bldg.building_occupancy.weekend_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061'
+ hpxml_bldg.building_occupancy.monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0'
+ elsif ['base-misc-defaults.xml'].include? hpxml_file
+ hpxml_bldg.building_construction.average_ceiling_height = nil
+ hpxml_bldg.building_construction.conditioned_building_volume = nil
+ elsif ['base-atticroof-cathedral.xml'].include? hpxml_file
+ hpxml_bldg.building_construction.number_of_conditioned_floors = 2
+ hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1
+ hpxml_bldg.building_construction.conditioned_floor_area = 2700
+ hpxml_bldg.attics[0].attic_type = HPXML::AtticTypeCathedral
+ elsif ['base-atticroof-conditioned.xml'].include? hpxml_file
+ hpxml_bldg.building_construction.conditioned_building_volume = 23850
+ hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume
+ hpxml_bldg.air_infiltration_measurements[0].infiltration_height = 15.0
+ elsif ['base-enclosure-split-level.xml'].include? hpxml_file
+ hpxml_bldg.building_construction.number_of_conditioned_floors = 1.5
+ hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1.5
+ elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file
+ hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 2
+ elsif ['base-foundation-basement-garage.xml'].include? hpxml_file
+ hpxml_bldg.building_construction.conditioned_floor_area -= 400 * 2
+ hpxml_bldg.building_construction.conditioned_building_volume -= 400 * 2 * 8
+ hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume
+ elsif ['base-bldgtype-multifamily-infil-compartmentalization-test.xml'].include? hpxml_file
+ hpxml_bldg.air_infiltration_measurements[0].a_ext = 0.2
+ end
+
+ # --------------- #
+ # HPXML Enclosure #
+ # --------------- #
+
+ # General logic for all files
(hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface|
- surface.solar_absorptance = nil
- surface.emittance = nil
+ surface.solar_absorptance = 0.7
+ surface.emittance = 0.92
if surface.is_a? HPXML::Roof
- surface.radiant_barrier = nil
+ surface.roof_color = nil
+ else
+ surface.color = nil
end
end
- (hpxml_bldg.walls + hpxml_bldg.foundation_walls).each do |wall|
- wall.interior_finish_type = nil
- end
- hpxml_bldg.foundation_walls.each do |fwall|
- fwall.length = fwall.area / fwall.height
- fwall.area = nil
- end
- hpxml_bldg.doors[0].azimuth = nil
- elsif ['base-enclosure-2stories.xml',
- 'base-enclosure-2stories-garage.xml',
- 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file
- hpxml_bldg.rim_joists << hpxml_bldg.rim_joists[-1].dup
- hpxml_bldg.rim_joists[-1].id = "RimJoist#{hpxml_bldg.rim_joists.size}"
- hpxml_bldg.rim_joists[-1].insulation_id = "RimJoist#{hpxml_bldg.rim_joists.size}Insulation"
- hpxml_bldg.rim_joists[-1].interior_adjacent_to = HPXML::LocationConditionedSpace
- hpxml_bldg.rim_joists[-1].area = 116
- elsif ['base-foundation-conditioned-basement-wall-insulation.xml'].include? hpxml_file
- hpxml_bldg.foundation_walls.each do |foundation_wall|
- foundation_wall.insulation_interior_r_value = 10
- foundation_wall.insulation_interior_distance_to_top = 1
- foundation_wall.insulation_interior_distance_to_bottom = 8
- foundation_wall.insulation_exterior_r_value = 8.9
- foundation_wall.insulation_exterior_distance_to_top = 1
- foundation_wall.insulation_exterior_distance_to_bottom = 8
+ hpxml_bldg.roofs.each do |roof|
+ next unless roof.interior_adjacent_to == HPXML::LocationConditionedSpace
+
+ roof.interior_finish_type = HPXML::InteriorFinishGypsumBoard
end
- elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file
- hpxml_bldg.foundation_walls.reverse_each do |foundation_wall|
- foundation_wall.delete
+ (hpxml_bldg.walls + hpxml_bldg.foundation_walls + hpxml_bldg.floors).each do |surface|
+ if surface.is_a?(HPXML::FoundationWall) && surface.interior_adjacent_to != HPXML::LocationBasementConditioned
+ surface.interior_finish_type = HPXML::InteriorFinishNone
+ end
+ next unless [HPXML::LocationConditionedSpace,
+ HPXML::LocationBasementConditioned].include?(surface.interior_adjacent_to) &&
+ [HPXML::LocationOutside,
+ HPXML::LocationGround,
+ HPXML::LocationGarage,
+ HPXML::LocationAtticUnvented,
+ HPXML::LocationAtticVented,
+ HPXML::LocationOtherHousingUnit,
+ HPXML::LocationBasementConditioned].include?(surface.exterior_adjacent_to)
+ next if surface.is_a?(HPXML::Floor) && surface.is_floor
+
+ surface.interior_finish_type = HPXML::InteriorFinishGypsumBoard
+ end
+ hpxml_bldg.attics.each do |attic|
+ if attic.attic_type == HPXML::AtticTypeUnvented
+ attic.within_infiltration_volume = false
+ elsif attic.attic_type == HPXML::AtticTypeVented
+ attic.vented_attic_sla = 0.003
+ end
end
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- height: 8,
- area: 480,
- thickness: 8,
- depth_below_grade: 7,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_interior_r_value: 0,
- insulation_exterior_distance_to_top: 0,
- insulation_exterior_distance_to_bottom: 8,
- insulation_exterior_r_value: 8.9)
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- height: 8,
- area: 240,
- thickness: 8,
- depth_below_grade: 3,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_interior_r_value: 0,
- insulation_exterior_distance_to_top: 0,
- insulation_exterior_distance_to_bottom: 8,
- insulation_exterior_r_value: 8.9)
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- height: 8,
- area: 240,
- thickness: 8,
- depth_below_grade: 1,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_interior_r_value: 0,
- insulation_exterior_distance_to_top: 0,
- insulation_exterior_distance_to_bottom: 8,
- insulation_exterior_r_value: 8.9)
- hpxml_bldg.foundation_walls.each do |foundation_wall|
- hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id
+ hpxml_bldg.foundations.each do |foundation|
+ if foundation.foundation_type == HPXML::FoundationTypeCrawlspaceUnvented
+ foundation.within_infiltration_volume = false
+ elsif foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented
+ foundation.vented_crawlspace_sla = 0.00667
+ end
end
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ hpxml_bldg.skylights.each do |skylight|
+ skylight.interior_shading_factor_summer = 1.0
+ skylight.interior_shading_factor_winter = 1.0
+ end
+
+ # Logic that can only be applied based on the file name
+ if ['base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml',
+ 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml',
+ 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml',
+ 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'].include? hpxml_file
+ if hpxml_file == 'base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml'
+ adjacent_to = HPXML::LocationOtherMultifamilyBufferSpace
+ elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml'
+ adjacent_to = HPXML::LocationOtherNonFreezingSpace
+ elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml'
+ adjacent_to = HPXML::LocationOtherHeatedSpace
+ elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'
+ adjacent_to = HPXML::LocationOtherHousingUnit
+ end
+ wall = hpxml_bldg.walls.select { |w|
+ w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
+ w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit
+ }[0]
+ wall.exterior_adjacent_to = adjacent_to
+ hpxml_bldg.floors[0].exterior_adjacent_to = adjacent_to
+ hpxml_bldg.floors[1].exterior_adjacent_to = adjacent_to
+ if hpxml_file != 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'
+ wall.insulation_assembly_r_value = 23
+ hpxml_bldg.floors[0].insulation_assembly_r_value = 18.7
+ hpxml_bldg.floors[1].insulation_assembly_r_value = 18.7
+ end
+ hpxml_bldg.windows.each do |window|
+ window.area = (window.area * 0.35).round(1)
+ end
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: wall.id,
area: 20,
azimuth: 0,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.0,
- wall_idref: hpxml_bldg.foundation_walls[-1].id)
- elsif ['base-foundation-multiple.xml'].include? hpxml_file
- hpxml_bldg.foundations.add(id: "Foundation#{hpxml_bldg.foundations.size + 1}",
- foundation_type: HPXML::FoundationTypeCrawlspaceUnvented,
- within_infiltration_volume: false)
- hpxml_bldg.rim_joists.each do |rim_joist|
- next unless rim_joist.exterior_adjacent_to == HPXML::LocationOutside
-
- rim_joist.exterior_adjacent_to = HPXML::LocationCrawlspaceUnvented
- rim_joist.siding = nil
- end
- hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}",
- exterior_adjacent_to: HPXML::LocationOutside,
- interior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
- siding: HPXML::SidingTypeWood,
- area: 81,
- solar_absorptance: 0.7,
- emittance: 0.92,
- insulation_assembly_r_value: 4.0)
- hpxml_bldg.foundation_walls.each do |foundation_wall|
- foundation_wall.area /= 2.0
- end
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
- interior_adjacent_to: HPXML::LocationBasementUnconditioned,
- height: 8,
- area: 360,
- thickness: 8,
- depth_below_grade: 4,
- insulation_interior_r_value: 0,
- insulation_exterior_r_value: 0)
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
- height: 4,
- area: 600,
- thickness: 8,
- depth_below_grade: 3,
- insulation_interior_r_value: 0,
- insulation_exterior_r_value: 0)
- hpxml_bldg.floors[0].area = 675
- hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: HPXML::FloorTypeWoodFrame,
- area: 675,
- insulation_assembly_r_value: 18.7,
- floor_or_ceiling: HPXML::FloorOrCeilingFloor)
- hpxml_bldg.slabs[0].area = 675
- hpxml_bldg.slabs[0].exposed_perimeter = 75
- hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
- interior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
- area: 675,
- thickness: 0,
- exposed_perimeter: 75,
- perimeter_insulation_depth: 0,
- under_slab_insulation_width: 0,
- perimeter_insulation_r_value: 0,
- under_slab_insulation_r_value: 0,
- carpet_fraction: 0,
- carpet_r_value: 0)
- elsif ['base-foundation-complex.xml'].include? hpxml_file
- hpxml_bldg.foundation_walls.reverse_each do |foundation_wall|
- foundation_wall.delete
- end
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- height: 8,
- area: 160,
- thickness: 8,
- depth_below_grade: 7,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_interior_r_value: 0,
- insulation_exterior_r_value: 0.0)
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- height: 8,
- area: 240,
- thickness: 8,
- depth_below_grade: 7,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_interior_r_value: 0,
- insulation_exterior_distance_to_top: 0,
- insulation_exterior_distance_to_bottom: 8,
- insulation_exterior_r_value: 8.9)
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- height: 8,
- area: 320,
- thickness: 8,
- depth_below_grade: 3,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_interior_r_value: 0,
- insulation_exterior_r_value: 0.0)
- hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGround,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- height: 8,
- area: 400,
- thickness: 8,
- depth_below_grade: 3,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_interior_r_value: 0,
- insulation_exterior_distance_to_top: 0,
- insulation_exterior_distance_to_bottom: 8,
- insulation_exterior_r_value: 8.9)
- hpxml_bldg.foundation_walls.each do |foundation_wall|
- hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id
- end
- hpxml_bldg.slabs.reverse_each do |slab|
- slab.delete
- end
- hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- area: 1150,
- thickness: 4,
- exposed_perimeter: 120,
- perimeter_insulation_depth: 0,
- under_slab_insulation_width: 0,
- perimeter_insulation_r_value: 0,
- under_slab_insulation_r_value: 0,
- carpet_fraction: 0,
- carpet_r_value: 0)
- hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- area: 200,
- thickness: 4,
- exposed_perimeter: 30,
- perimeter_insulation_depth: 1,
- under_slab_insulation_width: 0,
- perimeter_insulation_r_value: 5,
- under_slab_insulation_r_value: 0,
- carpet_fraction: 0,
- carpet_r_value: 0)
- hpxml_bldg.slabs.each do |slab|
- hpxml_bldg.foundations[0].attached_to_slab_idrefs << slab.id
- end
- elsif ['base-foundation-basement-garage.xml'].include? hpxml_file
- hpxml_bldg.roofs[0].area += 670
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationGarage,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- wall_type: HPXML::WallTypeWoodStud,
- area: 320,
- solar_absorptance: 0.7,
- emittance: 0.92,
- interior_finish_type: HPXML::InteriorFinishGypsumBoard,
- insulation_assembly_r_value: 23)
- hpxml_bldg.foundations[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id
- hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
- exterior_adjacent_to: HPXML::LocationOutside,
- interior_adjacent_to: HPXML::LocationGarage,
- wall_type: HPXML::WallTypeWoodStud,
- siding: HPXML::SidingTypeWood,
- area: 320,
- solar_absorptance: 0.7,
- emittance: 0.92,
- insulation_assembly_r_value: 4)
- hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: HPXML::LocationGarage,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: HPXML::FloorTypeWoodFrame,
- area: 400,
- insulation_assembly_r_value: 39.3,
- floor_or_ceiling: HPXML::FloorOrCeilingFloor)
- hpxml_bldg.slabs[0].area -= 400
- hpxml_bldg.slabs[0].exposed_perimeter -= 40
- hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
- interior_adjacent_to: HPXML::LocationGarage,
- area: 400,
- thickness: 4,
- exposed_perimeter: 40,
- perimeter_insulation_depth: 0,
- under_slab_insulation_width: 0,
- perimeter_insulation_r_value: 0,
- under_slab_insulation_r_value: 0,
- carpet_fraction: 0,
- carpet_r_value: 0)
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: hpxml_bldg.walls[-3].id,
- area: 70,
- azimuth: 180,
- r_value: 4.4)
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: hpxml_bldg.walls[-2].id,
- area: 4,
- azimuth: 0,
- r_value: 4.4)
- elsif ['base-enclosure-ceilingtypes.xml'].include? hpxml_file
- exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to
- area = hpxml_bldg.floors[0].area
- hpxml_bldg.floors.reverse_each do |floor|
- floor.delete
- end
- floors_map = { HPXML::FloorTypeSIP => 16.1,
- HPXML::FloorTypeConcrete => 3.2,
- HPXML::FloorTypeSteelFrame => 8.1 }
- floors_map.each_with_index do |(floor_type, assembly_r), _i|
+ r_value: 4.4)
+ hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = adjacent_to
+ hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = adjacent_to
+ hpxml_bldg.water_heating_systems[0].location = adjacent_to
+ hpxml_bldg.clothes_washers[0].location = adjacent_to
+ hpxml_bldg.clothes_dryers[0].location = adjacent_to
+ hpxml_bldg.dishwashers[0].location = adjacent_to
+ hpxml_bldg.refrigerators[0].location = adjacent_to
+ hpxml_bldg.cooking_ranges[0].location = adjacent_to
+ elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file
+ wall = hpxml_bldg.walls.select { |w|
+ w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
+ w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit
+ }[0]
+ wall.delete
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOtherHeatedSpace,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ wall_type: HPXML::WallTypeWoodStud,
+ area: 100,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 23.0)
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ wall_type: HPXML::WallTypeWoodStud,
+ area: 100,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 23.0)
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ wall_type: HPXML::WallTypeWoodStud,
+ area: 100,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 23.0)
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOtherHousingUnit,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ wall_type: HPXML::WallTypeWoodStud,
+ area: 100,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 4.0)
+ hpxml_bldg.floors[0].delete
+ hpxml_bldg.floors[0].id = 'Floor1'
+ hpxml_bldg.floors[0].insulation_id = 'Floor1Insulation'
hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: exterior_adjacent_to,
+ exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace,
interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: floor_type,
- area: area / floors_map.size,
- insulation_assembly_r_value: assembly_r,
- floor_or_ceiling: HPXML::FloorOrCeilingCeiling)
- end
- elsif ['base-enclosure-floortypes.xml'].include? hpxml_file
- exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to
- area = hpxml_bldg.floors[0].area
- ceiling = hpxml_bldg.floors[1].dup
- hpxml_bldg.floors.reverse_each do |floor|
- floor.delete
- end
- floors_map = { HPXML::FloorTypeSIP => 16.1,
- HPXML::FloorTypeConcrete => 3.2,
- HPXML::FloorTypeSteelFrame => 8.1 }
- floors_map.each_with_index do |(floor_type, assembly_r), _i|
+ floor_type: HPXML::FloorTypeWoodFrame,
+ area: 550,
+ insulation_assembly_r_value: 18.7,
+ floor_or_ceiling: HPXML::FloorOrCeilingFloor)
hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
- exterior_adjacent_to: exterior_adjacent_to,
+ exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace,
interior_adjacent_to: HPXML::LocationConditionedSpace,
- floor_type: floor_type,
- area: area / floors_map.size,
- insulation_assembly_r_value: assembly_r,
+ floor_type: HPXML::FloorTypeWoodFrame,
+ area: 200,
+ insulation_assembly_r_value: 18.7,
floor_or_ceiling: HPXML::FloorOrCeilingFloor)
- end
- hpxml_bldg.floors << ceiling
- hpxml_bldg.floors[-1].id = "Floor#{hpxml_bldg.floors.size}"
- hpxml_bldg.floors[-1].insulation_id = "Floor#{hpxml_bldg.floors.size}Insulation"
- elsif ['base-enclosure-walltypes.xml'].include? hpxml_file
- hpxml_bldg.rim_joists.reverse_each do |rim_joist|
- rim_joist.delete
- end
- siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorDark],
- [HPXML::SidingTypeAsbestos, HPXML::ColorMedium],
- [HPXML::SidingTypeBrick, HPXML::ColorReflective],
- [HPXML::SidingTypeCompositeShingle, HPXML::ColorDark],
- [HPXML::SidingTypeFiberCement, HPXML::ColorMediumDark],
- [HPXML::SidingTypeMasonite, HPXML::ColorLight],
- [HPXML::SidingTypeStucco, HPXML::ColorMedium],
- [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMediumDark],
- [HPXML::SidingTypeVinyl, HPXML::ColorLight],
- [HPXML::SidingTypeNone, HPXML::ColorMedium]]
- siding_types.each do |siding_type|
+ hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOtherHeatedSpace,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ floor_type: HPXML::FloorTypeWoodFrame,
+ area: 150,
+ insulation_assembly_r_value: 2.1,
+ floor_or_ceiling: HPXML::FloorOrCeilingFloor)
+ wall = hpxml_bldg.walls.select { |w|
+ w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
+ w.exterior_adjacent_to == HPXML::LocationOtherMultifamilyBufferSpace
+ }[0]
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 50,
+ azimuth: 270,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.67,
+ wall_idref: wall.id)
+ wall = hpxml_bldg.walls.select { |w|
+ w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
+ w.exterior_adjacent_to == HPXML::LocationOtherHeatedSpace
+ }[0]
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: wall.id,
+ area: 20,
+ azimuth: 0,
+ r_value: 4.4)
+ wall = hpxml_bldg.walls.select { |w|
+ w.interior_adjacent_to == HPXML::LocationConditionedSpace &&
+ w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit
+ }[0]
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: wall.id,
+ area: 20,
+ azimuth: 0,
+ r_value: 4.4)
+ elsif ['base-enclosure-orientations.xml'].include? hpxml_file
+ hpxml_bldg.windows.each do |window|
+ window.orientation = { 0 => 'north', 90 => 'east', 180 => 'south', 270 => 'west' }[window.azimuth]
+ window.azimuth = nil
+ end
+ hpxml_bldg.doors[0].delete
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: 'Wall1',
+ area: 20,
+ orientation: HPXML::OrientationNorth,
+ r_value: 4.4)
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: 'Wall1',
+ area: 20,
+ orientation: HPXML::OrientationSouth,
+ r_value: 4.4)
+ elsif ['base-foundation-unconditioned-basement.xml'].include? hpxml_file
+ hpxml_bldg.foundations[0].within_infiltration_volume = false
+ elsif ['base-atticroof-conditioned.xml'].include? hpxml_file
+ hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}",
+ attic_type: HPXML::AtticTypeUnvented,
+ within_infiltration_volume: false)
+ hpxml_bldg.roofs.each do |roof|
+ roof.area = 1006.0 / hpxml_bldg.roofs.size
+ roof.insulation_assembly_r_value = 25.8
+ end
+ hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}",
+ interior_adjacent_to: HPXML::LocationAtticUnvented,
+ area: 504,
+ roof_type: HPXML::RoofTypeAsphaltShingles,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ pitch: 6,
+ radiant_barrier: false,
+ insulation_assembly_r_value: 2.3)
+ hpxml_bldg.rim_joists.each do |rim_joist|
+ rim_joist.area = 116.0 / hpxml_bldg.rim_joists.size
+ end
+ hpxml_bldg.walls.each do |wall|
+ wall.area = 1200.0 / hpxml_bldg.walls.size
+ end
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationAtticUnvented,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ wall_type: HPXML::WallTypeWoodStud,
+ area: 316,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 23.0)
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOutside,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ wall_type: HPXML::WallTypeWoodStud,
+ siding: HPXML::SidingTypeWood,
+ area: 240,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 22.3)
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOutside,
+ interior_adjacent_to: HPXML::LocationAtticUnvented,
+ attic_wall_type: HPXML::AtticWallTypeGable,
+ wall_type: HPXML::WallTypeWoodStud,
+ siding: HPXML::SidingTypeWood,
+ area: 50,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ insulation_assembly_r_value: 4.0)
+ hpxml_bldg.foundation_walls.each do |foundation_wall|
+ foundation_wall.area = 1200.0 / hpxml_bldg.foundation_walls.size
+ end
+ hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
+ exterior_adjacent_to: HPXML::LocationAtticUnvented,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ floor_type: HPXML::FloorTypeWoodFrame,
+ area: 450,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 39.3,
+ floor_or_ceiling: HPXML::FloorOrCeilingCeiling)
+ hpxml_bldg.slabs[0].area = 1350
+ hpxml_bldg.slabs[0].exposed_perimeter = 150
+ hpxml_bldg.windows[1].area = 108
+ hpxml_bldg.windows[3].area = 108
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 12,
+ azimuth: 90,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0,
+ wall_idref: hpxml_bldg.walls[-2].id)
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 62,
+ azimuth: 270,
+ ufactor: 0.3,
+ shgc: 0.45,
+ fraction_operable: 0,
+ wall_idref: hpxml_bldg.walls[-2].id)
+ elsif ['base-foundation-unconditioned-basement-above-grade.xml'].include? hpxml_file
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 20,
+ azimuth: 0,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.0,
+ wall_idref: hpxml_bldg.foundation_walls[0].id)
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 10,
+ azimuth: 90,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.0,
+ wall_idref: hpxml_bldg.foundation_walls[0].id)
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 20,
+ azimuth: 180,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.0,
+ wall_idref: hpxml_bldg.foundation_walls[0].id)
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 10,
+ azimuth: 270,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.0,
+ wall_idref: hpxml_bldg.foundation_walls[0].id)
+ elsif ['base-enclosure-skylights-physical-properties.xml'].include? hpxml_file
+ hpxml_bldg.skylights[0].ufactor = nil
+ hpxml_bldg.skylights[0].shgc = nil
+ hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersSinglePane
+ hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeWood
+ hpxml_bldg.skylights[0].glass_type = HPXML::WindowGlassTypeTinted
+ hpxml_bldg.skylights[1].ufactor = nil
+ hpxml_bldg.skylights[1].shgc = nil
+ hpxml_bldg.skylights[1].glass_layers = HPXML::WindowLayersDoublePane
+ hpxml_bldg.skylights[1].frame_type = HPXML::WindowFrameTypeMetal
+ hpxml_bldg.skylights[1].thermal_break = true
+ hpxml_bldg.skylights[1].glass_type = HPXML::WindowGlassTypeLowE
+ hpxml_bldg.skylights[1].gas_fill = HPXML::WindowGasKrypton
+ elsif ['base-enclosure-skylights-shading.xml'].include? hpxml_file
+ hpxml_bldg.skylights[0].exterior_shading_factor_summer = 0.1
+ hpxml_bldg.skylights[0].exterior_shading_factor_winter = 0.9
+ hpxml_bldg.skylights[0].interior_shading_factor_summer = 0.01
+ hpxml_bldg.skylights[0].interior_shading_factor_winter = 0.99
+ hpxml_bldg.skylights[1].exterior_shading_factor_summer = 0.5
+ hpxml_bldg.skylights[1].exterior_shading_factor_winter = 0.0
+ hpxml_bldg.skylights[1].interior_shading_factor_summer = 0.5
+ hpxml_bldg.skylights[1].interior_shading_factor_winter = 1.0
+ elsif ['base-enclosure-windows-physical-properties.xml'].include? hpxml_file
+ hpxml_bldg.windows[0].ufactor = nil
+ hpxml_bldg.windows[0].shgc = nil
+ hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersSinglePane
+ hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeWood
+ hpxml_bldg.windows[0].glass_type = HPXML::WindowGlassTypeTinted
+ hpxml_bldg.windows[1].ufactor = nil
+ hpxml_bldg.windows[1].shgc = nil
+ hpxml_bldg.windows[1].glass_layers = HPXML::WindowLayersDoublePane
+ hpxml_bldg.windows[1].frame_type = HPXML::WindowFrameTypeVinyl
+ hpxml_bldg.windows[1].glass_type = HPXML::WindowGlassTypeReflective
+ hpxml_bldg.windows[1].gas_fill = HPXML::WindowGasAir
+ hpxml_bldg.windows[2].ufactor = nil
+ hpxml_bldg.windows[2].shgc = nil
+ hpxml_bldg.windows[2].glass_layers = HPXML::WindowLayersDoublePane
+ hpxml_bldg.windows[2].frame_type = HPXML::WindowFrameTypeMetal
+ hpxml_bldg.windows[2].thermal_break = true
+ hpxml_bldg.windows[2].glass_type = HPXML::WindowGlassTypeLowE
+ hpxml_bldg.windows[2].gas_fill = HPXML::WindowGasArgon
+ hpxml_bldg.windows[3].ufactor = nil
+ hpxml_bldg.windows[3].shgc = nil
+ hpxml_bldg.windows[3].glass_layers = HPXML::WindowLayersGlassBlock
+ elsif ['base-enclosure-windows-shading.xml'].include? hpxml_file
+ hpxml_bldg.windows[1].exterior_shading_factor_summer = 0.5
+ hpxml_bldg.windows[1].exterior_shading_factor_winter = 0.5
+ hpxml_bldg.windows[1].interior_shading_factor_summer = 0.5
+ hpxml_bldg.windows[1].interior_shading_factor_winter = 0.5
+ hpxml_bldg.windows[2].exterior_shading_factor_summer = 0.1
+ hpxml_bldg.windows[2].exterior_shading_factor_winter = 0.9
+ hpxml_bldg.windows[2].interior_shading_factor_summer = 0.01
+ hpxml_bldg.windows[2].interior_shading_factor_winter = 0.99
+ hpxml_bldg.windows[3].exterior_shading_factor_summer = 0.0
+ hpxml_bldg.windows[3].exterior_shading_factor_winter = 1.0
+ hpxml_bldg.windows[3].interior_shading_factor_summer = 0.0
+ hpxml_bldg.windows[3].interior_shading_factor_winter = 1.0
+ elsif ['base-enclosure-thermal-mass.xml'].include? hpxml_file
+ hpxml_bldg.partition_wall_mass.area_fraction = 0.8
+ hpxml_bldg.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard
+ hpxml_bldg.partition_wall_mass.interior_finish_thickness = 0.25
+ hpxml_bldg.furniture_mass.area_fraction = 0.8
+ hpxml_bldg.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight
+ elsif ['base-misc-defaults.xml'].include? hpxml_file
+ hpxml_bldg.attics.reverse_each do |attic|
+ attic.delete
+ end
+ hpxml_bldg.foundations.reverse_each do |foundation|
+ foundation.delete
+ end
+ hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil
+ (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface|
+ surface.solar_absorptance = nil
+ surface.emittance = nil
+ if surface.is_a? HPXML::Roof
+ surface.radiant_barrier = nil
+ end
+ end
+ (hpxml_bldg.walls + hpxml_bldg.foundation_walls).each do |wall|
+ wall.interior_finish_type = nil
+ end
+ hpxml_bldg.foundation_walls.each do |fwall|
+ fwall.length = fwall.area / fwall.height
+ fwall.area = nil
+ end
+ hpxml_bldg.doors[0].azimuth = nil
+ elsif ['base-enclosure-2stories.xml',
+ 'base-enclosure-2stories-garage.xml',
+ 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file
+ hpxml_bldg.rim_joists << hpxml_bldg.rim_joists[-1].dup
+ hpxml_bldg.rim_joists[-1].id = "RimJoist#{hpxml_bldg.rim_joists.size}"
+ hpxml_bldg.rim_joists[-1].insulation_id = "RimJoist#{hpxml_bldg.rim_joists.size}Insulation"
+ hpxml_bldg.rim_joists[-1].interior_adjacent_to = HPXML::LocationConditionedSpace
+ hpxml_bldg.rim_joists[-1].area = 116
+ elsif ['base-foundation-conditioned-basement-wall-insulation.xml'].include? hpxml_file
+ hpxml_bldg.foundation_walls.each do |foundation_wall|
+ foundation_wall.insulation_interior_r_value = 10
+ foundation_wall.insulation_interior_distance_to_top = 1
+ foundation_wall.insulation_interior_distance_to_bottom = 8
+ foundation_wall.insulation_exterior_r_value = 8.9
+ foundation_wall.insulation_exterior_distance_to_top = 1
+ foundation_wall.insulation_exterior_distance_to_bottom = 8
+ end
+ elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file
+ hpxml_bldg.foundation_walls.reverse_each do |foundation_wall|
+ foundation_wall.delete
+ end
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ height: 8,
+ area: 480,
+ thickness: 8,
+ depth_below_grade: 7,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_interior_r_value: 0,
+ insulation_exterior_distance_to_top: 0,
+ insulation_exterior_distance_to_bottom: 8,
+ insulation_exterior_r_value: 8.9)
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ height: 8,
+ area: 240,
+ thickness: 8,
+ depth_below_grade: 3,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_interior_r_value: 0,
+ insulation_exterior_distance_to_top: 0,
+ insulation_exterior_distance_to_bottom: 8,
+ insulation_exterior_r_value: 8.9)
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ height: 8,
+ area: 240,
+ thickness: 8,
+ depth_below_grade: 1,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_interior_r_value: 0,
+ insulation_exterior_distance_to_top: 0,
+ insulation_exterior_distance_to_bottom: 8,
+ insulation_exterior_r_value: 8.9)
+ hpxml_bldg.foundation_walls.each do |foundation_wall|
+ hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id
+ end
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 20,
+ azimuth: 0,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.0,
+ wall_idref: hpxml_bldg.foundation_walls[-1].id)
+ elsif ['base-foundation-multiple.xml'].include? hpxml_file
+ hpxml_bldg.foundations.add(id: "Foundation#{hpxml_bldg.foundations.size + 1}",
+ foundation_type: HPXML::FoundationTypeCrawlspaceUnvented,
+ within_infiltration_volume: false)
+ hpxml_bldg.rim_joists.each do |rim_joist|
+ next unless rim_joist.exterior_adjacent_to == HPXML::LocationOutside
+
+ rim_joist.exterior_adjacent_to = HPXML::LocationCrawlspaceUnvented
+ rim_joist.siding = nil
+ end
hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}",
exterior_adjacent_to: HPXML::LocationOutside,
- interior_adjacent_to: HPXML::LocationBasementConditioned,
- siding: siding_type[0],
- color: siding_type[1],
- area: 116 / siding_types.size,
+ interior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
+ siding: HPXML::SidingTypeWood,
+ area: 81,
+ solar_absorptance: 0.7,
emittance: 0.92,
- insulation_assembly_r_value: 23.0)
- hpxml_bldg.foundations[0].attached_to_rim_joist_idrefs << hpxml_bldg.rim_joists[-1].id
- end
- gable_walls = hpxml_bldg.walls.select { |w| w.interior_adjacent_to == HPXML::LocationAtticUnvented }
- hpxml_bldg.walls.reverse_each do |wall|
- wall.delete
- end
- walls_map = { HPXML::WallTypeCMU => 12,
- HPXML::WallTypeDoubleWoodStud => 28.7,
- HPXML::WallTypeICF => 21,
- HPXML::WallTypeLog => 7.1,
- HPXML::WallTypeSIP => 16.1,
- HPXML::WallTypeConcrete => 1.35,
- HPXML::WallTypeSteelStud => 8.1,
- HPXML::WallTypeStone => 5.4,
- HPXML::WallTypeStrawBale => 58.8,
- HPXML::WallTypeBrick => 7.9,
- HPXML::WallTypeAdobe => 5.0 }
- siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorReflective],
- [HPXML::SidingTypeAsbestos, HPXML::ColorLight],
- [HPXML::SidingTypeBrick, HPXML::ColorMediumDark],
- [HPXML::SidingTypeCompositeShingle, HPXML::ColorReflective],
- [HPXML::SidingTypeFiberCement, HPXML::ColorMedium],
- [HPXML::SidingTypeMasonite, HPXML::ColorDark],
- [HPXML::SidingTypeStucco, HPXML::ColorLight],
- [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMedium],
- [HPXML::SidingTypeVinyl, HPXML::ColorDark],
- [HPXML::SidingTypeNone, HPXML::ColorMedium]]
- int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5],
- [HPXML::InteriorFinishGypsumBoard, 1.0],
- [HPXML::InteriorFinishGypsumCompositeBoard, 0.5],
- [HPXML::InteriorFinishPlaster, 0.5],
- [HPXML::InteriorFinishWood, 0.5],
- [HPXML::InteriorFinishNone, nil]]
- walls_map.each_with_index do |(wall_type, assembly_r), i|
+ insulation_assembly_r_value: 4.0)
+ hpxml_bldg.foundation_walls.each do |foundation_wall|
+ foundation_wall.area /= 2.0
+ end
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
+ interior_adjacent_to: HPXML::LocationBasementUnconditioned,
+ height: 8,
+ area: 360,
+ thickness: 8,
+ depth_below_grade: 4,
+ insulation_interior_r_value: 0,
+ insulation_exterior_r_value: 0)
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
+ height: 4,
+ area: 600,
+ thickness: 8,
+ depth_below_grade: 3,
+ insulation_interior_r_value: 0,
+ insulation_exterior_r_value: 0)
+ hpxml_bldg.floors[0].area = 675
+ hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
+ exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ floor_type: HPXML::FloorTypeWoodFrame,
+ area: 675,
+ insulation_assembly_r_value: 18.7,
+ floor_or_ceiling: HPXML::FloorOrCeilingFloor)
+ hpxml_bldg.slabs[0].area = 675
+ hpxml_bldg.slabs[0].exposed_perimeter = 75
+ hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
+ interior_adjacent_to: HPXML::LocationCrawlspaceUnvented,
+ area: 675,
+ thickness: 0,
+ exposed_perimeter: 75,
+ perimeter_insulation_depth: 0,
+ under_slab_insulation_width: 0,
+ perimeter_insulation_r_value: 0,
+ under_slab_insulation_r_value: 0,
+ carpet_fraction: 0,
+ carpet_r_value: 0)
+ elsif ['base-foundation-complex.xml'].include? hpxml_file
+ hpxml_bldg.foundation_walls.reverse_each do |foundation_wall|
+ foundation_wall.delete
+ end
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ height: 8,
+ area: 160,
+ thickness: 8,
+ depth_below_grade: 7,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_interior_r_value: 0,
+ insulation_exterior_r_value: 0.0)
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ height: 8,
+ area: 240,
+ thickness: 8,
+ depth_below_grade: 7,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_interior_r_value: 0,
+ insulation_exterior_distance_to_top: 0,
+ insulation_exterior_distance_to_bottom: 8,
+ insulation_exterior_r_value: 8.9)
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ height: 8,
+ area: 320,
+ thickness: 8,
+ depth_below_grade: 3,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_interior_r_value: 0,
+ insulation_exterior_r_value: 0.0)
+ hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGround,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ height: 8,
+ area: 400,
+ thickness: 8,
+ depth_below_grade: 3,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_interior_r_value: 0,
+ insulation_exterior_distance_to_top: 0,
+ insulation_exterior_distance_to_bottom: 8,
+ insulation_exterior_r_value: 8.9)
+ hpxml_bldg.foundation_walls.each do |foundation_wall|
+ hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id
+ end
+ hpxml_bldg.slabs.reverse_each do |slab|
+ slab.delete
+ end
+ hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ area: 1150,
+ thickness: 4,
+ exposed_perimeter: 120,
+ perimeter_insulation_depth: 0,
+ under_slab_insulation_width: 0,
+ perimeter_insulation_r_value: 0,
+ under_slab_insulation_r_value: 0,
+ carpet_fraction: 0,
+ carpet_r_value: 0)
+ hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ area: 200,
+ thickness: 4,
+ exposed_perimeter: 30,
+ perimeter_insulation_depth: 1,
+ under_slab_insulation_width: 0,
+ perimeter_insulation_r_value: 5,
+ under_slab_insulation_r_value: 0,
+ carpet_fraction: 0,
+ carpet_r_value: 0)
+ hpxml_bldg.slabs.each do |slab|
+ hpxml_bldg.foundations[0].attached_to_slab_idrefs << slab.id
+ end
+ elsif ['base-foundation-basement-garage.xml'].include? hpxml_file
+ hpxml_bldg.roofs[0].area += 670
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGarage,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ wall_type: HPXML::WallTypeWoodStud,
+ area: 320,
+ solar_absorptance: 0.7,
+ emittance: 0.92,
+ interior_finish_type: HPXML::InteriorFinishGypsumBoard,
+ insulation_assembly_r_value: 23)
+ hpxml_bldg.foundations[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id
hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
exterior_adjacent_to: HPXML::LocationOutside,
- interior_adjacent_to: HPXML::LocationConditionedSpace,
- wall_type: wall_type,
- siding: siding_types[i % siding_types.size][0],
- color: siding_types[i % siding_types.size][1],
- area: 1200 / walls_map.size,
+ interior_adjacent_to: HPXML::LocationGarage,
+ wall_type: HPXML::WallTypeWoodStud,
+ siding: HPXML::SidingTypeWood,
+ area: 320,
+ solar_absorptance: 0.7,
emittance: 0.92,
- interior_finish_type: int_finish_types[i % int_finish_types.size][0],
- interior_finish_thickness: int_finish_types[i % int_finish_types.size][1],
- insulation_assembly_r_value: assembly_r)
- end
- gable_walls.each do |gable_wall|
- hpxml_bldg.walls << gable_wall
- hpxml_bldg.walls[-1].id = "Wall#{hpxml_bldg.walls.size}"
- hpxml_bldg.walls[-1].insulation_id = "Wall#{hpxml_bldg.walls.size}Insulation"
- hpxml_bldg.attics[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id
- end
- hpxml_bldg.windows.reverse_each do |window|
- window.delete
- end
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 108 / 8,
+ insulation_assembly_r_value: 4)
+ hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
+ exterior_adjacent_to: HPXML::LocationGarage,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ floor_type: HPXML::FloorTypeWoodFrame,
+ area: 400,
+ insulation_assembly_r_value: 39.3,
+ floor_or_ceiling: HPXML::FloorOrCeilingFloor)
+ hpxml_bldg.slabs[0].area -= 400
+ hpxml_bldg.slabs[0].exposed_perimeter -= 40
+ hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}",
+ interior_adjacent_to: HPXML::LocationGarage,
+ area: 400,
+ thickness: 4,
+ exposed_perimeter: 40,
+ perimeter_insulation_depth: 0,
+ under_slab_insulation_width: 0,
+ perimeter_insulation_r_value: 0,
+ under_slab_insulation_r_value: 0,
+ carpet_fraction: 0,
+ carpet_r_value: 0)
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: hpxml_bldg.walls[-3].id,
+ area: 70,
+ azimuth: 180,
+ r_value: 4.4)
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: hpxml_bldg.walls[-2].id,
+ area: 4,
azimuth: 0,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.67,
- wall_idref: 'Wall1')
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 72 / 8,
- azimuth: 90,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.67,
- wall_idref: 'Wall2')
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 108 / 8,
+ r_value: 4.4)
+ elsif ['base-enclosure-ceilingtypes.xml'].include? hpxml_file
+ exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to
+ area = hpxml_bldg.floors[0].area
+ hpxml_bldg.floors.reverse_each do |floor|
+ floor.delete
+ end
+ floors_map = { HPXML::FloorTypeSIP => 16.1,
+ HPXML::FloorTypeConcrete => 3.2,
+ HPXML::FloorTypeSteelFrame => 8.1 }
+ floors_map.each_with_index do |(floor_type, assembly_r), _i|
+ hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
+ exterior_adjacent_to: exterior_adjacent_to,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ floor_type: floor_type,
+ area: area / floors_map.size,
+ insulation_assembly_r_value: assembly_r,
+ floor_or_ceiling: HPXML::FloorOrCeilingCeiling)
+ end
+ elsif ['base-enclosure-floortypes.xml'].include? hpxml_file
+ exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to
+ area = hpxml_bldg.floors[0].area
+ ceiling = hpxml_bldg.floors[1].dup
+ hpxml_bldg.floors.reverse_each do |floor|
+ floor.delete
+ end
+ floors_map = { HPXML::FloorTypeSIP => 16.1,
+ HPXML::FloorTypeConcrete => 3.2,
+ HPXML::FloorTypeSteelFrame => 8.1 }
+ floors_map.each_with_index do |(floor_type, assembly_r), _i|
+ hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}",
+ exterior_adjacent_to: exterior_adjacent_to,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ floor_type: floor_type,
+ area: area / floors_map.size,
+ insulation_assembly_r_value: assembly_r,
+ floor_or_ceiling: HPXML::FloorOrCeilingFloor)
+ end
+ hpxml_bldg.floors << ceiling
+ hpxml_bldg.floors[-1].id = "Floor#{hpxml_bldg.floors.size}"
+ hpxml_bldg.floors[-1].insulation_id = "Floor#{hpxml_bldg.floors.size}Insulation"
+ elsif ['base-enclosure-walltypes.xml'].include? hpxml_file
+ hpxml_bldg.rim_joists.reverse_each do |rim_joist|
+ rim_joist.delete
+ end
+ siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorDark],
+ [HPXML::SidingTypeAsbestos, HPXML::ColorMedium],
+ [HPXML::SidingTypeBrick, HPXML::ColorReflective],
+ [HPXML::SidingTypeCompositeShingle, HPXML::ColorDark],
+ [HPXML::SidingTypeFiberCement, HPXML::ColorMediumDark],
+ [HPXML::SidingTypeMasonite, HPXML::ColorLight],
+ [HPXML::SidingTypeStucco, HPXML::ColorMedium],
+ [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMediumDark],
+ [HPXML::SidingTypeVinyl, HPXML::ColorLight],
+ [HPXML::SidingTypeNone, HPXML::ColorMedium]]
+ siding_types.each do |siding_type|
+ hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOutside,
+ interior_adjacent_to: HPXML::LocationBasementConditioned,
+ siding: siding_type[0],
+ color: siding_type[1],
+ area: 116 / siding_types.size,
+ emittance: 0.92,
+ insulation_assembly_r_value: 23.0)
+ hpxml_bldg.foundations[0].attached_to_rim_joist_idrefs << hpxml_bldg.rim_joists[-1].id
+ end
+ gable_walls = hpxml_bldg.walls.select { |w| w.interior_adjacent_to == HPXML::LocationAtticUnvented }
+ hpxml_bldg.walls.reverse_each do |wall|
+ wall.delete
+ end
+ walls_map = { HPXML::WallTypeCMU => 12,
+ HPXML::WallTypeDoubleWoodStud => 28.7,
+ HPXML::WallTypeICF => 21,
+ HPXML::WallTypeLog => 7.1,
+ HPXML::WallTypeSIP => 16.1,
+ HPXML::WallTypeConcrete => 1.35,
+ HPXML::WallTypeSteelStud => 8.1,
+ HPXML::WallTypeStone => 5.4,
+ HPXML::WallTypeStrawBale => 58.8,
+ HPXML::WallTypeBrick => 7.9,
+ HPXML::WallTypeAdobe => 5.0 }
+ siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorReflective],
+ [HPXML::SidingTypeAsbestos, HPXML::ColorLight],
+ [HPXML::SidingTypeBrick, HPXML::ColorMediumDark],
+ [HPXML::SidingTypeCompositeShingle, HPXML::ColorReflective],
+ [HPXML::SidingTypeFiberCement, HPXML::ColorMedium],
+ [HPXML::SidingTypeMasonite, HPXML::ColorDark],
+ [HPXML::SidingTypeStucco, HPXML::ColorLight],
+ [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMedium],
+ [HPXML::SidingTypeVinyl, HPXML::ColorDark],
+ [HPXML::SidingTypeNone, HPXML::ColorMedium]]
+ int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5],
+ [HPXML::InteriorFinishGypsumBoard, 1.0],
+ [HPXML::InteriorFinishGypsumCompositeBoard, 0.5],
+ [HPXML::InteriorFinishPlaster, 0.5],
+ [HPXML::InteriorFinishWood, 0.5],
+ [HPXML::InteriorFinishNone, nil]]
+ walls_map.each_with_index do |(wall_type, assembly_r), i|
+ hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}",
+ exterior_adjacent_to: HPXML::LocationOutside,
+ interior_adjacent_to: HPXML::LocationConditionedSpace,
+ wall_type: wall_type,
+ siding: siding_types[i % siding_types.size][0],
+ color: siding_types[i % siding_types.size][1],
+ area: 1200 / walls_map.size,
+ emittance: 0.92,
+ interior_finish_type: int_finish_types[i % int_finish_types.size][0],
+ interior_finish_thickness: int_finish_types[i % int_finish_types.size][1],
+ insulation_assembly_r_value: assembly_r)
+ end
+ gable_walls.each do |gable_wall|
+ hpxml_bldg.walls << gable_wall
+ hpxml_bldg.walls[-1].id = "Wall#{hpxml_bldg.walls.size}"
+ hpxml_bldg.walls[-1].insulation_id = "Wall#{hpxml_bldg.walls.size}Insulation"
+ hpxml_bldg.attics[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id
+ end
+ hpxml_bldg.windows.reverse_each do |window|
+ window.delete
+ end
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 108 / 8,
+ azimuth: 0,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.67,
+ wall_idref: 'Wall1')
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 72 / 8,
+ azimuth: 90,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.67,
+ wall_idref: 'Wall2')
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 108 / 8,
+ azimuth: 180,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.67,
+ wall_idref: 'Wall3')
+ hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
+ area: 72 / 8,
+ azimuth: 270,
+ ufactor: 0.33,
+ shgc: 0.45,
+ fraction_operable: 0.67,
+ wall_idref: 'Wall4')
+ hpxml_bldg.doors.reverse_each do |door|
+ door.delete
+ end
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: 'Wall9',
+ area: 20,
+ azimuth: 0,
+ r_value: 4.4)
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: 'Wall10',
+ area: 20,
azimuth: 180,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.67,
- wall_idref: 'Wall3')
- hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}",
- area: 72 / 8,
- azimuth: 270,
- ufactor: 0.33,
- shgc: 0.45,
- fraction_operable: 0.67,
- wall_idref: 'Wall4')
- hpxml_bldg.doors.reverse_each do |door|
- door.delete
- end
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: 'Wall9',
- area: 20,
- azimuth: 0,
- r_value: 4.4)
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: 'Wall10',
- area: 20,
- azimuth: 180,
- r_value: 4.4)
- elsif ['base-enclosure-rooftypes.xml'].include? hpxml_file
- hpxml_bldg.roofs.reverse_each do |roof|
- roof.delete
- end
- roof_types = [[HPXML::RoofTypeClayTile, HPXML::ColorLight],
- [HPXML::RoofTypeMetal, HPXML::ColorReflective],
- [HPXML::RoofTypeWoodShingles, HPXML::ColorDark],
- [HPXML::RoofTypeShingles, HPXML::ColorMediumDark],
- [HPXML::RoofTypePlasticRubber, HPXML::ColorLight],
- [HPXML::RoofTypeEPS, HPXML::ColorMedium],
- [HPXML::RoofTypeConcrete, HPXML::ColorLight],
- [HPXML::RoofTypeCool, HPXML::ColorReflective]]
- int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5],
- [HPXML::InteriorFinishPlaster, 0.5],
- [HPXML::InteriorFinishWood, 0.5]]
- roof_types.each_with_index do |roof_type, i|
- hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}",
- interior_adjacent_to: HPXML::LocationAtticUnvented,
- area: 1509.3 / roof_types.size,
- roof_type: roof_type[0],
- roof_color: roof_type[1],
- emittance: 0.92,
- pitch: 6,
- radiant_barrier: false,
- interior_finish_type: int_finish_types[i % int_finish_types.size][0],
- interior_finish_thickness: int_finish_types[i % int_finish_types.size][1],
- insulation_assembly_r_value: roof_type[0] == HPXML::RoofTypeEPS ? 7.0 : 2.3)
- hpxml_bldg.attics[0].attached_to_roof_idrefs << hpxml_bldg.roofs[-1].id
- end
- elsif ['base-enclosure-overhangs.xml'].include? hpxml_file
- # Test relaxed overhangs validation; https://github.com/NREL/OpenStudio-HPXML/issues/866
- hpxml_bldg.windows.each do |window|
- next unless window.overhangs_depth.nil?
-
- window.overhangs_depth = 0.0
- window.overhangs_distance_to_top_of_window = 0.0
- window.overhangs_distance_to_bottom_of_window = 0.0
+ r_value: 4.4)
+ elsif ['base-enclosure-rooftypes.xml'].include? hpxml_file
+ hpxml_bldg.roofs.reverse_each do |roof|
+ roof.delete
+ end
+ roof_types = [[HPXML::RoofTypeClayTile, HPXML::ColorLight],
+ [HPXML::RoofTypeMetal, HPXML::ColorReflective],
+ [HPXML::RoofTypeWoodShingles, HPXML::ColorDark],
+ [HPXML::RoofTypeShingles, HPXML::ColorMediumDark],
+ [HPXML::RoofTypePlasticRubber, HPXML::ColorLight],
+ [HPXML::RoofTypeEPS, HPXML::ColorMedium],
+ [HPXML::RoofTypeConcrete, HPXML::ColorLight],
+ [HPXML::RoofTypeCool, HPXML::ColorReflective]]
+ int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5],
+ [HPXML::InteriorFinishPlaster, 0.5],
+ [HPXML::InteriorFinishWood, 0.5]]
+ roof_types.each_with_index do |roof_type, i|
+ hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}",
+ interior_adjacent_to: HPXML::LocationAtticUnvented,
+ area: 1509.3 / roof_types.size,
+ roof_type: roof_type[0],
+ roof_color: roof_type[1],
+ emittance: 0.92,
+ pitch: 6,
+ radiant_barrier: false,
+ interior_finish_type: int_finish_types[i % int_finish_types.size][0],
+ interior_finish_thickness: int_finish_types[i % int_finish_types.size][1],
+ insulation_assembly_r_value: roof_type[0] == HPXML::RoofTypeEPS ? 7.0 : 2.3)
+ hpxml_bldg.attics[0].attached_to_roof_idrefs << hpxml_bldg.roofs[-1].id
+ end
+ elsif ['base-enclosure-overhangs.xml'].include? hpxml_file
+ # Test relaxed overhangs validation; https://github.com/NREL/OpenStudio-HPXML/issues/866
+ hpxml_bldg.windows.each do |window|
+ next unless window.overhangs_depth.nil?
+
+ window.overhangs_depth = 0.0
+ window.overhangs_distance_to_top_of_window = 0.0
+ window.overhangs_distance_to_bottom_of_window = 0.0
+ end
end
- end
- if ['base-enclosure-2stories-garage.xml',
- 'base-enclosure-garage.xml'].include? hpxml_file
- grg_wall = hpxml_bldg.walls.select { |w|
- w.interior_adjacent_to == HPXML::LocationGarage &&
- w.exterior_adjacent_to == HPXML::LocationOutside
- }[0]
- hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
- wall_idref: grg_wall.id,
- area: 70,
- azimuth: 180,
- r_value: 4.4)
- end
- if ['base-misc-neighbor-shading-bldgtype-multifamily.xml'].include? hpxml_file
- wall = hpxml_bldg.walls.select { |w| w.azimuth == hpxml_bldg.neighbor_buildings[0].azimuth }[0]
- wall.exterior_adjacent_to = HPXML::LocationOtherHeatedSpace
- end
-
- # ---------- #
- # HPXML HVAC #
- # ---------- #
-
- # General logic
- hpxml_bldg.heating_systems.each do |heating_system|
- if heating_system.heating_system_type == HPXML::HVACTypeBoiler &&
- heating_system.heating_system_fuel == HPXML::FuelTypeNaturalGas &&
- !heating_system.is_shared_system
- heating_system.electric_auxiliary_energy = 200
- elsif [HPXML::HVACTypeFloorFurnace,
- HPXML::HVACTypeWallFurnace,
- HPXML::HVACTypeFireplace,
- HPXML::HVACTypeSpaceHeater].include? heating_system.heating_system_type
- heating_system.fan_watts = 0
- elsif [HPXML::HVACTypeStove].include? heating_system.heating_system_type
- heating_system.fan_watts = 40
+ if ['base-enclosure-2stories-garage.xml',
+ 'base-enclosure-garage.xml'].include? hpxml_file
+ grg_wall = hpxml_bldg.walls.select { |w|
+ w.interior_adjacent_to == HPXML::LocationGarage &&
+ w.exterior_adjacent_to == HPXML::LocationOutside
+ }[0]
+ hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}",
+ wall_idref: grg_wall.id,
+ area: 70,
+ azimuth: 180,
+ r_value: 4.4)
+ end
+ if ['base-misc-neighbor-shading-bldgtype-multifamily.xml'].include? hpxml_file
+ wall = hpxml_bldg.walls.select { |w| w.azimuth == hpxml_bldg.neighbor_buildings[0].azimuth }[0]
+ wall.exterior_adjacent_to = HPXML::LocationOtherHeatedSpace
+ end
+
+ # ---------- #
+ # HPXML HVAC #
+ # ---------- #
+
+ # General logic
+ hpxml_bldg.heating_systems.each do |heating_system|
+ if heating_system.heating_system_type == HPXML::HVACTypeBoiler &&
+ heating_system.heating_system_fuel == HPXML::FuelTypeNaturalGas &&
+ !heating_system.is_shared_system
+ heating_system.electric_auxiliary_energy = 200
+ elsif [HPXML::HVACTypeFloorFurnace,
+ HPXML::HVACTypeWallFurnace,
+ HPXML::HVACTypeFireplace,
+ HPXML::HVACTypeSpaceHeater].include? heating_system.heating_system_type
+ heating_system.fan_watts = 0
+ elsif [HPXML::HVACTypeStove].include? heating_system.heating_system_type
+ heating_system.fan_watts = 40
+ end
end
- end
- hpxml_bldg.heat_pumps.each do |heat_pump|
- if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir
- heat_pump.pump_watts_per_ton = 30.0
+ hpxml_bldg.heat_pumps.each do |heat_pump|
+ if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir
+ heat_pump.pump_watts_per_ton = 30.0
+ end
end
- end
- # Logic that can only be applied based on the file name
- if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower')
- # Handle chiller/cooling tower
- if hpxml_file.include? 'chiller'
- hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
- cooling_system_type: HPXML::HVACTypeChiller,
- cooling_system_fuel: HPXML::FuelTypeElectricity,
- is_shared_system: true,
- number_of_units_served: 6,
- cooling_capacity: 24000 * 6,
- cooling_efficiency_kw_per_ton: 0.9,
- fraction_cool_load_served: 1.0,
- primary_system: true)
- elsif hpxml_file.include? 'cooling-tower'
- hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
- cooling_system_type: HPXML::HVACTypeCoolingTower,
- cooling_system_fuel: HPXML::FuelTypeElectricity,
- is_shared_system: true,
- number_of_units_served: 6,
- fraction_cool_load_served: 1.0,
- primary_system: true)
+ # Logic that can only be applied based on the file name
+ if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower')
+ # Handle chiller/cooling tower
+ if hpxml_file.include? 'chiller'
+ hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
+ cooling_system_type: HPXML::HVACTypeChiller,
+ cooling_system_fuel: HPXML::FuelTypeElectricity,
+ is_shared_system: true,
+ number_of_units_served: 6,
+ cooling_capacity: 24000 * 6,
+ cooling_efficiency_kw_per_ton: 0.9,
+ fraction_cool_load_served: 1.0,
+ primary_system: true)
+ elsif hpxml_file.include? 'cooling-tower'
+ hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
+ cooling_system_type: HPXML::HVACTypeCoolingTower,
+ cooling_system_fuel: HPXML::FuelTypeElectricity,
+ is_shared_system: true,
+ number_of_units_served: 6,
+ fraction_cool_load_served: 1.0,
+ primary_system: true)
+ end
+ if hpxml_file.include? 'boiler'
+ hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 78.0
+ hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ else
+ hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}",
+ control_type: HPXML::HVACControlTypeManual,
+ cooling_setpoint_temp: 78.0)
+ if hpxml_file.include? 'baseboard'
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeHydronic,
+ hydronic_type: HPXML::HydronicTypeBaseboard)
+ hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ end
+ end
end
- if hpxml_file.include? 'boiler'
- hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 78.0
- hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
- else
- hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}",
- control_type: HPXML::HVACControlTypeManual,
- cooling_setpoint_temp: 78.0)
- if hpxml_file.include? 'baseboard'
+ if hpxml_file.include?('water-loop-heat-pump') || (hpxml_file.include?('fan-coil') && !hpxml_file.include?('fireplace-elec'))
+ # Handle WLHP/ducted fan coil
+ hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution|
+ hvac_distribution.delete
+ end
+ if hpxml_file.include? 'water-loop-heat-pump'
hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
distribution_system_type: HPXML::HVACDistributionTypeHydronic,
- hydronic_type: HPXML::HydronicTypeBaseboard)
- hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ hydronic_type: HPXML::HydronicTypeWaterLoop)
+ hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
+ heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir,
+ heat_pump_fuel: HPXML::FuelTypeElectricity)
+ if hpxml_file.include? 'boiler'
+ hpxml_bldg.heat_pumps[-1].heating_capacity = 24000
+ hpxml_bldg.heat_pumps[-1].heating_efficiency_cop = 4.4
+ hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ end
+ if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower')
+ hpxml_bldg.heat_pumps[-1].cooling_capacity = 24000
+ hpxml_bldg.heat_pumps[-1].cooling_efficiency_eer = 12.8
+ hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ end
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeAir,
+ air_type: HPXML::AirTypeRegularVelocity)
+ hpxml_bldg.heat_pumps[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ elsif hpxml_file.include? 'fan-coil'
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeAir,
+ air_type: HPXML::AirTypeFanCoil)
+
+ if hpxml_file.include? 'boiler'
+ hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ end
+ if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower')
+ hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ end
+ end
+ if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil-ducted')
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply,
+ duct_leakage_units: HPXML::UnitsCFM25,
+ duct_leakage_value: 15,
+ duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn,
+ duct_leakage_units: HPXML::UnitsCFM25,
+ duct_leakage_value: 10,
+ duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
+ hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeSupply,
+ duct_insulation_r_value: 0,
+ duct_location: HPXML::LocationOtherMultifamilyBufferSpace,
+ duct_surface_area: 50)
+ hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeReturn,
+ duct_insulation_r_value: 0,
+ duct_location: HPXML::LocationOtherMultifamilyBufferSpace,
+ duct_surface_area: 20)
end
end
- end
- if hpxml_file.include?('water-loop-heat-pump') || (hpxml_file.include?('fan-coil') && !hpxml_file.include?('fireplace-elec'))
- # Handle WLHP/ducted fan coil
- hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution|
- hvac_distribution.delete
- end
- if hpxml_file.include? 'water-loop-heat-pump'
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeHydronic,
- hydronic_type: HPXML::HydronicTypeWaterLoop)
+ if hpxml_file.include? 'shared-ground-loop'
+ hpxml_bldg.heating_systems.reverse_each do |heating_system|
+ heating_system.delete
+ end
+ hpxml_bldg.cooling_systems.reverse_each do |cooling_system|
+ cooling_system.delete
+ end
hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
- heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir,
- heat_pump_fuel: HPXML::FuelTypeElectricity)
- if hpxml_file.include? 'boiler'
- hpxml_bldg.heat_pumps[-1].heating_capacity = 24000
- hpxml_bldg.heat_pumps[-1].heating_efficiency_cop = 4.4
- hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ distribution_system_idref: hpxml_bldg.hvac_distributions[-1].id,
+ heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir,
+ heat_pump_fuel: HPXML::FuelTypeElectricity,
+ backup_type: HPXML::HeatPumpBackupTypeIntegrated,
+ backup_heating_fuel: HPXML::FuelTypeElectricity,
+ is_shared_system: true,
+ number_of_units_served: 6,
+ backup_heating_efficiency_percent: 1.0,
+ fraction_heat_load_served: 1,
+ fraction_cool_load_served: 1,
+ heating_efficiency_cop: 3.6,
+ cooling_efficiency_eer: 16.6,
+ heating_capacity: 12000,
+ cooling_capacity: 12000,
+ backup_heating_capacity: 12000,
+ cooling_shr: 0.73,
+ primary_heating_system: true,
+ primary_cooling_system: true,
+ pump_watts_per_ton: 0.0)
+
+ end
+ if hpxml_file.include? 'eae'
+ hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 500.0
+ else
+ if hpxml_file.include? 'shared-boiler'
+ hpxml_bldg.heating_systems[0].shared_loop_watts = 600
end
if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower')
- hpxml_bldg.heat_pumps[-1].cooling_capacity = 24000
- hpxml_bldg.heat_pumps[-1].cooling_efficiency_eer = 12.8
- hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ hpxml_bldg.cooling_systems[0].shared_loop_watts = 600
+ end
+ if hpxml_file.include? 'shared-ground-loop'
+ hpxml_bldg.heat_pumps[0].shared_loop_watts = 600
+ end
+ if hpxml_file.include? 'fan-coil'
+ if hpxml_file.include? 'boiler'
+ hpxml_bldg.heating_systems[0].fan_coil_watts = 150
+ end
+ if hpxml_file.include? 'chiller'
+ hpxml_bldg.cooling_systems[0].fan_coil_watts = 150
+ end
+ end
+ end
+ if hpxml_file.include? 'install-quality'
+ hpxml_bldg.hvac_systems.each do |hvac_system|
+ hvac_system.fan_watts_per_cfm = 0.365
+ end
+ elsif ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file
+ hpxml_bldg.hvac_controls[0].heating_setback_temp = 66
+ hpxml_bldg.hvac_controls[0].heating_setback_hours_per_week = 7 * 7
+ hpxml_bldg.hvac_controls[0].heating_setback_start_hour = 23 # 11pm
+ hpxml_bldg.hvac_controls[0].cooling_setup_temp = 80
+ hpxml_bldg.hvac_controls[0].cooling_setup_hours_per_week = 6 * 7
+ hpxml_bldg.hvac_controls[0].cooling_setup_start_hour = 9 # 9am
+ elsif ['base-hvac-dse.xml',
+ 'base-dhw-indirect-dse.xml',
+ 'base-mechvent-cfis-dse.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE
+ hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8
+ hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7
+ elsif ['base-hvac-furnace-x3-dse.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE
+ hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8
+ hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7
+ hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup
+ hpxml_bldg.hvac_distributions[1].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}"
+ hpxml_bldg.hvac_distributions[1].annual_cooling_dse = 1.0
+ hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup
+ hpxml_bldg.hvac_distributions[2].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}"
+ hpxml_bldg.hvac_distributions[2].annual_cooling_dse = 1.0
+ hpxml_bldg.heating_systems[0].primary_system = false
+ hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup
+ hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}"
+ hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
+ hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup
+ hpxml_bldg.heating_systems[2].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}"
+ hpxml_bldg.heating_systems[2].distribution_system_idref = hpxml_bldg.hvac_distributions[2].id
+ hpxml_bldg.heating_systems[2].primary_system = true
+ for i in 0..2
+ hpxml_bldg.heating_systems[i].heating_capacity /= 3.0
+ # Test a file where sum is slightly greater than 1
+ if i < 2
+ hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.33
+ else
+ hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.35
+ end
+ end
+ elsif ['base-hvac-ducts-area-fractions.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall
+ hpxml_bldg.hvac_distributions[0].ducts[2].duct_insulation_r_value = 4.0
+ elsif ['base-enclosure-2stories.xml',
+ 'base-enclosure-2stories-garage.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup
+ hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}"
+ hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup
+ hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}"
+ hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall
+ hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = 37.5
+ hpxml_bldg.hvac_distributions[0].ducts[3].duct_location = HPXML::LocationConditionedSpace
+ hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = 12.5
+ if hpxml_file == 'base-hvac-ducts-area-fractions.xml'
+ hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area = nil
+ hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area = nil
+ hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = nil
+ hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = nil
+ hpxml_bldg.hvac_distributions[0].ducts[0].duct_fraction_area = 0.75
+ hpxml_bldg.hvac_distributions[0].ducts[1].duct_fraction_area = 0.75
+ hpxml_bldg.hvac_distributions[0].ducts[2].duct_fraction_area = 0.25
+ hpxml_bldg.hvac_distributions[0].ducts[3].duct_fraction_area = 0.25
+ hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 4050.0
+ hpxml_bldg.hvac_distributions[0].number_of_return_registers = 3
+ end
+ elsif ['base-hvac-ducts-effective-rvalue.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil
+ hpxml_bldg.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil
+ hpxml_bldg.hvac_distributions[0].ducts[0].duct_effective_r_value = 4.5
+ hpxml_bldg.hvac_distributions[0].ducts[1].duct_effective_r_value = 1.7
+ elsif ['base-hvac-multiple.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution|
+ hvac_distribution.delete
end
hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
distribution_system_type: HPXML::HVACDistributionTypeAir,
air_type: HPXML::AirTypeRegularVelocity)
- hpxml_bldg.heat_pumps[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
- elsif hpxml_file.include? 'fan-coil'
+ hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply,
+ duct_leakage_units: HPXML::UnitsCFM25,
+ duct_leakage_value: 75,
+ duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
+ hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn,
+ duct_leakage_units: HPXML::UnitsCFM25,
+ duct_leakage_value: 25,
+ duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
+ hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeSupply,
+ duct_insulation_r_value: 8,
+ duct_location: HPXML::LocationAtticUnvented,
+ duct_surface_area: 75)
+ hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeSupply,
+ duct_insulation_r_value: 8,
+ duct_location: HPXML::LocationOutside,
+ duct_surface_area: 75)
+ hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeReturn,
+ duct_insulation_r_value: 4,
+ duct_location: HPXML::LocationAtticUnvented,
+ duct_surface_area: 25)
+ hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeReturn,
+ duct_insulation_r_value: 4,
+ duct_location: HPXML::LocationOutside,
+ duct_surface_area: 25)
hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
distribution_system_type: HPXML::HVACDistributionTypeAir,
- air_type: HPXML::AirTypeFanCoil)
-
- if hpxml_file.include? 'boiler'
- hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ air_type: HPXML::AirTypeRegularVelocity)
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
+ for i in 0..3
+ hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup
+ hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + i + 1}"
end
- if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower')
- hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeHydronic,
+ hydronic_type: HPXML::HydronicTypeBaseboard)
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeHydronic,
+ hydronic_type: HPXML::HydronicTypeBaseboard)
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeAir,
+ air_type: HPXML::AirTypeRegularVelocity)
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
+ for i in 0..3
+ hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup
+ hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 2 + i + 1}"
end
- end
- if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil-ducted')
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply,
- duct_leakage_units: HPXML::UnitsCFM25,
- duct_leakage_value: 15,
- duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn,
- duct_leakage_units: HPXML::UnitsCFM25,
- duct_leakage_value: 10,
- duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
- hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}",
- duct_type: HPXML::DuctTypeSupply,
- duct_insulation_r_value: 0,
- duct_location: HPXML::LocationOtherMultifamilyBufferSpace,
- duct_surface_area: 50)
- hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}",
- duct_type: HPXML::DuctTypeReturn,
- duct_insulation_r_value: 0,
- duct_location: HPXML::LocationOtherMultifamilyBufferSpace,
- duct_surface_area: 20)
- end
- end
- if hpxml_file.include? 'shared-ground-loop'
- hpxml_bldg.heating_systems.reverse_each do |heating_system|
- heating_system.delete
- end
- hpxml_bldg.cooling_systems.reverse_each do |cooling_system|
- cooling_system.delete
- end
- hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
- distribution_system_idref: hpxml_bldg.hvac_distributions[-1].id,
- heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir,
- heat_pump_fuel: HPXML::FuelTypeElectricity,
- backup_type: HPXML::HeatPumpBackupTypeIntegrated,
- backup_heating_fuel: HPXML::FuelTypeElectricity,
- is_shared_system: true,
- number_of_units_served: 6,
- backup_heating_efficiency_percent: 1.0,
- fraction_heat_load_served: 1,
- fraction_cool_load_served: 1,
- heating_efficiency_cop: 3.6,
- cooling_efficiency_eer: 16.6,
- heating_capacity: 12000,
- cooling_capacity: 12000,
- backup_heating_capacity: 12000,
- cooling_shr: 0.73,
- primary_heating_system: true,
- primary_cooling_system: true,
- pump_watts_per_ton: 0.0)
-
- end
- if hpxml_file.include? 'eae'
- hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 500.0
- else
- if hpxml_file.include? 'shared-boiler'
- hpxml_bldg.heating_systems[0].shared_loop_watts = 600
- end
- if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower')
- hpxml_bldg.cooling_systems[0].shared_loop_watts = 600
- end
- if hpxml_file.include? 'shared-ground-loop'
- hpxml_bldg.heat_pumps[0].shared_loop_watts = 600
- end
- if hpxml_file.include? 'fan-coil'
- if hpxml_file.include? 'boiler'
- hpxml_bldg.heating_systems[0].fan_coil_watts = 150
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeAir,
+ air_type: HPXML::AirTypeRegularVelocity)
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
+ hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
+ for i in 0..3
+ hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup
+ hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 3 + i + 1}"
end
- if hpxml_file.include? 'chiller'
- hpxml_bldg.cooling_systems[0].fan_coil_watts = 150
+ hpxml_bldg.heating_systems.reverse_each do |heating_system|
+ heating_system.delete
end
- end
- end
- if hpxml_file.include? 'install-quality'
- hpxml_bldg.hvac_systems.each do |hvac_system|
- hvac_system.fan_watts_per_cfm = 0.365
- end
- elsif ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file
- hpxml_bldg.hvac_controls[0].heating_setback_temp = 66
- hpxml_bldg.hvac_controls[0].heating_setback_hours_per_week = 7 * 7
- hpxml_bldg.hvac_controls[0].heating_setback_start_hour = 23 # 11pm
- hpxml_bldg.hvac_controls[0].cooling_setup_temp = 80
- hpxml_bldg.hvac_controls[0].cooling_setup_hours_per_week = 6 * 7
- hpxml_bldg.hvac_controls[0].cooling_setup_start_hour = 9 # 9am
- elsif ['base-hvac-dse.xml',
- 'base-dhw-indirect-dse.xml',
- 'base-mechvent-cfis-dse.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE
- hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8
- hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7
- elsif ['base-hvac-furnace-x3-dse.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE
- hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8
- hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7
- hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup
- hpxml_bldg.hvac_distributions[1].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}"
- hpxml_bldg.hvac_distributions[1].annual_cooling_dse = 1.0
- hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup
- hpxml_bldg.hvac_distributions[2].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}"
- hpxml_bldg.hvac_distributions[2].annual_cooling_dse = 1.0
- hpxml_bldg.heating_systems[0].primary_system = false
- hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup
- hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}"
- hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
- hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup
- hpxml_bldg.heating_systems[2].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}"
- hpxml_bldg.heating_systems[2].distribution_system_idref = hpxml_bldg.hvac_distributions[2].id
- hpxml_bldg.heating_systems[2].primary_system = true
- for i in 0..2
- hpxml_bldg.heating_systems[i].heating_capacity /= 3.0
- # Test a file where sum is slightly greater than 1
- if i < 2
- hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.33
+ hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
+ distribution_system_idref: hpxml_bldg.hvac_distributions[0].id,
+ heating_system_type: HPXML::HVACTypeFurnace,
+ heating_system_fuel: HPXML::FuelTypeElectricity,
+ heating_capacity: 6400,
+ heating_efficiency_afue: 1,
+ fraction_heat_load_served: 0.1)
+ hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
+ distribution_system_idref: hpxml_bldg.hvac_distributions[1].id,
+ heating_system_type: HPXML::HVACTypeFurnace,
+ heating_system_fuel: HPXML::FuelTypeNaturalGas,
+ heating_capacity: 6400,
+ heating_efficiency_afue: 0.92,
+ fraction_heat_load_served: 0.1)
+ hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
+ distribution_system_idref: hpxml_bldg.hvac_distributions[2].id,
+ heating_system_type: HPXML::HVACTypeBoiler,
+ heating_system_fuel: HPXML::FuelTypeElectricity,
+ heating_capacity: 6400,
+ heating_efficiency_afue: 1,
+ fraction_heat_load_served: 0.1)
+ hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
+ distribution_system_idref: hpxml_bldg.hvac_distributions[3].id,
+ heating_system_type: HPXML::HVACTypeBoiler,
+ heating_system_fuel: HPXML::FuelTypeNaturalGas,
+ heating_capacity: 6400,
+ heating_efficiency_afue: 0.92,
+ fraction_heat_load_served: 0.1,
+ electric_auxiliary_energy: 200)
+ hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
+ heating_system_type: HPXML::HVACTypeElectricResistance,
+ heating_system_fuel: HPXML::FuelTypeElectricity,
+ heating_capacity: 6400,
+ heating_efficiency_percent: 1,
+ fraction_heat_load_served: 0.1)
+ hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
+ heating_system_type: HPXML::HVACTypeStove,
+ heating_system_fuel: HPXML::FuelTypeOil,
+ heating_capacity: 6400,
+ heating_efficiency_percent: 0.8,
+ fraction_heat_load_served: 0.1,
+ fan_watts: 40.0)
+ hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
+ heating_system_type: HPXML::HVACTypeWallFurnace,
+ heating_system_fuel: HPXML::FuelTypePropane,
+ heating_capacity: 6400,
+ heating_efficiency_afue: 0.8,
+ fraction_heat_load_served: 0.1,
+ fan_watts: 0.0)
+ hpxml_bldg.cooling_systems[0].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
+ hpxml_bldg.cooling_systems[0].fraction_cool_load_served = 0.1333
+ hpxml_bldg.cooling_systems[0].cooling_capacity *= 0.1333
+ hpxml_bldg.cooling_systems[0].primary_system = false
+ hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
+ cooling_system_type: HPXML::HVACTypeRoomAirConditioner,
+ cooling_system_fuel: HPXML::FuelTypeElectricity,
+ cooling_capacity: 9600,
+ fraction_cool_load_served: 0.1333,
+ cooling_efficiency_eer: 8.5,
+ cooling_shr: 0.65)
+ hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
+ cooling_system_type: HPXML::HVACTypePTAC,
+ cooling_system_fuel: HPXML::FuelTypeElectricity,
+ cooling_capacity: 9600,
+ fraction_cool_load_served: 0.1333,
+ cooling_efficiency_eer: 10.7,
+ cooling_shr: 0.65)
+ hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
+ distribution_system_idref: hpxml_bldg.hvac_distributions[4].id,
+ heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir,
+ heat_pump_fuel: HPXML::FuelTypeElectricity,
+ heating_capacity: 4800,
+ cooling_capacity: 4800,
+ backup_type: HPXML::HeatPumpBackupTypeIntegrated,
+ backup_heating_fuel: HPXML::FuelTypeElectricity,
+ backup_heating_capacity: 3412,
+ backup_heating_efficiency_percent: 1.0,
+ fraction_heat_load_served: 0.1,
+ fraction_cool_load_served: 0.2,
+ heating_efficiency_hspf: 7.7,
+ cooling_efficiency_seer: 13,
+ heating_capacity_17F: 4800 * 0.6,
+ cooling_shr: 0.73,
+ compressor_type: HPXML::HVACCompressorTypeSingleStage)
+ hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
+ distribution_system_idref: hpxml_bldg.hvac_distributions[5].id,
+ heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir,
+ heat_pump_fuel: HPXML::FuelTypeElectricity,
+ heating_capacity: 4800,
+ cooling_capacity: 4800,
+ backup_type: HPXML::HeatPumpBackupTypeIntegrated,
+ backup_heating_fuel: HPXML::FuelTypeElectricity,
+ backup_heating_capacity: 3412,
+ backup_heating_efficiency_percent: 1.0,
+ fraction_heat_load_served: 0.1,
+ fraction_cool_load_served: 0.2,
+ heating_efficiency_cop: 3.6,
+ cooling_efficiency_eer: 16.6,
+ cooling_shr: 0.73,
+ pump_watts_per_ton: 30.0)
+ hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
+ heat_pump_type: HPXML::HVACTypeHeatPumpMiniSplit,
+ heat_pump_fuel: HPXML::FuelTypeElectricity,
+ heating_capacity: 4800,
+ cooling_capacity: 4800,
+ backup_type: HPXML::HeatPumpBackupTypeIntegrated,
+ backup_heating_fuel: HPXML::FuelTypeElectricity,
+ backup_heating_capacity: 3412,
+ backup_heating_efficiency_percent: 1.0,
+ fraction_heat_load_served: 0.1,
+ fraction_cool_load_served: 0.2,
+ heating_efficiency_hspf: 10,
+ cooling_efficiency_seer: 19,
+ heating_capacity_17F: 4800 * 0.6,
+ cooling_shr: 0.73,
+ primary_cooling_system: true,
+ primary_heating_system: true)
+ elsif ['base-mechvent-multiple.xml',
+ 'base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
+ distribution_system_type: HPXML::HVACDistributionTypeAir,
+ air_type: HPXML::AirTypeRegularVelocity)
+ hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
+ hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
+ hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup
+ hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup
+ hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}"
+ hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}"
+ hpxml_bldg.heating_systems[0].heating_capacity /= 2.0
+ hpxml_bldg.heating_systems[0].fraction_heat_load_served /= 2.0
+ hpxml_bldg.heating_systems[0].primary_system = false
+ hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup
+ hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}"
+ hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
+ hpxml_bldg.heating_systems[1].primary_system = true
+ hpxml_bldg.cooling_systems[0].fraction_cool_load_served /= 2.0
+ hpxml_bldg.cooling_systems[0].cooling_capacity /= 2.0
+ hpxml_bldg.cooling_systems[0].primary_system = false
+ hpxml_bldg.cooling_systems << hpxml_bldg.cooling_systems[0].dup
+ hpxml_bldg.cooling_systems[1].id = "CoolingSystem#{hpxml_bldg.cooling_systems.size}"
+ hpxml_bldg.cooling_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
+ hpxml_bldg.cooling_systems[1].primary_system = true
+ elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationOtherHousingUnit
+ hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeSupply,
+ duct_insulation_r_value: 4,
+ duct_location: HPXML::LocationRoofDeck,
+ duct_surface_area: 150)
+ hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
+ duct_type: HPXML::DuctTypeReturn,
+ duct_insulation_r_value: 0,
+ duct_location: HPXML::LocationRoofDeck,
+ duct_surface_area: 50)
+ elsif ['base-appliances-dehumidifier-multiple.xml'].include? hpxml_file
+ hpxml_bldg.dehumidifiers[0].fraction_served = 0.5
+ hpxml_bldg.dehumidifiers.add(id: 'Dehumidifier2',
+ type: HPXML::DehumidifierTypePortable,
+ capacity: 30,
+ energy_factor: 1.6,
+ rh_setpoint: 0.5,
+ fraction_served: 0.25,
+ location: HPXML::LocationConditionedSpace)
+ end
+ if ['base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml',
+ 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml'].include? hpxml_file
+ # Switch backup boiler with hydronic distribution to backup furnace with air distribution
+ hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeFurnace
+ hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir
+ hpxml_bldg.hvac_distributions[0].air_type = HPXML::AirTypeRegularVelocity
+ hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[0].dup
+ hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[1].dup
+ hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[0].dup
+ hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[1].dup
+ hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}"
+ hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}"
+ end
+ if ['base-hvac-ducts-area-multipliers.xml'].include? hpxml_file
+ hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5
+ hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5
+ end
+ if hpxml_file.include? 'heating-capacity-17f'
+ hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity * hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction
+ hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil
+ hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil
+ end
+ if hpxml_file.include? 'base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml'
+ hpxml_bldg.heat_pumps[0].compressor_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp
+ hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp
+ hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = nil
+ end
+
+ # ------------------ #
+ # HPXML WaterHeating #
+ # ------------------ #
+
+ # Logic that can only be applied based on the file name
+ if ['base-schedules-simple.xml',
+ 'base-schedules-simple-vacancy.xml',
+ 'base-schedules-simple-vacancy-year-round.xml',
+ 'base-schedules-simple-power-outage.xml',
+ 'base-misc-loads-large-uncommon.xml',
+ 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
+ hpxml_bldg.water_heating.water_fixtures_weekday_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026'
+ hpxml_bldg.water_heating.water_fixtures_weekend_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026'
+ hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0'
+ elsif ['base-bldgtype-multifamily-shared-water-heater-recirc.xml'].include? hpxml_file
+ hpxml_bldg.hot_water_distributions[0].has_shared_recirculation = true
+ hpxml_bldg.hot_water_distributions[0].shared_recirculation_number_of_units_served = 6
+ hpxml_bldg.hot_water_distributions[0].shared_recirculation_pump_power = 220
+ hpxml_bldg.hot_water_distributions[0].shared_recirculation_control_type = HPXML::DHWRecirControlTypeTimer
+ elsif ['base-bldgtype-multifamily-shared-laundry-room.xml',
+ 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file
+ hpxml_bldg.water_heating_systems.reverse_each do |water_heating_system|
+ water_heating_system.delete
+ end
+ hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
+ is_shared_system: true,
+ number_of_units_served: 6,
+ fuel_type: HPXML::FuelTypeNaturalGas,
+ water_heater_type: HPXML::WaterHeaterTypeStorage,
+ location: HPXML::LocationConditionedSpace,
+ tank_volume: 120,
+ fraction_dhw_load_served: 1.0,
+ heating_capacity: 40000,
+ energy_factor: 0.59,
+ recovery_efficiency: 0.76,
+ temperature: 125.0)
+ if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'
+ hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served /= 2.0
+ hpxml_bldg.water_heating_systems[0].tank_volume /= 2.0
+ hpxml_bldg.water_heating_systems[0].number_of_units_served /= 2.0
+ hpxml_bldg.water_heating_systems << hpxml_bldg.water_heating_systems[0].dup
+ hpxml_bldg.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size}"
+ end
+ elsif ['base-dhw-tank-gas-uef-fhr.xml'].include? hpxml_file
+ hpxml_bldg.water_heating_systems[0].first_hour_rating = 56.0
+ hpxml_bldg.water_heating_systems[0].usage_bin = nil
+ elsif ['base-dhw-tankless-electric-outside.xml'].include? hpxml_file
+ hpxml_bldg.water_heating_systems[0].performance_adjustment = 0.92
+ elsif ['base-dhw-multiple.xml'].include? hpxml_file
+ hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.2
+ hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
+ fuel_type: HPXML::FuelTypeNaturalGas,
+ water_heater_type: HPXML::WaterHeaterTypeStorage,
+ location: HPXML::LocationConditionedSpace,
+ tank_volume: 50,
+ fraction_dhw_load_served: 0.2,
+ heating_capacity: 40000,
+ energy_factor: 0.59,
+ recovery_efficiency: 0.76,
+ temperature: 125.0)
+ hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
+ fuel_type: HPXML::FuelTypeElectricity,
+ water_heater_type: HPXML::WaterHeaterTypeHeatPump,
+ location: HPXML::LocationConditionedSpace,
+ tank_volume: 80,
+ fraction_dhw_load_served: 0.2,
+ energy_factor: 2.3,
+ temperature: 125.0)
+ hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
+ fuel_type: HPXML::FuelTypeElectricity,
+ water_heater_type: HPXML::WaterHeaterTypeTankless,
+ location: HPXML::LocationConditionedSpace,
+ fraction_dhw_load_served: 0.2,
+ energy_factor: 0.99,
+ temperature: 125.0)
+ hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
+ fuel_type: HPXML::FuelTypeNaturalGas,
+ water_heater_type: HPXML::WaterHeaterTypeTankless,
+ location: HPXML::LocationConditionedSpace,
+ fraction_dhw_load_served: 0.1,
+ energy_factor: 0.82,
+ temperature: 125.0)
+ hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
+ water_heater_type: HPXML::WaterHeaterTypeCombiStorage,
+ location: HPXML::LocationConditionedSpace,
+ tank_volume: 50,
+ fraction_dhw_load_served: 0.1,
+ related_hvac_idref: 'HeatingSystem1',
+ temperature: 125.0)
+ hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}",
+ system_type: HPXML::SolarThermalSystemType,
+ water_heating_system_idref: nil, # Apply to all water heaters
+ solar_fraction: 0.65)
+ end
+
+ # -------------------- #
+ # HPXML VentilationFan #
+ # -------------------- #
+
+ # Logic that can only be applied based on the file name
+ if ['base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeSupply,
+ is_shared_system: true,
+ in_unit_flow_rate: 100,
+ calculated_flow_rate: 1000,
+ hours_in_operation: 24,
+ fan_power: 300,
+ used_for_whole_building_ventilation: true,
+ fraction_recirculation: 0.0,
+ preheating_fuel: HPXML::FuelTypeNaturalGas,
+ preheating_efficiency_cop: 0.92,
+ preheating_fraction_load_served: 0.8,
+ precooling_fuel: HPXML::FuelTypeElectricity,
+ precooling_efficiency_cop: 4.0,
+ precooling_fraction_load_served: 0.8)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeERV,
+ is_shared_system: true,
+ in_unit_flow_rate: 50,
+ delivered_ventilation: 500,
+ hours_in_operation: 24,
+ total_recovery_efficiency: 0.48,
+ sensible_recovery_efficiency: 0.72,
+ fan_power: 150,
+ used_for_whole_building_ventilation: true,
+ fraction_recirculation: 0.4,
+ preheating_fuel: HPXML::FuelTypeNaturalGas,
+ preheating_efficiency_cop: 0.87,
+ preheating_fraction_load_served: 1.0,
+ precooling_fuel: HPXML::FuelTypeElectricity,
+ precooling_efficiency_cop: 3.5,
+ precooling_fraction_load_served: 1.0)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeHRV,
+ is_shared_system: true,
+ in_unit_flow_rate: 50,
+ rated_flow_rate: 500,
+ hours_in_operation: 24,
+ sensible_recovery_efficiency: 0.72,
+ fan_power: 150,
+ used_for_whole_building_ventilation: true,
+ fraction_recirculation: 0.3,
+ preheating_fuel: HPXML::FuelTypeElectricity,
+ preheating_efficiency_cop: 4.0,
+ precooling_fuel: HPXML::FuelTypeElectricity,
+ precooling_efficiency_cop: 4.5,
+ preheating_fraction_load_served: 1.0,
+ precooling_fraction_load_served: 1.0)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeBalanced,
+ is_shared_system: true,
+ in_unit_flow_rate: 30,
+ tested_flow_rate: 300,
+ hours_in_operation: 24,
+ fan_power: 150,
+ used_for_whole_building_ventilation: true,
+ fraction_recirculation: 0.3,
+ preheating_fuel: HPXML::FuelTypeElectricity,
+ preheating_efficiency_cop: 3.5,
+ precooling_fuel: HPXML::FuelTypeElectricity,
+ precooling_efficiency_cop: 4.0,
+ preheating_fraction_load_served: 0.9,
+ precooling_fraction_load_served: 1.0)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeExhaust,
+ is_shared_system: true,
+ in_unit_flow_rate: 70,
+ rated_flow_rate: 700,
+ hours_in_operation: 8,
+ fan_power: 300,
+ used_for_whole_building_ventilation: true,
+ fraction_recirculation: 0.0)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeExhaust,
+ tested_flow_rate: 50,
+ hours_in_operation: 14,
+ fan_power: 10,
+ used_for_whole_building_ventilation: true)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeCFIS,
+ tested_flow_rate: 160,
+ hours_in_operation: 8,
+ fan_power: 150,
+ used_for_whole_building_ventilation: true,
+ cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler,
+ distribution_system_idref: 'HVACDistribution1')
+ elsif ['base-mechvent-multiple.xml'].include? hpxml_file
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ rated_flow_rate: 2000,
+ fan_power: 150,
+ used_for_seasonal_cooling_load_reduction: true)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeSupply,
+ tested_flow_rate: 12.5,
+ hours_in_operation: 14,
+ fan_power: 2.5,
+ used_for_whole_building_ventilation: true)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeExhaust,
+ tested_flow_rate: 30.0,
+ fan_power: 7.5,
+ used_for_whole_building_ventilation: true)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeBalanced,
+ tested_flow_rate: 27.5,
+ hours_in_operation: 24,
+ fan_power: 15,
+ used_for_whole_building_ventilation: true)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeERV,
+ tested_flow_rate: 12.5,
+ hours_in_operation: 24,
+ total_recovery_efficiency: 0.48,
+ sensible_recovery_efficiency: 0.72,
+ fan_power: 6.25,
+ used_for_whole_building_ventilation: true)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeHRV,
+ tested_flow_rate: 15,
+ hours_in_operation: 24,
+ sensible_recovery_efficiency: 0.72,
+ fan_power: 7.5,
+ used_for_whole_building_ventilation: true)
+ hpxml_bldg.ventilation_fans.reverse_each do |vent_fan|
+ vent_fan.fan_power /= 2.0
+ vent_fan.rated_flow_rate /= 2.0 unless vent_fan.rated_flow_rate.nil?
+ vent_fan.tested_flow_rate /= 2.0 unless vent_fan.tested_flow_rate.nil?
+ hpxml_bldg.ventilation_fans << vent_fan.dup
+ hpxml_bldg.ventilation_fans[-1].id = "VentilationFan#{hpxml_bldg.ventilation_fans.size}"
+ hpxml_bldg.ventilation_fans[-1].start_hour = vent_fan.start_hour - 1 unless vent_fan.start_hour.nil?
+ hpxml_bldg.ventilation_fans[-1].hours_in_operation = vent_fan.hours_in_operation - 1 unless vent_fan.hours_in_operation.nil?
+ end
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeCFIS,
+ tested_flow_rate: 40,
+ hours_in_operation: 8,
+ fan_power: 37.5,
+ used_for_whole_building_ventilation: true,
+ cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler,
+ distribution_system_idref: 'HVACDistribution1')
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeCFIS,
+ tested_flow_rate: 42.5,
+ hours_in_operation: 8,
+ fan_power: 37.5,
+ used_for_whole_building_ventilation: true,
+ cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplementalFan,
+ cfis_supplemental_fan_idref: hpxml_bldg.ventilation_fans.find { |f| f.fan_type == HPXML::MechVentTypeExhaust }.id,
+ distribution_system_idref: 'HVACDistribution2')
+ # Test ventilation system w/ zero airflow and hours
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeHRV,
+ tested_flow_rate: 0,
+ hours_in_operation: 24,
+ sensible_recovery_efficiency: 0.72,
+ fan_power: 7.5,
+ used_for_whole_building_ventilation: true)
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ fan_type: HPXML::MechVentTypeHRV,
+ tested_flow_rate: 15,
+ hours_in_operation: 0,
+ sensible_recovery_efficiency: 0.72,
+ fan_power: 7.5,
+ used_for_whole_building_ventilation: true)
+ elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file
+ hpxml_bldg.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0
+ elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml',
+ 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file
+ hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
+ tested_flow_rate: 120,
+ fan_power: 30,
+ used_for_whole_building_ventilation: true)
+ if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml'
+ hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust
else
- hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.35
+ hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply
end
- end
- elsif ['base-hvac-ducts-area-fractions.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall
- hpxml_bldg.hvac_distributions[0].ducts[2].duct_insulation_r_value = 4.0
- elsif ['base-enclosure-2stories.xml',
- 'base-enclosure-2stories-garage.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup
- hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}"
- hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup
- hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}"
- hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall
- hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = 37.5
- hpxml_bldg.hvac_distributions[0].ducts[3].duct_location = HPXML::LocationConditionedSpace
- hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = 12.5
- elsif ['base-hvac-ducts-effective-rvalue.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil
- hpxml_bldg.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil
- hpxml_bldg.hvac_distributions[0].ducts[0].duct_effective_r_value = 4.5
- hpxml_bldg.hvac_distributions[0].ducts[1].duct_effective_r_value = 1.7
- elsif ['base-hvac-multiple.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution|
- hvac_distribution.delete
- end
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeAir,
- air_type: HPXML::AirTypeRegularVelocity)
- hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply,
- duct_leakage_units: HPXML::UnitsCFM25,
- duct_leakage_value: 75,
- duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
- hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn,
- duct_leakage_units: HPXML::UnitsCFM25,
- duct_leakage_value: 25,
- duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside)
- hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
- duct_type: HPXML::DuctTypeSupply,
- duct_insulation_r_value: 8,
- duct_location: HPXML::LocationAtticUnvented,
- duct_surface_area: 75)
- hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
- duct_type: HPXML::DuctTypeSupply,
- duct_insulation_r_value: 8,
- duct_location: HPXML::LocationOutside,
- duct_surface_area: 75)
- hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
- duct_type: HPXML::DuctTypeReturn,
- duct_insulation_r_value: 4,
- duct_location: HPXML::LocationAtticUnvented,
- duct_surface_area: 25)
- hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
- duct_type: HPXML::DuctTypeReturn,
- duct_insulation_r_value: 4,
- duct_location: HPXML::LocationOutside,
- duct_surface_area: 25)
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeAir,
- air_type: HPXML::AirTypeRegularVelocity)
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
- for i in 0..3
- hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup
- hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + i + 1}"
- end
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeHydronic,
- hydronic_type: HPXML::HydronicTypeBaseboard)
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeHydronic,
- hydronic_type: HPXML::HydronicTypeBaseboard)
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeAir,
- air_type: HPXML::AirTypeRegularVelocity)
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
- for i in 0..3
- hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup
- hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 2 + i + 1}"
- end
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeAir,
- air_type: HPXML::AirTypeRegularVelocity)
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
- hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
- for i in 0..3
- hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup
- hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 3 + i + 1}"
- end
- hpxml_bldg.heating_systems.reverse_each do |heating_system|
- heating_system.delete
- end
- hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
- distribution_system_idref: hpxml_bldg.hvac_distributions[0].id,
- heating_system_type: HPXML::HVACTypeFurnace,
- heating_system_fuel: HPXML::FuelTypeElectricity,
- heating_capacity: 6400,
- heating_efficiency_afue: 1,
- fraction_heat_load_served: 0.1)
- hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
- distribution_system_idref: hpxml_bldg.hvac_distributions[1].id,
- heating_system_type: HPXML::HVACTypeFurnace,
- heating_system_fuel: HPXML::FuelTypeNaturalGas,
- heating_capacity: 6400,
- heating_efficiency_afue: 0.92,
- fraction_heat_load_served: 0.1)
- hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
- distribution_system_idref: hpxml_bldg.hvac_distributions[2].id,
- heating_system_type: HPXML::HVACTypeBoiler,
- heating_system_fuel: HPXML::FuelTypeElectricity,
- heating_capacity: 6400,
- heating_efficiency_afue: 1,
- fraction_heat_load_served: 0.1)
- hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
- distribution_system_idref: hpxml_bldg.hvac_distributions[3].id,
- heating_system_type: HPXML::HVACTypeBoiler,
- heating_system_fuel: HPXML::FuelTypeNaturalGas,
- heating_capacity: 6400,
- heating_efficiency_afue: 0.92,
- fraction_heat_load_served: 0.1,
- electric_auxiliary_energy: 200)
- hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
- heating_system_type: HPXML::HVACTypeElectricResistance,
- heating_system_fuel: HPXML::FuelTypeElectricity,
- heating_capacity: 6400,
- heating_efficiency_percent: 1,
- fraction_heat_load_served: 0.1)
- hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
- heating_system_type: HPXML::HVACTypeStove,
- heating_system_fuel: HPXML::FuelTypeOil,
- heating_capacity: 6400,
- heating_efficiency_percent: 0.8,
- fraction_heat_load_served: 0.1,
- fan_watts: 40.0)
- hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}",
- heating_system_type: HPXML::HVACTypeWallFurnace,
- heating_system_fuel: HPXML::FuelTypePropane,
- heating_capacity: 6400,
- heating_efficiency_afue: 0.8,
- fraction_heat_load_served: 0.1,
- fan_watts: 0.0)
- hpxml_bldg.cooling_systems[0].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
- hpxml_bldg.cooling_systems[0].fraction_cool_load_served = 0.1333
- hpxml_bldg.cooling_systems[0].cooling_capacity *= 0.1333
- hpxml_bldg.cooling_systems[0].primary_system = false
- hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
- cooling_system_type: HPXML::HVACTypeRoomAirConditioner,
- cooling_system_fuel: HPXML::FuelTypeElectricity,
- cooling_capacity: 9600,
- fraction_cool_load_served: 0.1333,
- cooling_efficiency_eer: 8.5,
- cooling_shr: 0.65)
- hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}",
- cooling_system_type: HPXML::HVACTypePTAC,
- cooling_system_fuel: HPXML::FuelTypeElectricity,
- cooling_capacity: 9600,
- fraction_cool_load_served: 0.1333,
- cooling_efficiency_eer: 10.7,
- cooling_shr: 0.65)
- hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
- distribution_system_idref: hpxml_bldg.hvac_distributions[4].id,
- heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir,
- heat_pump_fuel: HPXML::FuelTypeElectricity,
- heating_capacity: 4800,
- cooling_capacity: 4800,
- backup_type: HPXML::HeatPumpBackupTypeIntegrated,
- backup_heating_fuel: HPXML::FuelTypeElectricity,
- backup_heating_capacity: 3412,
- backup_heating_efficiency_percent: 1.0,
- fraction_heat_load_served: 0.1,
- fraction_cool_load_served: 0.2,
- heating_efficiency_hspf: 7.7,
- cooling_efficiency_seer: 13,
- heating_capacity_17F: 4800 * 0.6,
- cooling_shr: 0.73,
- compressor_type: HPXML::HVACCompressorTypeSingleStage)
- hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
- distribution_system_idref: hpxml_bldg.hvac_distributions[5].id,
- heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir,
- heat_pump_fuel: HPXML::FuelTypeElectricity,
- heating_capacity: 4800,
- cooling_capacity: 4800,
- backup_type: HPXML::HeatPumpBackupTypeIntegrated,
- backup_heating_fuel: HPXML::FuelTypeElectricity,
- backup_heating_capacity: 3412,
- backup_heating_efficiency_percent: 1.0,
- fraction_heat_load_served: 0.1,
- fraction_cool_load_served: 0.2,
- heating_efficiency_cop: 3.6,
- cooling_efficiency_eer: 16.6,
- cooling_shr: 0.73,
- pump_watts_per_ton: 30.0)
- hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}",
- heat_pump_type: HPXML::HVACTypeHeatPumpMiniSplit,
- heat_pump_fuel: HPXML::FuelTypeElectricity,
- heating_capacity: 4800,
- cooling_capacity: 4800,
- backup_type: HPXML::HeatPumpBackupTypeIntegrated,
- backup_heating_fuel: HPXML::FuelTypeElectricity,
- backup_heating_capacity: 3412,
- backup_heating_efficiency_percent: 1.0,
- fraction_heat_load_served: 0.1,
- fraction_cool_load_served: 0.2,
- heating_efficiency_hspf: 10,
- cooling_efficiency_seer: 19,
- heating_capacity_17F: 4800 * 0.6,
- cooling_shr: 0.73,
- primary_cooling_system: true,
- primary_heating_system: true)
- elsif ['base-mechvent-multiple.xml',
- 'base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}",
- distribution_system_type: HPXML::HVACDistributionTypeAir,
- air_type: HPXML::AirTypeRegularVelocity)
- hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup
- hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup
- hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup
- hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup
- hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}"
- hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}"
- hpxml_bldg.heating_systems[0].heating_capacity /= 2.0
- hpxml_bldg.heating_systems[0].fraction_heat_load_served /= 2.0
- hpxml_bldg.heating_systems[0].primary_system = false
- hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup
- hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}"
- hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
- hpxml_bldg.heating_systems[1].primary_system = true
- hpxml_bldg.cooling_systems[0].fraction_cool_load_served /= 2.0
- hpxml_bldg.cooling_systems[0].cooling_capacity /= 2.0
- hpxml_bldg.cooling_systems[0].primary_system = false
- hpxml_bldg.cooling_systems << hpxml_bldg.cooling_systems[0].dup
- hpxml_bldg.cooling_systems[1].id = "CoolingSystem#{hpxml_bldg.cooling_systems.size}"
- hpxml_bldg.cooling_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id
- hpxml_bldg.cooling_systems[1].primary_system = true
- elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationOtherHousingUnit
- hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
- duct_type: HPXML::DuctTypeSupply,
- duct_insulation_r_value: 4,
- duct_location: HPXML::LocationRoofDeck,
- duct_surface_area: 150)
- hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}",
- duct_type: HPXML::DuctTypeReturn,
- duct_insulation_r_value: 0,
- duct_location: HPXML::LocationRoofDeck,
- duct_surface_area: 50)
- elsif ['base-appliances-dehumidifier-multiple.xml'].include? hpxml_file
- hpxml_bldg.dehumidifiers[0].fraction_served = 0.5
- hpxml_bldg.dehumidifiers.add(id: 'Dehumidifier2',
- type: HPXML::DehumidifierTypePortable,
- capacity: 30,
- energy_factor: 1.6,
- rh_setpoint: 0.5,
- fraction_served: 0.25,
- location: HPXML::LocationConditionedSpace)
- end
- if ['base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml',
- 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml'].include? hpxml_file
- # Switch backup boiler with hydronic distribution to backup furnace with air distribution
- hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeFurnace
- hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir
- hpxml_bldg.hvac_distributions[0].air_type = HPXML::AirTypeRegularVelocity
- hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[0].dup
- hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[1].dup
- hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[0].dup
- hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[1].dup
- hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}"
- hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}"
- end
- if ['base-hvac-ducts-area-multipliers.xml'].include? hpxml_file
- hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5
- hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5
- end
- if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file
- hpxml_bldg.header.manualj_heating_design_temp = 0
- hpxml_bldg.header.manualj_cooling_design_temp = 100
- hpxml_bldg.header.manualj_heating_setpoint = 60
- hpxml_bldg.header.manualj_cooling_setpoint = 80
- hpxml_bldg.header.manualj_humidity_setpoint = 0.55
- hpxml_bldg.header.manualj_internal_loads_sensible = 4000
- hpxml_bldg.header.manualj_internal_loads_latent = 200
- hpxml_bldg.header.manualj_num_occupants = 5
- end
- if hpxml_file.include? 'heating-capacity-17f'
- hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity * hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction
- hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil
- hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil
- end
- if hpxml_file.include? 'base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml'
- hpxml_bldg.heat_pumps[0].compressor_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp
- hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp
- hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = nil
- end
-
- # ------------------ #
- # HPXML WaterHeating #
- # ------------------ #
-
- # Logic that can only be applied based on the file name
- if ['base-schedules-simple.xml',
- 'base-schedules-simple-vacancy.xml',
- 'base-schedules-simple-vacancy-year-round.xml',
- 'base-schedules-simple-power-outage.xml',
- 'base-misc-loads-large-uncommon.xml',
- 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
- hpxml_bldg.water_heating.water_fixtures_weekday_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026'
- hpxml_bldg.water_heating.water_fixtures_weekend_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026'
- hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0'
- elsif ['base-bldgtype-multifamily-shared-water-heater-recirc.xml'].include? hpxml_file
- hpxml_bldg.hot_water_distributions[0].has_shared_recirculation = true
- hpxml_bldg.hot_water_distributions[0].shared_recirculation_number_of_units_served = 6
- hpxml_bldg.hot_water_distributions[0].shared_recirculation_pump_power = 220
- hpxml_bldg.hot_water_distributions[0].shared_recirculation_control_type = HPXML::DHWRecirControlTypeTimer
- elsif ['base-bldgtype-multifamily-shared-laundry-room.xml',
- 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file
- hpxml_bldg.water_heating_systems.reverse_each do |water_heating_system|
- water_heating_system.delete
- end
- hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
- is_shared_system: true,
- number_of_units_served: 6,
- fuel_type: HPXML::FuelTypeNaturalGas,
- water_heater_type: HPXML::WaterHeaterTypeStorage,
- location: HPXML::LocationConditionedSpace,
- tank_volume: 120,
- fraction_dhw_load_served: 1.0,
- heating_capacity: 40000,
- energy_factor: 0.59,
- recovery_efficiency: 0.76,
- temperature: 125.0)
- if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'
- hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served /= 2.0
- hpxml_bldg.water_heating_systems[0].tank_volume /= 2.0
- hpxml_bldg.water_heating_systems[0].number_of_units_served /= 2.0
- hpxml_bldg.water_heating_systems << hpxml_bldg.water_heating_systems[0].dup
- hpxml_bldg.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size}"
- end
- elsif ['base-dhw-tank-gas-uef-fhr.xml'].include? hpxml_file
- hpxml_bldg.water_heating_systems[0].first_hour_rating = 56.0
- hpxml_bldg.water_heating_systems[0].usage_bin = nil
- elsif ['base-dhw-tankless-electric-outside.xml'].include? hpxml_file
- hpxml_bldg.water_heating_systems[0].performance_adjustment = 0.92
- elsif ['base-dhw-multiple.xml'].include? hpxml_file
- hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.2
- hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
- fuel_type: HPXML::FuelTypeNaturalGas,
- water_heater_type: HPXML::WaterHeaterTypeStorage,
- location: HPXML::LocationConditionedSpace,
- tank_volume: 50,
- fraction_dhw_load_served: 0.2,
- heating_capacity: 40000,
- energy_factor: 0.59,
- recovery_efficiency: 0.76,
- temperature: 125.0)
- hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
- fuel_type: HPXML::FuelTypeElectricity,
- water_heater_type: HPXML::WaterHeaterTypeHeatPump,
- location: HPXML::LocationConditionedSpace,
- tank_volume: 80,
- fraction_dhw_load_served: 0.2,
- energy_factor: 2.3,
- temperature: 125.0)
- hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
- fuel_type: HPXML::FuelTypeElectricity,
- water_heater_type: HPXML::WaterHeaterTypeTankless,
- location: HPXML::LocationConditionedSpace,
- fraction_dhw_load_served: 0.2,
- energy_factor: 0.99,
- temperature: 125.0)
- hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
- fuel_type: HPXML::FuelTypeNaturalGas,
- water_heater_type: HPXML::WaterHeaterTypeTankless,
- location: HPXML::LocationConditionedSpace,
- fraction_dhw_load_served: 0.1,
- energy_factor: 0.82,
- temperature: 125.0)
- hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}",
- water_heater_type: HPXML::WaterHeaterTypeCombiStorage,
- location: HPXML::LocationConditionedSpace,
- tank_volume: 50,
- fraction_dhw_load_served: 0.1,
- related_hvac_idref: 'HeatingSystem1',
- temperature: 125.0)
- hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}",
- system_type: HPXML::SolarThermalSystemType,
- water_heating_system_idref: nil, # Apply to all water heaters
- solar_fraction: 0.65)
- end
-
- # -------------------- #
- # HPXML VentilationFan #
- # -------------------- #
-
- # Logic that can only be applied based on the file name
- if ['base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeSupply,
- is_shared_system: true,
- in_unit_flow_rate: 100,
- calculated_flow_rate: 1000,
- hours_in_operation: 24,
- fan_power: 300,
- used_for_whole_building_ventilation: true,
- fraction_recirculation: 0.0,
- preheating_fuel: HPXML::FuelTypeNaturalGas,
- preheating_efficiency_cop: 0.92,
- preheating_fraction_load_served: 0.8,
- precooling_fuel: HPXML::FuelTypeElectricity,
- precooling_efficiency_cop: 4.0,
- precooling_fraction_load_served: 0.8)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeERV,
- is_shared_system: true,
- in_unit_flow_rate: 50,
- delivered_ventilation: 500,
- hours_in_operation: 24,
- total_recovery_efficiency: 0.48,
- sensible_recovery_efficiency: 0.72,
- fan_power: 150,
- used_for_whole_building_ventilation: true,
- fraction_recirculation: 0.4,
- preheating_fuel: HPXML::FuelTypeNaturalGas,
- preheating_efficiency_cop: 0.87,
- preheating_fraction_load_served: 1.0,
- precooling_fuel: HPXML::FuelTypeElectricity,
- precooling_efficiency_cop: 3.5,
- precooling_fraction_load_served: 1.0)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeHRV,
- is_shared_system: true,
- in_unit_flow_rate: 50,
- rated_flow_rate: 500,
- hours_in_operation: 24,
- sensible_recovery_efficiency: 0.72,
- fan_power: 150,
- used_for_whole_building_ventilation: true,
- fraction_recirculation: 0.3,
- preheating_fuel: HPXML::FuelTypeElectricity,
- preheating_efficiency_cop: 4.0,
- precooling_fuel: HPXML::FuelTypeElectricity,
- precooling_efficiency_cop: 4.5,
- preheating_fraction_load_served: 1.0,
- precooling_fraction_load_served: 1.0)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeBalanced,
- is_shared_system: true,
- in_unit_flow_rate: 30,
- tested_flow_rate: 300,
- hours_in_operation: 24,
- fan_power: 150,
- used_for_whole_building_ventilation: true,
- fraction_recirculation: 0.3,
- preheating_fuel: HPXML::FuelTypeElectricity,
- preheating_efficiency_cop: 3.5,
- precooling_fuel: HPXML::FuelTypeElectricity,
- precooling_efficiency_cop: 4.0,
- preheating_fraction_load_served: 0.9,
- precooling_fraction_load_served: 1.0)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeExhaust,
- is_shared_system: true,
- in_unit_flow_rate: 70,
- rated_flow_rate: 700,
- hours_in_operation: 8,
- fan_power: 300,
- used_for_whole_building_ventilation: true,
- fraction_recirculation: 0.0)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeExhaust,
- tested_flow_rate: 50,
- hours_in_operation: 14,
- fan_power: 10,
- used_for_whole_building_ventilation: true)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeCFIS,
- tested_flow_rate: 160,
- hours_in_operation: 8,
- fan_power: 150,
- used_for_whole_building_ventilation: true,
- cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler,
- distribution_system_idref: 'HVACDistribution1')
- elsif ['base-mechvent-multiple.xml'].include? hpxml_file
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- rated_flow_rate: 2000,
- fan_power: 150,
- used_for_seasonal_cooling_load_reduction: true)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeSupply,
- tested_flow_rate: 12.5,
- hours_in_operation: 14,
- fan_power: 2.5,
- used_for_whole_building_ventilation: true)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeExhaust,
- tested_flow_rate: 30.0,
- fan_power: 7.5,
- used_for_whole_building_ventilation: true)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeBalanced,
- tested_flow_rate: 27.5,
- hours_in_operation: 24,
- fan_power: 15,
- used_for_whole_building_ventilation: true)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeERV,
- tested_flow_rate: 12.5,
- hours_in_operation: 24,
- total_recovery_efficiency: 0.48,
- sensible_recovery_efficiency: 0.72,
- fan_power: 6.25,
- used_for_whole_building_ventilation: true)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeHRV,
- tested_flow_rate: 15,
- hours_in_operation: 24,
- sensible_recovery_efficiency: 0.72,
- fan_power: 7.5,
- used_for_whole_building_ventilation: true)
- hpxml_bldg.ventilation_fans.reverse_each do |vent_fan|
- vent_fan.fan_power /= 2.0
- vent_fan.rated_flow_rate /= 2.0 unless vent_fan.rated_flow_rate.nil?
- vent_fan.tested_flow_rate /= 2.0 unless vent_fan.tested_flow_rate.nil?
- hpxml_bldg.ventilation_fans << vent_fan.dup
- hpxml_bldg.ventilation_fans[-1].id = "VentilationFan#{hpxml_bldg.ventilation_fans.size}"
- hpxml_bldg.ventilation_fans[-1].start_hour = vent_fan.start_hour - 1 unless vent_fan.start_hour.nil?
- hpxml_bldg.ventilation_fans[-1].hours_in_operation = vent_fan.hours_in_operation - 1 unless vent_fan.hours_in_operation.nil?
- end
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeCFIS,
- tested_flow_rate: 40,
- hours_in_operation: 8,
- fan_power: 37.5,
- used_for_whole_building_ventilation: true,
- cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler,
- distribution_system_idref: 'HVACDistribution1')
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeCFIS,
- tested_flow_rate: 42.5,
- hours_in_operation: 8,
- fan_power: 37.5,
- used_for_whole_building_ventilation: true,
- cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplementalFan,
- cfis_supplemental_fan_idref: hpxml_bldg.ventilation_fans.find { |f| f.fan_type == HPXML::MechVentTypeExhaust }.id,
- distribution_system_idref: 'HVACDistribution2')
- # Test ventilation system w/ zero airflow and hours
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeHRV,
- tested_flow_rate: 0,
- hours_in_operation: 24,
- sensible_recovery_efficiency: 0.72,
- fan_power: 7.5,
- used_for_whole_building_ventilation: true)
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- fan_type: HPXML::MechVentTypeHRV,
- tested_flow_rate: 15,
- hours_in_operation: 0,
- sensible_recovery_efficiency: 0.72,
- fan_power: 7.5,
- used_for_whole_building_ventilation: true)
- elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file
- hpxml_bldg.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0
- elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml',
- 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file
- hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}",
- tested_flow_rate: 120,
- fan_power: 30,
- used_for_whole_building_ventilation: true)
- if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml'
- hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust
- else
- hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply
- end
- hpxml_bldg.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan
- hpxml_bldg.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml_bldg.ventilation_fans[1].id
- end
-
- # ---------------- #
- # HPXML Generation #
- # ---------------- #
-
- # Logic that can only be applied based on the file name
- if ['base-misc-defaults.xml'].include? hpxml_file
- hpxml_bldg.pv_systems[0].year_modules_manufactured = 2015
- elsif ['base-misc-generators.xml',
- 'base-misc-generators-battery.xml',
- 'base-misc-generators-battery-scheduled.xml',
- 'base-pv-generators.xml',
- 'base-pv-generators-battery.xml',
- 'base-pv-generators-battery-scheduled.xml'].include? hpxml_file
- hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}",
- fuel_type: HPXML::FuelTypeNaturalGas,
- annual_consumption_kbtu: 8500,
- annual_output_kwh: 1200)
- hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}",
- fuel_type: HPXML::FuelTypeOil,
- annual_consumption_kbtu: 8500,
- annual_output_kwh: 1200)
- elsif ['base-bldgtype-multifamily-shared-generator.xml'].include? hpxml_file
- hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}",
- is_shared_system: true,
- fuel_type: HPXML::FuelTypePropane,
- annual_consumption_kbtu: 85000,
- annual_output_kwh: 12000,
- number_of_bedrooms_served: 18)
- end
-
- # ------------- #
- # HPXML Battery #
- # ------------- #
-
- if ['base-pv-battery-lifetime-model.xml'].include? hpxml_file
- hpxml_bldg.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith
- elsif ['base-pv-battery-ah.xml'].include? hpxml_file
- default_values = Battery.get_battery_default_values()
- hpxml_bldg.batteries[0].nominal_capacity_ah = Battery.get_Ah_from_kWh(hpxml_bldg.batteries[0].nominal_capacity_kwh,
- default_values[:nominal_voltage])
- hpxml_bldg.batteries[0].usable_capacity_ah = hpxml_bldg.batteries[0].nominal_capacity_ah * default_values[:usable_fraction]
- hpxml_bldg.batteries[0].nominal_capacity_kwh = nil
- hpxml_bldg.batteries[0].usable_capacity_kwh = nil
- end
-
- # ---------------- #
- # HPXML Appliances #
- # ---------------- #
-
- # Logic that can only be applied based on the file name
- if ['base-schedules-simple.xml',
- 'base-schedules-simple-vacancy.xml',
- 'base-schedules-simple-vacancy-year-round.xml',
- 'base-schedules-simple-power-outage.xml',
- 'base-misc-loads-large-uncommon.xml',
- 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
- hpxml_bldg.clothes_washers[0].weekday_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017'
- hpxml_bldg.clothes_washers[0].weekend_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017'
- hpxml_bldg.clothes_washers[0].monthly_multipliers = '1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011'
- hpxml_bldg.clothes_dryers[0].weekday_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024'
- hpxml_bldg.clothes_dryers[0].weekend_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024'
- hpxml_bldg.clothes_dryers[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0'
- hpxml_bldg.dishwashers[0].weekday_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031'
- hpxml_bldg.dishwashers[0].weekend_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031'
- hpxml_bldg.dishwashers[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097'
- hpxml_bldg.refrigerators[0].weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
- hpxml_bldg.refrigerators[0].weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
- hpxml_bldg.refrigerators[0].monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837'
- hpxml_bldg.cooking_ranges[0].weekday_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011'
- hpxml_bldg.cooking_ranges[0].weekend_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011'
- hpxml_bldg.cooking_ranges[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097'
- end
- if ['base-misc-loads-large-uncommon.xml',
- 'base-misc-loads-large-uncommon2.xml',
- 'base-misc-usage-multiplier.xml'].include? hpxml_file
- if hpxml_file != 'base-misc-usage-multiplier.xml'
- hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}",
- rated_annual_kwh: 800,
- primary_indicator: false)
- end
- hpxml_bldg.freezers.add(id: "Freezer#{hpxml_bldg.freezers.size + 1}",
- location: HPXML::LocationConditionedSpace,
- rated_annual_kwh: 400)
- if hpxml_file == 'base-misc-usage-multiplier.xml'
- hpxml_bldg.freezers[-1].usage_multiplier = 0.9
- end
- (hpxml_bldg.refrigerators + hpxml_bldg.freezers).each do |appliance|
- next if appliance.is_a?(HPXML::Refrigerator) && hpxml_file == 'base-misc-usage-multiplier.xml'
-
- appliance.weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
- appliance.weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
- appliance.monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837'
- end
- hpxml_bldg.pools[0].pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
- hpxml_bldg.pools[0].pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
- hpxml_bldg.pools[0].pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154'
- hpxml_bldg.pools[0].heater_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
- hpxml_bldg.pools[0].heater_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
- hpxml_bldg.pools[0].heater_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154'
- hpxml_bldg.permanent_spas[0].pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
- hpxml_bldg.permanent_spas[0].pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
- hpxml_bldg.permanent_spas[0].pump_monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837'
- hpxml_bldg.permanent_spas[0].heater_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
- hpxml_bldg.permanent_spas[0].heater_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
- hpxml_bldg.permanent_spas[0].heater_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921'
- end
- if ['base-bldgtype-multifamily-shared-laundry-room.xml',
- 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file
- hpxml_bldg.clothes_washers[0].is_shared_appliance = true
- hpxml_bldg.clothes_washers[0].location = HPXML::LocationOtherHeatedSpace
- hpxml_bldg.clothes_dryers[0].location = HPXML::LocationOtherHeatedSpace
- hpxml_bldg.clothes_dryers[0].is_shared_appliance = true
- hpxml_bldg.dishwashers[0].is_shared_appliance = true
- hpxml_bldg.dishwashers[0].location = HPXML::LocationOtherHeatedSpace
- if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room.xml'
- hpxml_bldg.clothes_washers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id
- hpxml_bldg.dishwashers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id
- elsif hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'
- hpxml_bldg.clothes_washers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id
- hpxml_bldg.dishwashers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id
- end
- elsif ['base-misc-defaults.xml'].include? hpxml_file
- hpxml_bldg.refrigerators[0].primary_indicator = nil
- end
+ hpxml_bldg.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan
+ hpxml_bldg.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml_bldg.ventilation_fans[1].id
+ end
+
+ # ---------------- #
+ # HPXML Generation #
+ # ---------------- #
+
+ # Logic that can only be applied based on the file name
+ if ['base-misc-defaults.xml'].include? hpxml_file
+ hpxml_bldg.pv_systems[0].year_modules_manufactured = 2015
+ elsif ['base-misc-generators.xml',
+ 'base-misc-generators-battery.xml',
+ 'base-misc-generators-battery-scheduled.xml',
+ 'base-pv-generators.xml',
+ 'base-pv-generators-battery.xml',
+ 'base-pv-generators-battery-scheduled.xml'].include? hpxml_file
+ hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}",
+ fuel_type: HPXML::FuelTypeNaturalGas,
+ annual_consumption_kbtu: 8500,
+ annual_output_kwh: 1200)
+ hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}",
+ fuel_type: HPXML::FuelTypeOil,
+ annual_consumption_kbtu: 8500,
+ annual_output_kwh: 1200)
+ elsif ['base-bldgtype-multifamily-shared-generator.xml'].include? hpxml_file
+ hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}",
+ is_shared_system: true,
+ fuel_type: HPXML::FuelTypePropane,
+ annual_consumption_kbtu: 85000,
+ annual_output_kwh: 12000,
+ number_of_bedrooms_served: 18)
+ end
+
+ # ------------- #
+ # HPXML Battery #
+ # ------------- #
+
+ if ['base-pv-battery-lifetime-model.xml'].include? hpxml_file
+ hpxml_bldg.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith
+ elsif ['base-pv-battery-ah.xml'].include? hpxml_file
+ default_values = Battery.get_battery_default_values()
+ hpxml_bldg.batteries[0].nominal_capacity_ah = Battery.get_Ah_from_kWh(hpxml_bldg.batteries[0].nominal_capacity_kwh,
+ default_values[:nominal_voltage])
+ hpxml_bldg.batteries[0].usable_capacity_ah = hpxml_bldg.batteries[0].nominal_capacity_ah * default_values[:usable_fraction]
+ hpxml_bldg.batteries[0].nominal_capacity_kwh = nil
+ hpxml_bldg.batteries[0].usable_capacity_kwh = nil
+ end
+
+ # ---------------- #
+ # HPXML Appliances #
+ # ---------------- #
+
+ # Logic that can only be applied based on the file name
+ if ['base-schedules-simple.xml',
+ 'base-schedules-simple-vacancy.xml',
+ 'base-schedules-simple-vacancy-year-round.xml',
+ 'base-schedules-simple-power-outage.xml',
+ 'base-misc-loads-large-uncommon.xml',
+ 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
+ hpxml_bldg.clothes_washers[0].weekday_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017'
+ hpxml_bldg.clothes_washers[0].weekend_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017'
+ hpxml_bldg.clothes_washers[0].monthly_multipliers = '1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011'
+ hpxml_bldg.clothes_dryers[0].weekday_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024'
+ hpxml_bldg.clothes_dryers[0].weekend_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024'
+ hpxml_bldg.clothes_dryers[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0'
+ hpxml_bldg.dishwashers[0].weekday_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031'
+ hpxml_bldg.dishwashers[0].weekend_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031'
+ hpxml_bldg.dishwashers[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097'
+ hpxml_bldg.refrigerators[0].weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
+ hpxml_bldg.refrigerators[0].weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
+ hpxml_bldg.refrigerators[0].monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837'
+ hpxml_bldg.cooking_ranges[0].weekday_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011'
+ hpxml_bldg.cooking_ranges[0].weekend_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011'
+ hpxml_bldg.cooking_ranges[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097'
+ end
+ if ['base-misc-loads-large-uncommon.xml',
+ 'base-misc-loads-large-uncommon2.xml',
+ 'base-misc-usage-multiplier.xml'].include? hpxml_file
+ if hpxml_file != 'base-misc-usage-multiplier.xml'
+ hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}",
+ rated_annual_kwh: 800,
+ primary_indicator: false)
+ end
+ hpxml_bldg.freezers.add(id: "Freezer#{hpxml_bldg.freezers.size + 1}",
+ location: HPXML::LocationConditionedSpace,
+ rated_annual_kwh: 400)
+ if hpxml_file == 'base-misc-usage-multiplier.xml'
+ hpxml_bldg.freezers[-1].usage_multiplier = 0.9
+ end
+ (hpxml_bldg.refrigerators + hpxml_bldg.freezers).each do |appliance|
+ next if appliance.is_a?(HPXML::Refrigerator) && hpxml_file == 'base-misc-usage-multiplier.xml'
- # -------------- #
- # HPXML Lighting #
- # -------------- #
+ appliance.weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
+ appliance.weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041'
+ appliance.monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837'
+ end
+ hpxml_bldg.pools[0].pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
+ hpxml_bldg.pools[0].pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
+ hpxml_bldg.pools[0].pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154'
+ hpxml_bldg.pools[0].heater_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
+ hpxml_bldg.pools[0].heater_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003'
+ hpxml_bldg.pools[0].heater_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154'
+ hpxml_bldg.permanent_spas[0].pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
+ hpxml_bldg.permanent_spas[0].pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
+ hpxml_bldg.permanent_spas[0].pump_monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837'
+ hpxml_bldg.permanent_spas[0].heater_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
+ hpxml_bldg.permanent_spas[0].heater_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024'
+ hpxml_bldg.permanent_spas[0].heater_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921'
+ end
+ if ['base-bldgtype-multifamily-shared-laundry-room.xml',
+ 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file
+ hpxml_bldg.clothes_washers[0].is_shared_appliance = true
+ hpxml_bldg.clothes_washers[0].location = HPXML::LocationOtherHeatedSpace
+ hpxml_bldg.clothes_dryers[0].location = HPXML::LocationOtherHeatedSpace
+ hpxml_bldg.clothes_dryers[0].is_shared_appliance = true
+ hpxml_bldg.dishwashers[0].is_shared_appliance = true
+ hpxml_bldg.dishwashers[0].location = HPXML::LocationOtherHeatedSpace
+ if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room.xml'
+ hpxml_bldg.clothes_washers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id
+ hpxml_bldg.dishwashers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id
+ elsif hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'
+ hpxml_bldg.clothes_washers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id
+ hpxml_bldg.dishwashers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id
+ end
+ elsif ['base-misc-defaults.xml'].include? hpxml_file
+ hpxml_bldg.refrigerators[0].primary_indicator = nil
+ end
+
+ # -------------- #
+ # HPXML Lighting #
+ # -------------- #
+
+ # Logic that can only be applied based on the file name
+ if ['base-lighting-ceiling-fans.xml'].include? hpxml_file
+ hpxml_bldg.ceiling_fans[0].weekday_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057'
+ hpxml_bldg.ceiling_fans[0].weekend_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057'
+ hpxml_bldg.ceiling_fans[0].monthly_multipliers = '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0'
+ elsif ['base-lighting-holiday.xml'].include? hpxml_file
+ hpxml_bldg.lighting.holiday_weekday_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019'
+ hpxml_bldg.lighting.holiday_weekend_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019'
+ elsif ['base-schedules-simple.xml',
+ 'base-schedules-simple-vacancy.xml',
+ 'base-schedules-simple-vacancy-year-round.xml',
+ 'base-schedules-simple-power-outage.xml',
+ 'base-misc-loads-large-uncommon.xml',
+ 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
+ hpxml_bldg.lighting.interior_weekday_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249'
+ hpxml_bldg.lighting.interior_weekend_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249'
+ hpxml_bldg.lighting.interior_monthly_multipliers = '1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905'
+ hpxml_bldg.lighting.exterior_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063'
+ hpxml_bldg.lighting.exterior_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059'
+ hpxml_bldg.lighting.exterior_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248'
+ hpxml_bldg.lighting.garage_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063'
+ hpxml_bldg.lighting.garage_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059'
+ hpxml_bldg.lighting.garage_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248'
+ elsif ['base-lighting-kwh-per-year.xml'].include? hpxml_file
+ ltg_kwhs_per_year = { HPXML::LocationInterior => 1500,
+ HPXML::LocationExterior => 150,
+ HPXML::LocationGarage => 0 }
+ hpxml_bldg.lighting_groups.clear
+ ltg_kwhs_per_year.each do |location, kwh_per_year|
+ hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}",
+ location: location,
+ kwh_per_year: kwh_per_year)
+ end
+ elsif ['base-lighting-mixed.xml'].include? hpxml_file
+ hpxml_bldg.lighting_groups.reverse_each do |lg|
+ next unless lg.location == HPXML::LocationExterior
- # Logic that can only be applied based on the file name
- if ['base-lighting-ceiling-fans.xml'].include? hpxml_file
- hpxml_bldg.ceiling_fans[0].weekday_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057'
- hpxml_bldg.ceiling_fans[0].weekend_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057'
- hpxml_bldg.ceiling_fans[0].monthly_multipliers = '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0'
- elsif ['base-lighting-holiday.xml'].include? hpxml_file
- hpxml_bldg.lighting.holiday_weekday_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019'
- hpxml_bldg.lighting.holiday_weekend_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019'
- elsif ['base-schedules-simple.xml',
- 'base-schedules-simple-vacancy.xml',
- 'base-schedules-simple-vacancy-year-round.xml',
- 'base-schedules-simple-power-outage.xml',
- 'base-misc-loads-large-uncommon.xml',
- 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
- hpxml_bldg.lighting.interior_weekday_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249'
- hpxml_bldg.lighting.interior_weekend_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249'
- hpxml_bldg.lighting.interior_monthly_multipliers = '1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905'
- hpxml_bldg.lighting.exterior_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063'
- hpxml_bldg.lighting.exterior_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059'
- hpxml_bldg.lighting.exterior_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248'
- hpxml_bldg.lighting.garage_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063'
- hpxml_bldg.lighting.garage_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059'
- hpxml_bldg.lighting.garage_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248'
- elsif ['base-lighting-kwh-per-year.xml'].include? hpxml_file
- ltg_kwhs_per_year = { HPXML::LocationInterior => 1500,
- HPXML::LocationExterior => 150,
- HPXML::LocationGarage => 0 }
- hpxml_bldg.lighting_groups.clear
- ltg_kwhs_per_year.each do |location, kwh_per_year|
+ lg.delete
+ end
+ hpxml_bldg.lighting_groups.each_with_index do |lg, i|
+ lg.id = "LightingGroup#{i + 1}"
+ end
hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}",
- location: location,
- kwh_per_year: kwh_per_year)
- end
- elsif ['base-lighting-mixed.xml'].include? hpxml_file
- hpxml_bldg.lighting_groups.reverse_each do |lg|
- next unless lg.location == HPXML::LocationExterior
-
- lg.delete
- end
- hpxml_bldg.lighting_groups.each_with_index do |lg, i|
- lg.id = "LightingGroup#{i + 1}"
- end
- hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}",
- location: HPXML::LocationExterior,
- kwh_per_year: 150)
- elsif ['base-foundation-basement-garage.xml'].include? hpxml_file
- int_lighting_groups = hpxml_bldg.lighting_groups.select { |lg| lg.location == HPXML::LocationInterior }
- int_lighting_groups.each do |lg|
- hpxml_bldg.lighting_groups << lg.dup
- hpxml_bldg.lighting_groups[-1].location = HPXML::LocationGarage
- hpxml_bldg.lighting_groups[-1].id = "LightingGroup#{hpxml_bldg.lighting_groups.size}"
+ location: HPXML::LocationExterior,
+ kwh_per_year: 150)
+ elsif ['base-foundation-basement-garage.xml'].include? hpxml_file
+ int_lighting_groups = hpxml_bldg.lighting_groups.select { |lg| lg.location == HPXML::LocationInterior }
+ int_lighting_groups.each do |lg|
+ hpxml_bldg.lighting_groups << lg.dup
+ hpxml_bldg.lighting_groups[-1].location = HPXML::LocationGarage
+ hpxml_bldg.lighting_groups[-1].id = "LightingGroup#{hpxml_bldg.lighting_groups.size}"
+ end
end
- end
- # --------------- #
- # HPXML MiscLoads #
- # --------------- #
+ # --------------- #
+ # HPXML MiscLoads #
+ # --------------- #
+
+ # Logic that can only be applied based on the file name
+ if ['base-schedules-simple.xml',
+ 'base-schedules-simple-vacancy.xml',
+ 'base-schedules-simple-vacancy-year-round.xml',
+ 'base-schedules-simple-power-outage.xml',
+ 'base-misc-loads-large-uncommon.xml',
+ 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
+ hpxml_bldg.plug_loads[0].weekday_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07'
+ hpxml_bldg.plug_loads[0].weekend_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07'
+ hpxml_bldg.plug_loads[0].monthly_multipliers = '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137'
+ hpxml_bldg.plug_loads[1].weekday_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036'
+ hpxml_bldg.plug_loads[1].weekend_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036'
+ hpxml_bldg.plug_loads[1].monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248'
+ end
+ next unless ['base-misc-loads-large-uncommon.xml',
+ 'base-misc-loads-large-uncommon2.xml',
+ 'base-misc-usage-multiplier.xml'].include? hpxml_file
- # Logic that can only be applied based on the file name
- if ['base-schedules-simple.xml',
- 'base-schedules-simple-vacancy.xml',
- 'base-schedules-simple-vacancy-year-round.xml',
- 'base-schedules-simple-power-outage.xml',
- 'base-misc-loads-large-uncommon.xml',
- 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file
- hpxml_bldg.plug_loads[0].weekday_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07'
- hpxml_bldg.plug_loads[0].weekend_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07'
- hpxml_bldg.plug_loads[0].monthly_multipliers = '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137'
- hpxml_bldg.plug_loads[1].weekday_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036'
- hpxml_bldg.plug_loads[1].weekend_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036'
- hpxml_bldg.plug_loads[1].monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248'
- end
- if ['base-misc-loads-large-uncommon.xml',
- 'base-misc-loads-large-uncommon2.xml',
- 'base-misc-usage-multiplier.xml'].include? hpxml_file
if hpxml_file != 'base-misc-usage-multiplier.xml'
hpxml_bldg.plug_loads[2].weekday_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042'
hpxml_bldg.plug_loads[2].weekend_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042'
diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json
index 7111599163..c9b78aaaee 100644
--- a/workflow/hpxml_inputs.json
+++ b/workflow/hpxml_inputs.json
@@ -3197,7 +3197,13 @@
},
"sample_files/base-multiple-buildings.xml": {
"parent_hpxml": "sample_files/base.xml",
- "clothes_dryer_present": false
+ "clothes_dryer_present": false,
+ "utility_bill_scenario_names": null
+ },
+ "sample_files/base-multiple-buildings-varied-occupancy.xml": {
+ "parent_hpxml": "sample_files/base.xml",
+ "clothes_dryer_present": false,
+ "utility_bill_scenario_names": null
},
"sample_files/base-pv.xml": {
"parent_hpxml": "sample_files/base.xml",
diff --git a/workflow/sample_files/base-multiple-buildings-varied-occupancy.xml b/workflow/sample_files/base-multiple-buildings-varied-occupancy.xml
new file mode 100644
index 0000000000..ca92c5caf6
--- /dev/null
+++ b/workflow/sample_files/base-multiple-buildings-varied-occupancy.xml
@@ -0,0 +1,1597 @@
+
+
+
+ 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
+
+
+ ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv
+
+
+
+
+ 2006
+ 5B
+
+
+
+ USA_CO_Denver.Intl.AP.725650_TMY3
+
+ USA_CO_Denver.Intl.AP.725650_TMY3.epw
+
+
+
+
+
+
+
+ 50.0
+
+ ACH
+ 3.0
+
+ 21600.0
+
+
+
+
+
+
+
+ false
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+ attic - unvented
+ 1509.3
+ asphalt or fiberglass shingles
+ 0.7
+ 0.92
+ 6.0
+ false
+
+
+ 2.3
+
+
+
+
+
+
+ outside
+ basement - conditioned
+ 115.6
+ wood siding
+ 0.7
+ 0.92
+
+
+ 23.0
+
+
+
+
+
+
+ outside
+ conditioned space
+
+
+
+ 1200.0
+ wood siding
+ 0.7
+ 0.92
+
+ gypsum board
+
+
+
+ 23.0
+
+
+
+
+ outside
+ attic - unvented
+ gable
+
+
+
+ 225.0
+ wood siding
+ 0.7
+ 0.92
+
+
+ 4.0
+
+
+
+
+
+
+ ground
+ basement - conditioned
+ 8.0
+ 1200.0
+ 8.0
+ 7.0
+
+ gypsum board
+
+
+
+
+ continuous - exterior
+ 8.9
+ 0.0
+ 8.0
+
+
+ continuous - interior
+ 0.0
+
+
+
+
+
+
+
+ attic - unvented
+ conditioned space
+ ceiling
+
+
+
+ 1350.0
+
+ gypsum board
+
+
+
+ 39.3
+
+
+
+
+
+
+ basement - conditioned
+ 1350.0
+ 4.0
+ 150.0
+
+
+
+ 0.0
+ 0.0
+
+
+
+
+
+ 0.0
+ 0.0
+
+
+
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 108.0
+ 0
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 72.0
+ 90
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 108.0
+ 180
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 72.0
+ 270
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+
+
+
+ 40.0
+ 180
+ 4.4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ natural gas
+ 36000.0
+
+ AFUE
+ 0.92
+
+ 1.0
+
+
+
+
+ central air conditioner
+ electricity
+ 24000.0
+ single stage
+ 1.0
+
+ SEER
+ 13.0
+
+ 0.73
+
+
+
+
+ 68.0
+ 78.0
+
+
+
+
+
+ regular velocity
+
+ supply
+
+ CFM25
+ 75.0
+ to outside
+
+
+
+ return
+
+ CFM25
+ 25.0
+ to outside
+
+
+
+
+ supply
+ 4.0
+ attic - unvented
+ 150.0
+
+
+
+ return
+ 0.0
+ attic - unvented
+ 50.0
+
+
+
+
+
+
+
+
+ electricity
+ storage water heater
+ conditioned space
+ 40.0
+ 1.0
+ 18767.0
+ 0.95
+ 125.0
+
+
+
+
+
+ 50.0
+
+
+
+ 0.0
+
+
+
+
+ shower head
+ true
+
+
+
+ faucet
+ false
+
+
+
+
+
+
+ conditioned space
+ 1.21
+ 380.0
+ 0.12
+ 1.09
+ 27.0
+ 6.0
+ 3.2
+
+
+
+ conditioned space
+ 307.0
+ 12
+ 0.12
+ 1.09
+ 22.32
+ 4.0
+
+
+
+ conditioned space
+ 650.0
+ true
+
+
+
+ conditioned space
+ electricity
+ false
+
+
+
+ false
+
+
+
+
+
+ interior
+ 0.4
+
+
+
+
+
+
+ interior
+ 0.1
+
+
+
+
+
+
+ interior
+ 0.25
+
+
+
+
+
+
+ exterior
+ 0.4
+
+
+
+
+
+
+ exterior
+ 0.1
+
+
+
+
+
+
+ exterior
+ 0.25
+
+
+
+
+
+
+
+
+ TV other
+
+ kWh/year
+ 620.0
+
+
+
+
+ other
+
+ kWh/year
+ 2457.0
+
+
+ 0.855
+ 0.045
+
+
+
+
+
+
+
+
+
+
+ CO
+
+
+
+ proposed workscope
+
+
+
+
+ suburban
+ stand-alone
+ no units above or below
+ 180
+
+ electricity
+ natural gas
+
+
+
+ single-family detached
+ 2.0
+ 1.0
+ 8.0
+ 3
+ 2
+ 2700.0
+ 21600.0
+
+
+ ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv
+
+
+
+
+ 2006
+ 5B
+
+
+
+ USA_CO_Denver.Intl.AP.725650_TMY3
+
+ USA_CO_Denver.Intl.AP.725650_TMY3.epw
+
+
+
+
+
+
+
+ 50.0
+
+ ACH
+ 3.0
+
+ 21600.0
+
+
+
+
+
+
+
+ false
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+ attic - unvented
+ 1509.3
+ asphalt or fiberglass shingles
+ 0.7
+ 0.92
+ 6.0
+ false
+
+
+ 2.3
+
+
+
+
+
+
+ outside
+ basement - conditioned
+ 115.6
+ wood siding
+ 0.7
+ 0.92
+
+
+ 23.0
+
+
+
+
+
+
+ outside
+ conditioned space
+
+
+
+ 1200.0
+ wood siding
+ 0.7
+ 0.92
+
+ gypsum board
+
+
+
+ 23.0
+
+
+
+
+ outside
+ attic - unvented
+ gable
+
+
+
+ 225.0
+ wood siding
+ 0.7
+ 0.92
+
+
+ 4.0
+
+
+
+
+
+
+ ground
+ basement - conditioned
+ 8.0
+ 1200.0
+ 8.0
+ 7.0
+
+ gypsum board
+
+
+
+
+ continuous - exterior
+ 8.9
+ 0.0
+ 8.0
+
+
+ continuous - interior
+ 0.0
+
+
+
+
+
+
+
+ attic - unvented
+ conditioned space
+ ceiling
+
+
+
+ 1350.0
+
+ gypsum board
+
+
+
+ 39.3
+
+
+
+
+
+
+ basement - conditioned
+ 1350.0
+ 4.0
+ 150.0
+
+
+
+ 0.0
+ 0.0
+
+
+
+
+
+ 0.0
+ 0.0
+
+
+
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 108.0
+ 0
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 72.0
+ 90
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 108.0
+ 180
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 72.0
+ 270
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+
+
+
+ 40.0
+ 180
+ 4.4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ natural gas
+ 36000.0
+
+ AFUE
+ 0.92
+
+ 1.0
+
+
+
+
+ central air conditioner
+ electricity
+ 24000.0
+ single stage
+ 1.0
+
+ SEER
+ 13.0
+
+ 0.73
+
+
+
+
+ 68.0
+ 78.0
+
+
+
+
+
+ regular velocity
+
+ supply
+
+ CFM25
+ 75.0
+ to outside
+
+
+
+ return
+
+ CFM25
+ 25.0
+ to outside
+
+
+
+
+ supply
+ 4.0
+ attic - unvented
+ 150.0
+
+
+
+ return
+ 0.0
+ attic - unvented
+ 50.0
+
+
+
+
+
+
+
+
+ electricity
+ storage water heater
+ conditioned space
+ 40.0
+ 1.0
+ 18767.0
+ 0.95
+ 125.0
+
+
+
+
+
+ 50.0
+
+
+
+ 0.0
+
+
+
+
+ shower head
+ true
+
+
+
+ faucet
+ false
+
+
+
+
+
+
+ conditioned space
+ 1.21
+ 380.0
+ 0.12
+ 1.09
+ 27.0
+ 6.0
+ 3.2
+
+
+
+ conditioned space
+ 307.0
+ 12
+ 0.12
+ 1.09
+ 22.32
+ 4.0
+
+
+
+ conditioned space
+ 650.0
+ true
+
+
+
+ conditioned space
+ electricity
+ false
+
+
+
+ false
+
+
+
+
+
+ interior
+ 0.4
+
+
+
+
+
+
+ interior
+ 0.1
+
+
+
+
+
+
+ interior
+ 0.25
+
+
+
+
+
+
+ exterior
+ 0.4
+
+
+
+
+
+
+ exterior
+ 0.1
+
+
+
+
+
+
+ exterior
+ 0.25
+
+
+
+
+
+
+
+
+ TV other
+
+ kWh/year
+ 620.0
+
+
+
+
+ other
+
+ kWh/year
+ 2457.0
+
+
+ 0.855
+ 0.045
+
+
+
+
+
+
+
+
+
+
+ CO
+
+
+
+ proposed workscope
+
+
+
+
+ suburban
+ stand-alone
+ no units above or below
+ 180
+
+ electricity
+ natural gas
+
+
+
+ single-family detached
+ 2.0
+ 1.0
+ 8.0
+ 3
+ 2
+ 2700.0
+ 21600.0
+
+
+ ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv
+
+
+
+
+ 2006
+ 5B
+
+
+
+ USA_CO_Denver.Intl.AP.725650_TMY3
+
+ USA_CO_Denver.Intl.AP.725650_TMY3.epw
+
+
+
+
+
+
+
+ 50.0
+
+ ACH
+ 3.0
+
+ 21600.0
+
+
+
+
+
+
+
+ false
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+ attic - unvented
+ 1509.3
+ asphalt or fiberglass shingles
+ 0.7
+ 0.92
+ 6.0
+ false
+
+
+ 2.3
+
+
+
+
+
+
+ outside
+ basement - conditioned
+ 115.6
+ wood siding
+ 0.7
+ 0.92
+
+
+ 23.0
+
+
+
+
+
+
+ outside
+ conditioned space
+
+
+
+ 1200.0
+ wood siding
+ 0.7
+ 0.92
+
+ gypsum board
+
+
+
+ 23.0
+
+
+
+
+ outside
+ attic - unvented
+ gable
+
+
+
+ 225.0
+ wood siding
+ 0.7
+ 0.92
+
+
+ 4.0
+
+
+
+
+
+
+ ground
+ basement - conditioned
+ 8.0
+ 1200.0
+ 8.0
+ 7.0
+
+ gypsum board
+
+
+
+
+ continuous - exterior
+ 8.9
+ 0.0
+ 8.0
+
+
+ continuous - interior
+ 0.0
+
+
+
+
+
+
+
+ attic - unvented
+ conditioned space
+ ceiling
+
+
+
+ 1350.0
+
+ gypsum board
+
+
+
+ 39.3
+
+
+
+
+
+
+ basement - conditioned
+ 1350.0
+ 4.0
+ 150.0
+
+
+
+ 0.0
+ 0.0
+
+
+
+
+
+ 0.0
+ 0.0
+
+
+
+ 0.0
+ 0.0
+
+
+
+
+
+
+ 108.0
+ 0
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 72.0
+ 90
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 108.0
+ 180
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+ 72.0
+ 270
+ 0.33
+ 0.45
+
+
+ 0.7
+ 0.85
+
+ 0.67
+
+
+
+
+
+
+
+ 40.0
+ 180
+ 4.4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ natural gas
+ 36000.0
+
+ AFUE
+ 0.92
+
+ 1.0
+
+
+
+
+ central air conditioner
+ electricity
+ 24000.0
+ single stage
+ 1.0
+
+ SEER
+ 13.0
+
+ 0.73
+
+
+
+
+ 68.0
+ 78.0
+
+
+
+
+
+ regular velocity
+
+ supply
+
+ CFM25
+ 75.0
+ to outside
+
+
+
+ return
+
+ CFM25
+ 25.0
+ to outside
+
+
+
+
+ supply
+ 4.0
+ attic - unvented
+ 150.0
+
+
+
+ return
+ 0.0
+ attic - unvented
+ 50.0
+
+
+
+
+
+
+
+
+ electricity
+ storage water heater
+ conditioned space
+ 40.0
+ 1.0
+ 18767.0
+ 0.95
+ 125.0
+
+
+
+
+
+ 50.0
+
+
+
+ 0.0
+
+
+
+
+ shower head
+ true
+
+
+
+ faucet
+ false
+
+
+
+
+
+
+ conditioned space
+ 1.21
+ 380.0
+ 0.12
+ 1.09
+ 27.0
+ 6.0
+ 3.2
+
+
+
+ conditioned space
+ 307.0
+ 12
+ 0.12
+ 1.09
+ 22.32
+ 4.0
+
+
+
+ conditioned space
+ 650.0
+ true
+
+
+
+ conditioned space
+ electricity
+ false
+
+
+
+ false
+
+
+
+
+
+ interior
+ 0.4
+
+
+
+
+
+
+ interior
+ 0.1
+
+
+
+
+
+
+ interior
+ 0.25
+
+
+
+
+
+
+ exterior
+ 0.4
+
+
+
+
+
+
+ exterior
+ 0.1
+
+
+
+
+
+
+ exterior
+ 0.25
+
+
+
+
+
+
+
+
+ TV other
+
+ kWh/year
+ 620.0
+
+
+
+
+ other
+
+ kWh/year
+ 2457.0
+
+
+ 0.855
+ 0.045
+
+
+
+
+
+
\ No newline at end of file
diff --git a/workflow/sample_files/base-multiple-buildings.xml b/workflow/sample_files/base-multiple-buildings.xml
index 207411d1e3..20f76ac16e 100644
--- a/workflow/sample_files/base-multiple-buildings.xml
+++ b/workflow/sample_files/base-multiple-buildings.xml
@@ -11,11 +11,6 @@
60
-
-
- Bills
-
-
diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb
index 001e2b172e..aecf906a39 100644
--- a/workflow/tests/hpxml_translator_test.rb
+++ b/workflow/tests/hpxml_translator_test.rb
@@ -29,7 +29,7 @@ def test_simulations
sample_files_dirs.each do |sample_files_dir|
Dir["#{sample_files_dir}/*.xml"].sort.each do |xml|
next if xml.end_with? '-10x.xml'
- next if xml.include? 'base-multiple-buildings.xml' # Tested by test_multiple_buildings()
+ next if xml.include? 'base-multiple-buildings' # Tested by test_multiple_buildings()
next if xml.include? 'base-bldgtype-multifamily-shared-mechvent-multiple' # FIXME: Won't work w/ unit multipliers until https://github.com/NREL/EnergyPlus/pull/10131 is available in E+
xmls << File.absolute_path(xml)
@@ -299,38 +299,40 @@ def test_template_osws
end
def test_multiple_buildings
- rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb')
- xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base-multiple-buildings.xml')
- csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.csv')
- run_log = File.join(File.dirname(xml), 'run', 'run.log')
+ sample_files_dir = File.join(File.dirname(__FILE__), '..', 'sample_files')
+ Dir["#{sample_files_dir}/base-multiple-buildings*.xml"].sort.each do |xml|
+ rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb')
+ csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.csv')
+ run_log = File.join(File.dirname(xml), 'run', 'run.log')
- # Check successful simulation when providing correct building ID
- command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyBuilding_2"
- system(command, err: File::NULL)
- assert_equal(true, File.exist?(csv_output_path))
+ # Check successful simulation when providing correct building ID
+ command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyBuilding_2"
+ system(command, err: File::NULL)
+ assert_equal(true, File.exist?(csv_output_path))
- # Check that we have exactly one warning (i.e., check we are only validating a single Building element against schematron)
- assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size)
+ # Check that we have exactly one warning (i.e., check we are only validating a single Building element against schematron)
+ assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size)
- # Check unsuccessful simulation when providing incorrect building ID
- command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyFoo"
- system(command, err: File::NULL)
- assert_equal(false, File.exist?(csv_output_path))
- assert_equal(1, File.readlines(run_log).select { |l| l.include? "Could not find Building element with ID 'MyFoo'." }.size)
+ # Check unsuccessful simulation when providing incorrect building ID
+ command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyFoo"
+ system(command, err: File::NULL)
+ assert_equal(false, File.exist?(csv_output_path))
+ assert_equal(1, File.readlines(run_log).select { |l| l.include? "Could not find Building element with ID 'MyFoo'." }.size)
- # Check unsuccessful simulation when not providing building ID
- command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\""
- system(command, err: File::NULL)
- assert_equal(false, File.exist?(csv_output_path))
- assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' }.size)
+ # Check unsuccessful simulation when not providing building ID
+ command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\""
+ system(command, err: File::NULL)
+ assert_equal(false, File.exist?(csv_output_path))
+ assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' }.size)
- # Check successful simulation when running whole building
- command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id ALL"
- system(command, err: File::NULL)
- assert_equal(true, File.exist?(csv_output_path))
+ # Check successful simulation when running whole building
+ command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id ALL"
+ system(command, err: File::NULL)
+ assert_equal(true, File.exist?(csv_output_path))
- # Check that we now have three warnings, one for each Building element
- assert_equal(3, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size)
+ # Check that we now have three warnings, one for each Building element
+ assert_equal(3, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size)
+ end
end
def test_release_zips